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.
npx agentmods add commands/damusix/atomic-claude/commitgit clone --depth 1 https://github.com/damusix/atomic-claudeWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00055 | $0.00552 |
| Opus 5 | $0.00028 | $0.00276 |
| Sonnet 5 | $0.00011 | $0.00110 |
| Haiku 4.5 | $0.00006 | $0.00055 |
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 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.
What it actually says
Parse arguments
Read $ARGUMENTS. Scan for escalation tokens: push, pr, merge, squash, squash merge.
Token → escalation mapping:
| Token(s) in args | Path |
|---|---|
| (none) | commit only, then ask |
push |
commit + push |
pr |
commit + push + PR |
merge |
commit + merge to base |
squash (without merge) |
commit + squash branch |
squash merge (both tokens) |
commit + squash + merge to base |
If the args contain none of the tokens above, run the commit step, then prompt (see "Interactive path" below).
Commit
{{ template "commit-flow" . }}
If nothing to commit and branch has commits ahead of base, skip to the escalation step. If nothing to commit and branch is up to date with base, stop.
Escalation
Push path (push token or user picks Push)
{{ template "push-flow" . }}
PR path (pr token or user picks Open PR)
{{ template "push-flow" . }}
{{ template "pr-flow" . }}
Merge path (merge token or user picks Merge to base)
{{ template "merge-flow" . }}
Squash path (squash token, no merge, or user picks Squash branch)
{{ template "squash-flow" . }}
Squash + merge path (squash merge tokens or user picks Squash + merge)
{{ template "squash-flow" . }}
{{ template "merge-flow" . }}
Interactive path
If no escalation token was present in args, after the commit completes, ask via AskUserQuestion:
Committed. Ship further?
- Done — just the commit
- Push to remote
- Open PR
- Merge to base
- Squash + merge
Route the answer to the matching escalation path above. "Done" stops immediately.
{{ template "git-safety" . }}
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.
- 2d ago First seen · 73 lines · 55 tokens per session scan A c50832aa0378
commit is a command published in the GitHub repository damusix/atomic-claude (83 stars, last pushed 8d ago), licensed MIT. It adds 55 tokens to every session and 552 once invoked, about $0.0003 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.
Other commands, from other repositories
icpg-bootstrap
Infer ReasonNodes from existing git commit history. One-time setup for existing codebases.
version
Display current guide and Claude Code versions.
go-review
Go code review for idiomatic patterns.
execute
Executa o plano aprovado em .first-plan/07-state/plans/. Segue o plano à risca, para se algo invalidar premissa, gera relatório ao final.
dispatcher
Pick the next-best repo to work on across the portfolio — rank free repos, recommend one, claim its lease atomically, and route to the entry command.
docs-review
Phase 4 of documenting-projects: Quality gate with 8 measurable criteria and iteration. Triggers: '/docs-review', invoked by documenting-projects orchestrator.