git-pr

A command workflow for opening a GitHub pull request with a summary, reason, verification steps, and risk or rollback notes, using the gh command-line tool.

In plain words
What is it for?
Preparing, pushing, and creating a pull request from a clean feature branch with concrete instructions for reviewers.
Why use it?
It checks the branch and working tree first, then produces a review-ready description covering the complete change.

Command for Claude Code

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add commands/robconery/kolea/git-pr
Clone the repo
git clone --depth 1 https://github.com/robconery/kolea

Made for: Claude Code.

Per session 28 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 556 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin 100% copy Near-identical to another mod 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 $0.00028 $0.00556
Opus 5 $0.00014 $0.00278
Sonnet 5 $0.00006 $0.00111
Haiku 4.5 $0.00003 $0.00056

Measured yesterday against content hash 620a1dbc17ec, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

git-pr scanned grade A with 0 findings 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 yesterday.

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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

100% identical to git-pr — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.claude/commands/git-pr.md · 57 lines

What it actually says

pr

Open a GitHub pull request for the current branch using the github skill's PR template.

Behavior

  1. Preflight.
    • gh auth status to confirm CLI is logged in.
    • Refuse if the current branch is main — make a branch first (git switch -c <type>/<slug>).
    • Refuse if the working tree is dirty — commit or stash first (suggest /git-commit).
  2. Gather context in parallel:
    • git status
    • git log <base>..HEAD --oneline (default base = the repo's default branch; main unless --base arg says otherwise)
    • git diff <base>...HEAD to understand the full set of changes
  3. Push the branch if not already tracking a remote: git push -u origin HEAD.
  4. Draft per the github skill PR template:
    • Title — Conventional Commit style, ≤70 chars.
    • Summary — 2–4 bullets covering all the commits, not just the latest. The headline change first.
    • Why — one paragraph; link the story id / issue.
    • How to verify — concrete checklist (commands, URLs, manual steps). Reviewer should be able to run these in order.
    • Risk / rollback — one or two lines; be honest if it's low risk.
    • Closes #N footer if it resolves an issue.
  5. Show the draft to the user before creating. Confirm --draft if work is still in progress.
  6. Create with a HEREDOC body:
    gh pr create --title "<title>" --body "$(cat <<'EOF'
    ...
    EOF
    )"
    
    Use --base <branch> only when not targeting the default.

Rules

  • Title must reflect all the commits on the branch, not just HEAD.
  • Don't push to main; don't force-push to a branch with an open PR without saying so.
  • Don't include local-only paths, secrets, or .env references in the body.

Hand off

Return the PR URL gh prints.

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. yesterday First seen · 57 lines · 28 tokens per session scan A 620a1dbc17ec

Subscribe to this mod's changes

git-pr is a command published in the GitHub repository robconery/kolea (1 stars, last pushed 2d ago), licensed MIT. It adds 28 tokens to every session and 556 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to git-pr, differing in 0 lines, and is treated as a copy.