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/fmflurry/settings-opencode/gitgit clone --depth 1 https://github.com/fmflurry/settings-opencodeWhat 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.00010 | $0.00561 |
| Opus 5 | $0.00005 | $0.00280 |
| Sonnet 5 | $0.00002 | $0.00112 |
| Haiku 4.5 | $0.00001 | $0.00056 |
Grade A, and why
git 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.
How it starts
The opening of the file, as written. The whole thing — 63 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Git Command
Handle this git task: $ARGUMENTS
CC has no dedicated
git-specialistagent. The primary agent handles git directly. For richer flows, prefer the existing/prp-commit,/prp-pr, or/create-pull-requestcommands.
Requirements
- Enforce the commit format exactly:
<type>(<scope>): <short summary>
[optional body]
[optional footer(s)]
If scope is not useful or not clear, this form is also valid:
<type>: <short summary>
Allowed types: feat, fix, docs, style, refactor, test, chore
- Enforce the branch naming format exactly:
<type>/<scope>-<short-description>
scope is required for branches. If it is ambiguous, ask one short question via AskUserQuestion before creating the branch.
scope must be a single lowercase token with letters and numbers only. The first - after / separates scope from short-description.
- Workflow:
- inspect repository state first (
git status,git diff,git log --oneline -5) - use a compliant branch name for branch operations
- use a compliant conventional commit message for commit operations
- stage only relevant changes (avoid
git add -A/git add .) - never commit files that may contain secrets (
.env,*credentials*,*.key,*.pem) - avoid destructive commands unless explicitly requested
- for pull request tasks: detect host from
git remote get-url origin— useghfor GitHub,az repos prfor Azure DevOps (dev.azure.com/visualstudio.com). Stop if unknown. Return the PR URL. - Azure DevOps PR defaults: reviewers =
PIXELS, no--draft. Title must follow conventional commit format. - use the repository default branch as PR base when available, otherwise prefer
main, thenmaster - return an existing PR URL instead of creating a duplicate PR for the same branch
- never use
--no-verifyor skip hooks unless the user explicitly asks - never amend or force-push without explicit user authorization
Output
Branch: created, current, or proposed branch nameCommit: created or proposed commit messagePush: yes or noPR: URL when a pull request exists or was created, otherwisen/aNotes: any ambiguity, blocker, or excluded 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.
- yesterday First seen · 63 lines · 10 tokens per session scan A a685c8294451
git is a command published in the GitHub repository fmflurry/settings-opencode (172 stars, last pushed 19d ago), licensed MIT. It adds 10 tokens to every session and 561 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-30.
Other commands, from other repositories
checklist
Generate a custom checklist for the current feature based on user requirements.
clarify
Identify underspecified areas in the current feature spec by asking up to 5 highly targeted clarification questions and encoding answers back into the spec.
specify
Create or update the feature specification from a natural language feature description.
analyze
Perform a non-destructive cross-artifact consistency and quality analysis across spec.md, plan.md, and tasks.md after task generation.
converge
Assess the current codebase against the feature's spec, plan, and tasks, then append any remaining unbuilt work as new tasks to tasks.md so implement can complete it.
implement
Execute the implementation plan by processing and executing all tasks defined in tasks.md.