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/kws-projects/react-boilerplate/git-workflowgit clone --depth 1 https://github.com/kws-projects/react-boilerplateWhat 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.00245 | $0.00245 |
| Opus 5 | $0.00122 | $0.00122 |
| Sonnet 5 | $0.00049 | $0.00049 |
| Haiku 4.5 | $0.00024 | $0.00024 |
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 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
Git Workflow
main= production,develop= development.- Branch new work out from
main(e.g.feat/...,fix/...). - Open a PR against the target branch (normally
develop); merge only after review and passing CI. - Never commit directly to
mainordevelop. The single exception is the automated version-bump commit onmain(handled by.github/workflows/release.yml). - Use Conventional Commits (enforced by commitlint). These prefixes directly
control the automated version bump on merge to
main:BREAKING CHANGEor!:→ major bumpfeat:→ minor bumpfix:,chore:,docs:, etc. → patch bump
When asked to "commit" or "push" work, create or use a feature branch and prefer
opening a PR; do not push straight to main/develop. See CONTRIBUTING.md for
the full process.
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 · 24 lines · 245 tokens per session scan A 5de345c8d46f
git-workflow is a cursor rule published in the GitHub repository kws-projects/react-boilerplate (3 stars, last pushed 2mo ago), licensed MIT. It adds 245 tokens to every session, about $0.0012 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
library-conventions
React Native library conventions for this starter. Apply when creating or editing components, hooks, types, or tests in src/.
design
Design system, accessibility standards, and industry-specific styling guidelines.
services
Service layer architecture, API patterns, and data management with TanStack Query.
components
Component development patterns and composition rules.
quality
Code quality checklist and anti-patterns to avoid before shipping.
typescript
TypeScript type definitions and utility patterns for the application.