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/cbmono/ai-setup/acpgit clone --depth 1 https://github.com/cbmono/ai-setupWhat 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.00000 | $0.00959 |
| Opus 5 | $0.00000 | $0.00479 |
| Sonnet 5 | $0.00000 | $0.00192 |
| Haiku 4.5 | $0.00000 | $0.00096 |
Grade C, and why
acp 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 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.
Reaches for credential fileshighPrivilege escalation
SSH keys, cloud credentials, git-credentials, .npmrc, /etc/shadow: reading these is how a config file becomes a credential leak.
`id_ecdsa` / `id_dsa`; `credentials`, `service-account*.json`, `*.kubeconfig`, `.npmrc`, `.netrc`. How it starts
The opening of the file, as written. The whole thing — 40 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Stage all changes, create a commit with a descriptive message, and push to the remote. Stack-aware.
Steps
- Scan for secrets BEFORE staging anything.
git add -Astages every non-ignored path, so a secret staged first is a secret the rest of this flow has to un-stage. List the paths git would stage —git status --porcelain --untracked-files=all(--untracked-files=allmatters: plain--porcelaincollapses an untracked directory todir/and would hidedir/.env) — and match the paths only against:.envand.env.*except the templates.env.example/.env.template/.env.sample;*.pem,*.key,*.p12,*.pfx,*.keystore,*.jks;id_rsa/id_ed25519/id_ecdsa/id_dsa;credentials,service-account*.json,*.kubeconfig,.npmrc,.netrc. If anything matches, stop before staging and report the matching paths and the.gitignore/git rm --cachedfix. Only continue if the user tells you explicitly to include that path. git add -Ato stage all changes.- Run
git statusandgit diff --cachedto understand what's being committed. If step 1 matched anything the user then authorised, exclude those paths from the diff —git diff --cached -- . ':(exclude)<path>'for each — because a baregit diff --cachedprints the file's contents to the terminal and into this transcript. Deciding not to read the output is not the same as not emitting it, and the standing rule is that secrets are never printed or logged, not that they are printed and ignored. - Write a concise, descriptive commit message based on the changes. If
$ARGUMENTSis provided, use it verbatim as the commit message instead. - Commit.
- Decide how to push:
- If the current branch is part of a
gh stack(rungh stack viewand check it doesn't error), rungh stack submit— it both pushes the stack and creates/updates the PRs in one step, so the PR list and the remote tips stay aligned. (gh stack pushonly pushes branches; PRs would still update via the new tip, butsubmitalso reconciles PR titles/descriptions with stack ordering, which is what we want after a commit.) - Otherwise,
git pushon the current branch (add-u origin <branch>if the branch has no upstream).
- If the current branch is part of a
- Report the commit SHA and, for stacked branches, the PR URL from
gh stack view. If the diff you read in step 3 suggests a follow-up review pass would catch something — substantial logic changes, a new module, a refactor across several files in one area, a large delete — append a one-line "consider/verify" / "consider/grill" / "consider/scanon<dir>" / "consider/techdebt" suggestion tied to the actual signal. Skip the suggestion entirely for doc-only, config-only, dep-bump, or formatting commits. Don't run the suggested command — the user picks.
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 · 40 lines · 0 tokens per session scan C db53764e2f36
acp is a command published in the GitHub repository cbmono/ai-setup (2 stars, last pushed 8d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 959 tokens. A static security scan graded it C with 1 finding (reaches for credential files). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other commands, from other repositories
speckit.git.commit
Auto-commit changes after a Spec Kit command completes.
commit
Smart commit that stages only conversation-relevant changes.
commit-all
Group all changes semantically and commit each group separately.
commit
Based on the above changes, create a single git commit.
commit
This command helps you create well-formatted commits with conventional commit messages and emoji.
commit
Safe git commit practices for MindRoom.