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/emaraschio/cursor-commands/commitgit clone --depth 1 https://github.com/emaraschio/cursor-commandsWhat 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.00419 |
| Opus 5 | $0.00005 | $0.00210 |
| Sonnet 5 | $0.00002 | $0.00084 |
| Haiku 4.5 | $0.00001 | $0.00042 |
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.
What it actually says
Overview
Commit on a new branch with conventional message. Full workflow: .cursor/skill-contracts/commit/SKILL.md (user install: ~/.cursor/skill-contracts/commit/SKILL.md).
Defaults
None. See skill for workflow defaults.
Steps
- Read
.cursor/skill-contracts/commit/SKILL.mdfor the full agent contract; if that file is missing, read~/.cursor/skill-contracts/commit/SKILL.md. - Execute the workflow in order; do not skip safety steps.
- Report outcomes per skill (summary, tables, or checklist as specified).
Anti-patterns
- Commit only when asked. Trigger: finishing a chunk of work. Wrong: committing or pushing without being asked. Correct: commit only on explicit request, then push the branch. Reason: surprise commits and pushes are hard to undo and disrupt the user's flow.
- Use Conventional Commits. Trigger: writing the commit message. Wrong: a vague or non-conventional subject. Correct: a Conventional Commits subject within the length limit. Reason: the squashed message becomes the PR title.
- Never skip hooks or amend a failed commit. Trigger: a pre-commit hook fails. Wrong: re-running with hooks skipped or amending the failed commit. Correct: fix the issue and make a new commit. Reason: skipped hooks hide failures and amending a failed commit loses the trail.
Examples
/commit
Maintainers
Behavioral eval: .cursor/skill-contracts/commit/eval/cases.md. Ship gate sections: A, S before changing SKILL.md or this command.
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 · 39 lines · 10 tokens per session scan A d9fc19100441
commit is a command published in the GitHub repository emaraschio/cursor-commands (9 stars, last pushed 25d ago), licensed MIT. It adds 10 tokens to every session and 419 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.
Other commands, from other repositories
grok_init
Discover, verify, and persist the local HTTP proxy used by Grok Build Supervisor.
burndown-full
Drive a partially-executed plan to 100% coverage across the whole repo — enumerate, batch-execute, prove completeness.
ship-and-observe
Take merged, green code to a verified, monitored production release — deploy, confirm the revision is live, smoke-test, observe, and roll back if needed.
mcp-guide
Reference for the MCP toolset (Context7, Firecrawl, Playwright, Supabase, Sequential Thinking) and when to reach for each.
debug-issue
Hypothesis-driven debugging with runtime evidence — Sentry, Firecrawl, and Sequential Thinking, not guessing.
refactor
Systematic refactoring: analyze → split → extract → verify behavior, with no truncation or omitted lines.