launch-super-coder
Launch an isolated autonomous coding agent to implement, fix, or refactor code using only markdown context files.
Instructions
Launch an autonomous coding agent for implementation, bug fixes, and refactoring. Runs in COMPLETE ISOLATION — the prompt + context_files are its ONLY context. The coder is always the final implementation stage — investigate and plan before coding for non-trivial tasks.
context_files are MANDATORY and ONLY .md files are accepted. Pass .ts/.js/.json and it WILL fail. Create .md specs via launch-super-planner first, or write one yourself.
Workflow: researcher → planner → CODER → tester
After planner completes, read task:///{id} to get workspace path, then pass ALL .md files from that workspace as context_files here. Don't cherry-pick — send everything.
Coder writes detailed testing notes to .agent-workspace/implementation/[topic]/HANDOFF.md — including Playwright hints for UI or curl commands for APIs — which the tester consumes.
Status: Read task:///all every ~30s to monitor all tasks (status, deps, questions). Statuses: running, waiting → <dep>, waiting_answer ⏸, completed, failed.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cwd | No | Working directory override (absolute path). Usually omit — server auto-detects project root. Set only if the agent needs a different root. | |
| model | No | Model to use. Default: gpt-5.4-high. Also accepts aliases: sonnet, opus, gpt-5.4, o4-mini, etc. | |
| labels | No | Tags for grouping related tasks, e.g. "auth", "frontend", "v2-migration". Max 10 labels, 50 chars each. | |
| prompt | Yes | Implementation brief. MUST include: OBJECTIVE (what to build), FILES TO MODIFY (absolute paths), SUCCESS CRITERIA (how to verify), CONSTRAINTS (what NOT to do), PATTERNS (existing code to follow). Min 1000 chars. | |
| depends_on | No | Task IDs that must complete before this starts. Handles execution ORDER only — you still must specify context_files with known paths or spawn after reading predecessor output via task:///{id}. | |
| context_files | Yes | REQUIRED. ONLY .md files accepted — .ts/.js/.json will be rejected. Create specs via launch-super-planner first. Max 20 files, 200KB each, 500KB total. |