ワンクリックで
recursive-execution
Wave execution rules -- agent constraints, wave barriers, review-fix evaluation, language awareness.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Wave execution rules -- agent constraints, wave barriers, review-fix evaluation, language awareness.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
How agents, skills, and commands work in Claude Code projects.
GitHub conventions -- branch naming, commit format, issue/PR templates, and safe issue/PR referencing in comments.
API error response format -- machine-readable codes, human-readable reasons, status code rules.
Language-agnostic code hygiene -- honest comments, no dead/reinvented/duplicated code, truthful names, real implementations, and scoped (never blanket) diagnostic suppressions.
Language-agnostic structural craft -- decompose on responsibility not size, prefer deep modules over shallow piles, and shape cohesion, coupling, interfaces, error contracts, and data invariants. Sibling to code-hygiene and readable-code.
Documentation writing conventions -- style, structure, tone, and quality standards.
| name | recursive-execution |
| description | Wave execution rules -- agent constraints, wave barriers, review-fix evaluation, language awareness. |
| when_to_use | Orchestrating or implementing within recursive development waves. |
These apply to ALL agents in the recursive tree:
isolation: "worktree". Worktree agents work in a copy -- files get discarded on cleanup.run_in_background: true. Background dispatch triggers worktree isolation. Use foreground Agent calls -- send parallel agents in a single message for concurrency.recursive-implementer scoped to affected files with findings in the prompt.Waves execute sequentially. Within each wave, agents run in parallel.
Wave barrier: all agents must complete before running tests or starting the next wave. Send all wave agents as foreground calls in a single message when possible. Sequential dispatch is acceptable when needed.
Typical structure:
recursive-implementer)recursive-implementer agents)Adapting mid-flight: the orchestrator may add missing deps, adjust types, reorder/merge modules, fix structural issues between waves, and adjust scope boundaries.
After each wave, spawn a recursive-reviewer scoped to the wave's output:
Post-Wave 0: review contracts for richness -- are interfaces complete enough for downstream modules? Fix gaps directly.
Post-implementation waves: review for bugs, structural artifacts, cross-module consistency. Fix Critical findings via implementer agents (max 2 rounds). Note Important findings.
Post-final wave: full codebase review. Fix Critical. Verify README.md and CHANGELOG.md exist -- create via implementer if missing.
Report: total tests, files, max nesting depth, findings summary (found/fixed).
The wave plan's Language & Conventions section determines:
pytest, npx vitest run, cargo test)npm install, uv sync)Include Language & Conventions in every subagent prompt.