commit

A command for creating one Git commit, a saved set of project changes, from files related to the current conversation.

In plain words
What is it for?
Use it to review the working tree, stage only relevant files, check the staged difference, and create a commit with a suitable message.
Why use it?
It helps avoid accidentally including unrelated or pre-existing edits when preparing a commit.

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/samuelclay/newsblur/commit
Clone the repo
git clone --depth 1 https://github.com/samuelclay/NewsBlur

Made for: Claude Code.

Per session 9 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 513 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.00009 $0.00513
Opus 5 $0.00005 $0.00257
Sonnet 5 $0.00002 $0.00103
Haiku 4.5 $0.00001 $0.00051

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

Security

Grade A, and why

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

.claude/commands/commit.md · 65 lines

What it actually says

Context

  • Current git status: !git status
  • Current branch: !git branch --show-current
  • Staged changes: !git diff --staged --stat
  • Unstaged changes: !git diff --stat
  • Full diff of all changes: !git diff HEAD
  • Recent commits (for message style): !git log --oneline -10

Your task

Create a single git commit with only the changes relevant to this conversation session.

Step 1: Determine which files to stage

Analyze the conversation history and the diff above to identify which files were actively worked on during this session. Consider:

  • Files you created, edited, or wrote during this conversation
  • Files that are logically related to the work discussed
  • Do NOT stage files with unrelated changes (pre-existing dirty state, editor configs, etc.)

If ALL changed files are clearly part of the current work, stage them all. If unsure about a file, leave it unstaged.

Step 2: Stage the relevant files

Use git add with specific file paths. Do NOT use git add -A or git add ..

If there are already-staged files that are NOT part of this session's work, unstage them with git reset HEAD <file>.

Step 3: Verify staged changes

Run git diff --staged --stat to confirm only the intended files are staged.

Step 4: Commit

Follow the commit message conventions from the recent commits above:

  • Imperative mood, present tense ("Add...", "Fix...", "Rename...", "Enable...")
  • Concise summary under 80 characters
  • If non-trivial, add a blank line and brief body explaining the "why"
  • End with Co-Authored-By: Claude Opus 4.6 <[email protected]>

Use a HEREDOC:

git commit -m "$(cat <<'EOF'
<summary line>

Co-Authored-By: Claude Opus 4.6 <[email protected]>
EOF
)"

Step 5: Confirm

Run git status and report:

  • The commit hash and message
  • Which files were committed
  • Which files remain unstaged (if any) and why they were excluded

Do not push. Do not create a PR.

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 · 65 lines · 9 tokens per session scan A 08af6ff594ae

Subscribe to this mod's changes

commit is a command published in the GitHub repository samuelclay/NewsBlur (7,600 stars, last pushed 3d ago), licensed MIT. It adds 9 tokens to every session and 513 once invoked, about $0.0000 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-30.