launch-super-researcher
Launch an autonomous research agent to investigate codebases, APIs, libraries, and technical topics. It produces markdown research documents for downstream planning and coding agents.
Instructions
Launch an autonomous research agent. Investigates codebases, APIs, libraries, and technical topics. Produces .md research documents for downstream agents. Investigate before you solve — use this before planning or coding when the problem space is unclear.
Workflow: RESEARCHER → planner → coder → tester
Output goes to .agent-workspace/researches/[topic]/. After completion, read task:///{id} to get the workspace path, then pass ALL .md files from that workspace as context_files to the next agent (planner or coder). Don't cherry-pick — send everything.
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 | Research brief. MUST include: WHAT TO RESEARCH (specific topic), WHY IT MATTERS (what decision it informs), WHAT'S ALREADY KNOWN (verified facts), SPECIFIC QUESTIONS (2-5 pointed questions), HANDOFF TARGET (who reads output). Min 200 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 | No | Optional reference files for the researcher. Pass ALL relevant files from prior agent workspaces — don't filter. Max 20 files, 200KB each, 500KB total. |