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/jkudjo/oh-my-cursor/pipelinegit clone --depth 1 https://github.com/Jkudjo/oh-my-cursorWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/rules/jkudjo/oh-my-cursor/pipeline)<a href="https://agentmods.dev/rules/jkudjo/oh-my-cursor/pipeline"><img src="https://agentmods.dev/badge/rules/jkudjo/oh-my-cursor/pipeline.svg" alt="Measured on agentmods" height="20"></a>What 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.00016 | $0.00506 |
| Opus 5 | $0.00008 | $0.00253 |
| Sonnet 5 | $0.00003 | $0.00101 |
| Haiku 4.5 | $0.00002 | $0.00051 |
Grade A, and why
pipeline 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 5d 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.
What it actually says
@pipeline
Trigger: Before shipping, after major changes, or as a pre-PR gate.
Stages (run in order, stop on critical failure)
| Stage | Command hint | Fail condition |
|---|---|---|
| 1. Typecheck | tsc --noEmit / pyright |
Any type errors |
| 2. Lint | eslint / biome / ruff |
Errors (warnings OK) |
| 3. Build | npm run build / cargo build |
Non-zero exit |
| 4. Tests | npm test / pytest |
Any failures |
| 5. Security scan | Run @security-review inline |
Any CRITICAL findings |
Protocol
- Call
start_modemode=autopilottask=pipeline(reuse for tracking). - Run each stage in sequence. For each stage:
- Execute the relevant command
- Check result
- Call
update_mode_statewithphase=stage-N - If FAIL: attempt one auto-fix cycle (same as
@qacycle mode) - If still FAIL after one cycle: mark stage as failed, continue to next (unless critical)
- Stop entirely if build fails (no point running tests against a broken build).
- Run
@security-reviewas final stage — flag CRITICAL findings. - Write pipeline report:
## Pipeline Report | Stage | Result | Cycles used | |-------|--------|-------------| | Typecheck | ✓ PASS | 0 | | Lint | ✓ PASS | 1 (auto-fixed) | | Build | ✓ PASS | 0 | | Tests | ✗ FAIL | 1 | | Security | ✓ PASS | — | **Overall: PASS / FAIL** Issues remaining: ... - Call
save_artifacttype=specs, slug=pipeline-{date}. - Call
update_mode_statestatus=completed.
Rules
- Fix auto-fixable issues (lint, simple type errors) automatically.
- Never modify tests to make them pass.
- A pipeline PASS with security CRITICAL is still a FAIL.
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.
- 5d ago First seen · 55 lines · 16 tokens per session scan A 73b6e2e0776b
pipeline is a cursor rule published in the GitHub repository Jkudjo/oh-my-cursor (1 stars, last pushed 5mo ago), licensed MIT. It adds 16 tokens to every session and 506 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 cursor rules, from other repositories
turborepo
Turborepo: monorepo structure, caching, task pipelines.
ci-cd
CI/CD: pipelines, deployment, automation.
code-optimization
Guidelines for optimizing duplicate and poorly structured code.
ci-cd
CI/CD pipeline patterns and deployment rules.
release
Changesets release pipeline - version PR, shared vX.Y.Z tag, CI gate before tagging, no npm publish, GITHUBTOKEN tag trigger limitation.
implementation-workflow
Required plan-first workflow for any implementation request (steps 1–5).