030-wave-execution

030-wave-execution is a cursor rule for Cursor from Kanevry/session-orchestrator. It costs 18 tokens per session (2,812 once invoked), scanned C, original, MIT.

A set of instructions for running planned work in sequential waves, where each wave is a group of tasks completed in order.

In plain words
What is it for?
Use it when executing a session plan with the /go command, especially when tasks need ordered progress tracking and quality checks.
Why use it?
It provides checks for starting work, recording progress, and keeping session state in a project’s .cursor folder.

Cursor rule for Cursor

Install

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.

agentmods
npx agentmods add rules/kanevry/session-orchestrator/030-wave-execution
Clone the repo
git clone --depth 1 https://github.com/Kanevry/session-orchestrator

Made for: Cursor.

Wrote 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.

agentmods badge for 030-wave-execution

README.md
[![agentmods](https://agentmods.dev/badge/rules/kanevry/session-orchestrator/030-wave-execution.svg)](https://agentmods.dev/rules/kanevry/session-orchestrator/030-wave-execution)
Your own site
<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>
Per session 18 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,812 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 4d ago against content hash 20309cb5c882, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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 -- ."]
.cursor/rules/030-wave-execution.mdc · 235 lines

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:

  1. git status --short — commit or stash any uncommitted changes
  2. Capture baseline: SESSION_START_REF=$(git rev-parse HEAD) — keep for the whole session
  3. Confirm the agreed plan is still valid
  4. Read persistence from 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__/**)

Read the full file on GitHub · 235 lines

Changes

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.

  1. 4d ago First seen · 235 lines · 18 tokens per session scan C 20309cb5c882

Subscribe to this mod's changes

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.