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/kanevry/session-orchestrator/030-wave-executiongit clone --depth 1 https://github.com/Kanevry/session-orchestratorWrote 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/kanevry/session-orchestrator/030-wave-execution)<a href="https://agentmods.dev/rules/kanevry/session-orchestrator/030-wave-execution"><img src="https://agentmods.dev/badge/rules/kanevry/session-orchestrator/030-wave-execution.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.00018 | $0.02812 |
| Opus 5 | $0.00009 | $0.01406 |
| Sonnet 5 | $0.00004 | $0.00562 |
| Haiku 4.5 | $0.00002 | $0.00281 |
Grade C, and why
030-wave-execution scanned grade C with 1 finding 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 4d 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.
Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
"blockedCommands": ["rm -rf", "git push --force", "DROP TABLE", "git reset --hard", "git checkout -- ."] How it starts
The opening of the file, as written. The whole thing — 235 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Wave Execution (Cursor Adaptation)
CRITICAL: Cursor does NOT have an
Agent()tool. All wave tasks execute sequentially in the current Composer session. You are both the coordinator AND the implementer. Agent dispatch (3-tier resolution: project > plugin > general-purpose) is NOT applicable — follow the role's agent-prompt patterns directly.
State directory: All state files live in
.cursor/(STATE.md, wave-scope.json).
Pre-Execution
Before starting Wave 1:
git status --short— commit or stash any uncommitted changes- Capture baseline:
SESSION_START_REF=$(git rev-parse HEAD)— keep for the whole session - Confirm the agreed plan is still valid
- Read
persistencefrom Session Config (default:true)
Initialize STATE.md (if persistence enabled)
Create .cursor/STATE.md (mkdir -p .cursor if needed):
---
schema-version: 1
session-type: feature|deep|housekeeping
branch: <current branch>
issues: [<issue numbers from plan>]
started_at: <ISO 8601 timestamp>
status: active
current-wave: 0
total-waves: <from session plan>
---
## Current Wave
Wave 0 — Initializing
## Wave History
(none yet)
## Deviations
(none yet)
Wave Loop
For each wave in the session plan:
Step 1: Write Scope Manifest
Write .cursor/wave-scope.json before each wave. Set enforcement: warn unless .cursor/hooks.json is installed — then preToolUse can block via cursor-hook-bridge.mjs. afterFileEdit remains post-hoc (cannot unwrite):
{
"wave": 1,
"role": "<role>",
"enforcement": "warn",
"allowedPaths": ["<union of all task file scopes for this wave>"],
"blockedCommands": ["rm -rf", "git push --force", "DROP TABLE", "git reset --hard", "git checkout -- ."]
}
Role-specific scope rules:
- Discovery:
allowedPaths: []— READ-ONLY, do not edit files - Quality Phase 1 (Simplification): production files changed this session only (no test files)
- Quality Phase 2 (Tests): test file patterns only (
**/*.test.*,**/*.spec.*,**/__tests__/**)
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.
- 4d ago First seen · 235 lines · 18 tokens per session scan C 20309cb5c882
030-wave-execution is a cursor rule published in the GitHub repository Kanevry/session-orchestrator (49 stars, last pushed today), licensed MIT. It adds 18 tokens to every session and 2,812 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other cursor rules, from other repositories
incremental-verify
Verify each behavior before building the next. One test, one implementation, one commit. No bulk-writing tests for behavior that does not yet exist.
context-discipline
Manage AI context window efficiently - read before write, no re-reads, tool-call budgets, one-pass discipline.
token-efficiency
Token efficiency rules - eliminate waste in AI output, enforce read-before-write, prevent iteration cycles.
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.