coordinator
Runs the research-team plugin's multi-agent research pipeline end-to-end from the main thread: decomposes a topic into 2-5 subtopics, spawns parallel research-team:research-specialist subagents for each, verifies their output on disk, then spawns a research-team:research-report-writer subagent to synthesize the final report. Activate ONLY when the user explicitly invokes this plugin — for example: "use research-team", "run the research-team coordinator", "research X with the research-team plugin", "research-team: research X", or when the user requests research that specifically needs Joplin-formatted output via this plugin's report-writer. Do NOT activate for generic research requests. A separate user-global multi-agent-research skill (if installed) handles unqualified "research X" prompts; this skill defers to that one unless the research-team plugin is named explicitly.
What this skill does
You are executing the research-team plugin's multi-agent research pipeline in the main agent context. Your job is to orchestrate — never research or write yourself.
**CRITICAL RULES:**
1. You MUST delegate ALL research and report writing to the plugin's specialist subagents. You NEVER research or write reports yourself.
2. Keep your own responses to 2-3 sentences max. No greetings, no emojis, no meta-commentary.
3. Spawn researcher subagents IN PARALLEL via multiple Task tool calls in a single response — never sequentially.
4. Wait for ALL researchers to return before spawning the report-writer.
5. Trust nothing you didn't verify. Every claimed output file must be confirmed on disk via `Glob` before you tell the user the work is done.
## Why this is a skill, not an agent
Claude Code agents are always spawned as *sub*agents. An agent that itself needs to spawn subagents via `Task` hits Claude Code's nested-spawn constraint and fails. This skill runs in the main agent's context, so its `Task` calls are first-level and succeed. Do not attempt to delegate this orchestration back to a subagent — run it here.
## Available tools in this workflow
- **Task**: Spawn `research-team:research-specialist` and `research-team:research-report-writer` subagents. Primary tool. Always use the fully-qualified plugin-namespaced form for `subagent_type` — bare names fail to resolve across plugin boundaries.
- **Bash(mkdir:*)**: Run exactly ONE command per session to ensure the working directories exist: `mkdir -p ~/Documents/Claude/Research/research_notes ~/Documents/Claude/Research/reports`. Idempotent. Do not issue any other Bash call — your scope only permits `mkdir`.
- **Glob**: Primary verification tool — confirm that researchers' claimed output paths and the report-writer's output actually exist on disk.
- **Read**: Escape hatch only — for diagnosing a malformed output manifest. Do NOT read research notes and summarize them yourself; that violates the delegation rule.
## Workflow
**STEP 0: ENSURE WORKING DIRECTORIES**
First action every run, exactly once:
`Bash(mkdir -p ~/Documents/Claude/Research/research_notes ~/Documents/Claude/Research/reports)`
`mkdir -p` is idempotent — it silently no-ops when the directories already exist, so there is no separate "check" step.
**STEP 1: ANALYZE THE USER REQUEST**
- Understand the research topic and scope.
- Identify 2-5 distinct, non-overlapping subtopics that together give comprehensive coverage.
- Assign each subtopic an output filename using the pattern `NN_slug.md` where NN is a zero-padded index (01, 02, 03, 04) and `slug` is a short kebab-case summary (e.g., `01_quantum-hardware.md`, `02_quantum-algorithms.md`).
**STEP 2: SPAWN RESEARCHER SUBAGENTS (IN PARALLEL)**
- Spawn 2-5 `research-team:research-specialist` subagents in parallel (single response, multiple tool calls — not sequential). Always use the fully-qualified `research-team:research-specialist` as the `subagent_type`.
- Each researcher's prompt MUST include:
- The specific subtopic and focus.
- The exact output path you assigned in STEP 1: `~/Documents/Claude/Research/research_notes/<NN>_<slug>.md`.
- A requirement to end their response with a fenced `output-manifest` block (see `<output_manifest_contract>` below).
**STEP 3: WAIT FOR ALL RESEARCHERS**
- All spawned researchers must return before proceeding.
- Do not start the report-writer while any researcher is still running.
**STEP 3.5: VERIFY RESEARCHER OUTPUT (with single retry)**
- Parse each researcher's `output-manifest` block and extract the `path:` value. If a researcher returned no `output-manifest` block at all (killed, errored, or otherwise empty), record that subtopic as "no manifest."
- Run `Glob(pattern="~/Documents/Claude/Research/research_notes/*.md")` once to list every note file on disk.
- Classify each subtopic as one of:
- **OK** — manifest present AND path appears in the Glob result.
- **MISSING** — manifest present but path does NOT appear in the Glob result.
- **NO_MANIFEST** — researcher did not return a manifest.
- For every non-OK subtopic, respawn the `research-team:research-specialist` subagent **exactly once** with the same subtopic, output path, and manifest requirement the original researcher received. Do this in parallel if there is more than one retry. Do NOT loop.
- After the retry round returns, re-verify with another `Glob(pattern="~/Documents/Claude/Research/research_notes/*.md")` call and re-classify.
- If any subtopic is still non-OK after the single retry:
- Do NOT spawn the report-writer.
- Report the failure to the user listing which subtopics failed and the reason (MISSING vs NO_MANIFEST).
- Stop. Let the user decide whether to retry further.
- If all subtopics are OK (either on first attempt or after the single retry), proceed to STEP 4.
**STEP 4: SPAWN REPORT-WRITER SUBAGENT**
- Spawn ONE `research-team:research-report-writer` subagent. Always use the fully-qualified `research-team:research-report-writer` as the `subagent_type`.
- Include in the prompt:
- Instruction to read ALL research notes from `~/Documents/Claude/Research/research_notes/`.
- Instruction to save the final report to `~/Documents/Claude/Research/reports/`.
- If the user mentioned Joplin, tell the report-writer to load the `joplin-research` skill for formatting.
- Requirement to end its response with a fenced `output-manifest` block.
**STEP 5: VERIFY AND CONFIRM COMPLETION**
- Parse the report-writer's `output-manifest`; extract the `path:` value.
- Verify the report exists via `Glob(pattern="~/Documents/Claude/Research/reports/*")` and confirm the manifest path appears in the result.
- Report the verified absolute path to the user. Do NOT interpolate a filename from topic and date — use the exact path from the manifest.
- If verification fails, report the failure and stop.
## Output manifest contract
Every researcher and report-writer you spawn must return an `output-manifest` block as the FINAL element of their response. The block MUST use **exactly three backticks** as the fence and `output-manifest` as the language tag. Literal format:
```output-manifest
path: /absolute/path/to/the/file/they/wrote.md
```
The report-writer's manifest additionally includes `bytes: <integer>` on its own line inside the block.
Parse these blocks by searching each subagent's response for a line matching exactly ` ```output-manifest ` (three backticks, the literal tag) and extracting the `path:` line from the block body. Reject variant fencing (e.g., four backticks) — a non-conforming block signals a malformed response. If a subagent's response lacks this block entirely, treat the delegation as failed.
## Task tool usage
Task tool parameters for each spawn:
For researchers (`subagent_type: "research-team:research-specialist"` — always the fully-qualified plugin-namespaced form):
- **description**: Brief 3-5 word description of the subtopic
- **prompt**: Must include:
1. The specific research focus and subtopic scope.
2. The **exact output path** you assigned: `~/Documents/Claude/Research/research_notes/<NN>_<slug>.md`.
3. The minimum number of WebSearches required (typically 3-7).
4. A requirement to end the response with an `output-manifest` block containing the saved path.
For report-writer (`subagent_type: "research-team:research-report-writer"` — always the fully-qualified plugin-namespaced form):
- **description**: "Synthesize research into final report"
- **prompt**: Must include:
1. Instruction to Glob and Read all files in `~/Documents/Claude/Research/research_notes/`.
2. Target save path: `~/Documents/Claude/Research/reports/<topic-slug>_summary_YYYYMMDD.md`.
3. If the user mentioned Joplin, instruction to load the `joplin-research` skill.
4. Requirement to end the response with an `output-manifest` block (`path:` + `bytes:`).
## Parallel spawning
**Spawn researchers IN PARALLEL in a single response with multiple tool calls.**
Related in AI Agents
skill-development
IncludedComprehensive meta-skill for creating, managing, validating, auditing, and distributing Claude Code skills and slash commands (unified in v2.1.3+). Provides skill templates, creation workflows, validation patterns, audit checklists, naming conventions, YAML frontmatter guidance, progressive disclosure examples, and best practices lookup. Use when creating new skills, validating existing skills, auditing skill quality, understanding skill architecture, needing skill templates, learning about YAML frontmatter requirements, progressive disclosure patterns, tool restrictions (allowed-tools), skill composition, skill naming conventions, troubleshooting skill activation issues, creating custom slash commands, configuring command frontmatter, using command arguments ($ARGUMENTS, $1, $2), bash execution in commands, file references in commands, command namespacing, plugin commands, MCP slash commands, Skill tool configuration, or deciding between skills vs slash commands. Delegates to docs-management skill for official documentation.
reprompter
IncludedTransform messy prompts into well-structured, effective prompts — single or multi-agent. Use when: "reprompt", "reprompt this", "clean up this prompt", "structure my prompt", rough text needing XML tags and best practices, "reprompter teams", "repromptception", "run with quality", "smart run", "smart agents", multi-agent tasks, audits, parallel work, anything going to agent teams. Don't use when: simple Q&A, pure chat, immediate execution-only tasks. See "Don't Use When" section for details. Outputs: Structured XML/Markdown prompt, quality score (before/after), optional team brief + per-agent sub-prompts, agent team output files. Success criteria: Single mode quality score ≥ 7/10; Repromptception per-agent prompt quality score 8+/10; all required sections present, actionable and specific.
adaptive-compaction
IncludedAdaptive add-on policy and recovery layer that decides WHEN to compact, prune, snapshot, or fork -- replacing fixed-percent auto-compaction across Claude Code, Codex, and MCP-capable hosts. Trigger on auto-compact timing or damage: "when should I compact", "is it safe to compact now or start a fresh session", "auto-compact fires too early/mid-task", "switching to an unrelated task but the window still has space", "context rot", "answers get worse the longer the session runs", "the agent forgot the plan or my decisions after it summarized", "add a layer on top that manages context without changing the agent", raising autoCompactWindow to give the policy room, or installing/tuning a cross-tool compaction policy or PreCompact hook -- even when "compaction" is never said but the problem is context-window pressure or post-summarization memory loss. Do NOT use to summarize a conversation, build RAG, write a summarization prompt (decides WHEN not HOW), or answer max-context-length trivia.
agent-skill-creator
IncludedCreate cross-platform agent skills from workflow descriptions. Activates when users ask to create an agent, automate a repetitive workflow, create a custom skill, or need advanced agent creation. Triggers on phrases like create agent for, automate workflow, create skill for, every day I have to, daily I need to, turn process into agent, need to automate, create a cross-platform skill, validate this skill, export this skill, migrate this skill. Supports single skills, multi-agent suites, transcript processing, template-based creation, interactive configuration, cross-platform export, and spec validation.
llm-wiki
IncludedUse when building or maintaining a persistent personal knowledge base (second brain) in Obsidian where an LLM incrementally ingests sources, updates entity/concept pages, maintains cross-references, and keeps a synthesis current. Triggers include "second brain", "Obsidian wiki", "personal knowledge management", "ingest this paper/article/book", "build a research wiki", "compound knowledge", "Memex", or whenever the user wants knowledge to accumulate across sessions instead of being re-derived by RAG on every query.
skill-master
IncludedAgent Skills authoring, evaluation, and optimization. Create, edit, validate, benchmark, and improve skills following the agentskills.io specification. Use when designing SKILL.md files, structuring skill folders (references, scripts, assets), ingesting external documentation into skills, running trigger evals, benchmarking skill quality, optimizing descriptions, or performing blind A/B comparisons. Keywords: agentskills.io, SKILL.md, skill authoring, eval, benchmark, trigger optimization.