commit-pr

A command template for committing changes to Git and opening or updating a pull request, which is a request for code changes to be reviewed before merging.

In plain words
What is it for?
It is for turning current changes into a commit and pull request, creating a short branch when starting from the main branch.
Why use it?
It handles the branch, commit, and pull-request steps together while following the project's recent commit style.

Command

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/rashadansari/myagents/commit-pr
Clone the repo
git clone --depth 1 https://github.com/RashadAnsari/myagents
Per session 20 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 724 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00020 $0.00724
Opus 5 $0.00010 $0.00362
Sonnet 5 $0.00004 $0.00145
Haiku 4.5 $0.00002 $0.00072

Measured 2d ago against content hash ee788a831959, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

commit-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 2d 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.

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.

plugins/albino/commands/commit-pr.md · 86 lines

How it starts

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

Context

The ! prefix on each line below runs the shell command inline and injects its output before the prompt is submitted.

  • Current git status: !git status
  • Current git diff (staged and unstaged changes): !git diff HEAD
  • Current branch: !git branch --show-current
  • Recent commits: !git log --oneline -10
  • Default branch: !gh repo view --json defaultBranchRef --jq '.defaultBranchRef.name' 2>/dev/null || echo "main"

Your task

Based on the above changes, create a single git commit and create or update the pull request. Follow these steps in order:

Step 1: Branch check

Read the current branch from the context above.

If the current branch is main or master:

  1. Generate a short, kebab-case branch name that describes the staged changes (e.g. fix-login-validation, add-user-settings). Keep it under 40 characters.
  2. Run: git checkout -b <branch-name>

Otherwise, stay on the current branch. Do not switch branches.

Step 2: Commit

Infer the commit message format from the recent commits shown above: match the exact style, prefix convention, casing, and structure used in this project. Do not impose an external convention if the project already has one.

Stage all changed files and create a single commit with the inferred message style.

Step 3: Push

Push the branch to origin:

git push -u origin <current-branch>

Step 4: Build PR title and body from branch diff

Run both in parallel:

git log <default-branch>..<branch> --oneline
git diff <default-branch>..<branch>

Using all commits and the full diff between the branch and the default branch:

  • Derive a concise PR title that summarises the overall change (not just the latest commit).
  • Derive a 2-4 sentence PR body that describes what the branch does as a whole.

Step 5: Create or update the PR

Check whether a PR already exists for this branch:

gh pr view --json number,url 2>/dev/null

If a PR exists, update it:

gh pr edit --title "<title>" --body "<body>"

Read the full file on GitHub · 86 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. 2d ago First seen · 86 lines · 20 tokens per session scan A ee788a831959

Subscribe to this mod's changes

commit-pr is a command published in the GitHub repository RashadAnsari/myagents (6 stars, last pushed 25d ago), licensed MIT. It adds 20 tokens to every session and 724 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.