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 rules/mhmdreza-rafiei/agent-tools/git-workflowgit clone --depth 1 https://github.com/mhmdreza-rafiei/agent-toolsWhat 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.00929 | $0.00929 |
| Opus 5 | $0.00464 | $0.00464 |
| Sonnet 5 | $0.00186 | $0.00186 |
| Haiku 4.5 | $0.00093 | $0.00093 |
Grade A, and why
git-workflow 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 3d 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.
How it starts
The opening of the file, as written. The whole thing — 92 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Git workflow (all projects)
When this rule applies
Follow this rule for project work (code, files, scaffolding, installs, git operations).
Skip for general chat, casual talk, image generation, and help-only sessions (questions, how-to, Cursor/docs) with no project changes.
Git must exist first
- If the directory is not a git repo (
git rev-parse --is-inside-work-treefails), stop substantive project work and ask the user to initialize or clone git first (git init, remote, etc.). - When creating a new project, offer
git init(and remote if they want) before meaningful changes; confirm setup before continuing.
User preference: commit vs push
Early in project work (or when unknown), ask what they want when work is done:
- Commit only — local checkpoint; never push unless they later ask.
- Push only — only if commits already exist and they explicitly want remote updated (still confirm).
- Both — commit then push when they approve at end of task.
- Neither — no git writes without a later explicit request.
Respect the latest answer for the session; re-ask if scope changes (e.g. they switch to “commit only” for a restore point).
Conventional Commits (required for new commits)
Format (spec):
<type>[optional scope][optional !]: <description>
[optional body]
[optional footer(s)]
- Types:
feat,fix, plusbuild,chore,ci,docs,style,refactor,perf,test,revert, etc. feat= new feature;fix= bug fix. Breaking:!before:and/orBREAKING CHANGE: <description>footer.- Title: lowercase type, imperative short description after colon and space.
- Body: blank line after title; explain why when helpful.
feat(api): add pagination to list endpoint
fix: prevent race when canceling in-flight requests
docs: correct CHANGELOG spelling
Do not commit files that likely contain secrets (.env, credentials). Warn if asked.
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.
- 3d ago First seen · 92 lines · 929 tokens per session scan A 2a8c2c185381
git-workflow is a cursor rule published in the GitHub repository mhmdreza-rafiei/agent-tools (5 stars, last pushed 15d ago), licensed MIT. It adds 929 tokens to every session, about $0.0046 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 cursor rules, from other repositories
angular-20
This rule provides comprehensive best practices and coding standards for Angular development, focusing on modern TypeScript, standalone components, signals, and performance optimizations.
dev-standard
Apache Superset development standards and guidelines for Cursor IDE.
cli-error-handling
CLI command error handling patterns.
prefer-direct-imports-over-module-mocks
Prefer extracting a testable core over vi.mock / vi.resetModules when unit tests need to reach production logic entangled with config, env, or singletons.
control-plane-descriptors
Control plane descriptor and instance implementation patterns.
family-instance-domain-actions
Family instance domain action implementation patterns.