kumo-coding-agent: Skill for Claude Code

.claude/skills/kumo-pr/SKILL.md

kumo-pr is a skill for Claude Code from kumo-ai/kumo-coding-agent. It costs 74 tokens per session (1,242 once invoked), scanned C, original, MIT.

A workflow for fixing skills or context documents in Kumo, a data-science agent for building machine-learning models from relational data, and opening a GitHub pull request.

In plain words
What is it for?
Use it to correct agent documentation, update a skill, or contribute an improvement to the Kumo project.
Why use it?
It organizes the fix, checks access, creates a working branch, and prepares the change for project review.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions CLAUDE.md; mentions Claude Code; mentions Codex.

This is kumo-ai/kumo-coding-agent's own configuration. It tells Claude Code how to work on kumo-coding-agent itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything kumo-coding-agent configures →

Reuse

Borrowing it

Nothing to install: this file belongs to kumo-ai/kumo-coding-agent. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/kumo-ai/kumo-coding-agent/main/.claude/skills/kumo-pr/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/kumo-ai/kumo-coding-agent

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for kumo-pr

README.md
[![agentmods](https://agentmods.dev/badge/skills/kumo-ai/kumo-coding-agent/kumo-pr.svg)](https://agentmods.dev/skills/kumo-ai/kumo-coding-agent/kumo-pr)
Your own site
<a href="https://agentmods.dev/skills/kumo-ai/kumo-coding-agent/kumo-pr"><img src="https://agentmods.dev/badge/skills/kumo-ai/kumo-coding-agent/kumo-pr.svg" alt="Measured on agentmods" height="20"></a>
Per session 74 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,242 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00074 $0.01242
Opus 5 $0.00037 $0.00621
Sonnet 5 $0.00015 $0.00248
Haiku 4.5 $0.00007 $0.00124

Measured 7d ago against content hash f1e20ac24a4a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade C, and why

kumo-pr scanned grade C with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

rm -rf "$WORK_DIR"
.claude/skills/kumo-pr/SKILL.md · 172 lines

How it starts

The opening of the file, as written. The whole thing — 172 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Fix kumo-coding-agent and Open a PR

Create a branch, apply fixes to kumo-coding-agent skills or context docs, and open a pull request for review.

This command works in both Claude Code (interactive) and Codex (headless). In Codex, provide a description of the fix as the argument — interactive prompting is not available.

User input: $ARGUMENTS

Instructions

Step 1: Validate GitHub CLI Auth

Run:

gh auth status

If gh is not authenticated, tell the user to run gh auth login -h github.com first and stop before creating a branch or making changes.

Step 2: Understand the Fix

If $ARGUMENTS is provided, parse it to understand what needs to change.

If $ARGUMENTS is empty, ask the user (skip in headless mode):

  1. Which file needs fixing? (skill, context doc, or vertical)
  2. What's wrong with it?
  3. Do you know the correct information?

Step 3: Detect Environment and Create a Branch

Generate <slug> from the fix description: lowercase, hyphens, max 50 chars. Examples: fix-pql-time-units, add-databricks-connector-docs, update-fraud-vertical.

Check whether we're already inside the kumo-coding-agent repo:

git remote get-url origin 2>/dev/null | grep -q "kumo-coding-agent"

If YES (already in the right repo):

git checkout main
git pull --ff-only origin main 2>/dev/null || true
git checkout -b kumo-coding-agent/<slug>
# WORK_DIR = current directory

If NO (e.g., running from a project that installed the skills via npx skills add):

WORK_DIR=$(mktemp -d)
git clone --filter=blob:none --depth=1 \
  [email protected]:kumo-ai/kumo-coding-agent.git "$WORK_DIR"
cd "$WORK_DIR"
git checkout -b kumo-coding-agent/<slug>

All subsequent steps operate inside $WORK_DIR. Remember it for cleanup.

Step 4: Make the Changes

Apply the requested fixes.

Guidelines:

  • Follow existing document structure and conventions
  • If updating a context doc, update the Source header date
  • If adding new content, keep the same style as surrounding content
  • If fixing a claim, check the authoritative source (see meta/skills/verify-content.md for source locations)

Read the full file on GitHub · 172 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago First seen · 172 lines · 74 tokens per session scan C f1e20ac24a4a

Subscribe to this mod's changes

kumo-pr is a skill published in the GitHub repository kumo-ai/kumo-coding-agent (39 stars, last pushed 1mo ago), licensed MIT. It adds 74 tokens to every session and 1,242 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

agentbro-pr-merge

Use when reviewing, fixing CI for, approving workflows for, or merging AgentBro pull requests into dev/main, especially external contributor PRs where contributor attribution matters.

shirenchuang/agentbro · 38 tokens

release-verification

A release-verification checklist for software versions and packages. It covers changelogs, tests, packaging, installation smoke checks, version-control actions, publishing, and checks after release.

devcodex-labs/devcodex · 39 tokens

audit-release

A pre-release review assistant that checks whether a software package or plugin is ready to publish.

devcodex-labs/devcodex · 104 tokens

orchestrate-release-engineer

Run the final release gate: fresh-clone simulation, artifact freshness, packaging hygiene, documentation accuracy. Use in the final hour. Catches the defects that make a working submission fail on someone else's machine.

NITISH-R-G/hackerrank-orchestrate-skills · 48 tokens

orchestrate-submission-validator

Prove the three submission artifacts are current, consistent, and correspond to the same commit. Use in the final hour, and after any change that touches production code. Catches stale outputs, which is the single most common silent submission defect.

NITISH-R-G/hackerrank-orchestrate-skills · 55 tokens

godot-project-foundations

Expert blueprint for Godot 4 project organization (feature-based folders, naming conventions, version control). Enforces snakecase files, PascalCase nodes, %SceneUniqueNames, and .gitignore best practices. Use when starting new projects or refactoring structure. Keywords project organization, naming conventions…

bgrenat/godot-game-dev-studio · 82 tokens