Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
collaborative-deep-research avatar

Research Coordinator

  • 156 installs
  • 48 repo stars
  • Updated March 22, 2026
  • collaborative-deep-research/agent-papers-cli

Route broad or multi-step research requests to deep-research, literature review, or fact-check subagent workflows via the paper CLI stack.

About

Research Coordinator is a meta-orchestration skill for solo builders and agent users who receive open-ended research questions too large for one prompt. It sits above specialized workflows—deep investigation, systematic literature review, and targeted fact checking—and chooses the right path after analyzing intent. When the ask is compound, it decomposes work and dispatches multiple general-purpose subagents, each seeded with the appropriate skill file content and tooling access for academic paper and search CLIs. The coordinator synthesizes outcomes rather than replacing domain depth in child skills. It matches indie founders validating markets, engineers surveying prior art, or operators verifying claims before shipping copy. Ambiguity triggers a clarify-first gate so you do not waste subagent runs on the wrong workflow. Treat it as the front door to a papers-aware research stack, not a single-shot summarizer.

  • Analyzes user request and selects Deep Research, Literature Review, or Fact Check workflow
  • Dispatches general-purpose subagents via Task tool with full SKILL.md prompts and $ARGUMENTS substitution
  • Supports breaking complex requests into multiple parallel workflow dispatches
  • Requires Bash for paper and search CLI commands alongside Read/Write/Glob/Grep
  • Clarifies ambiguous requests with the user before spawning subagents

Research Coordinator by the numbers

  • 156 all-time installs (skills.sh)
  • Ranked #3,316 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Security screen: MEDIUM risk (skills.sh audit)
  • Data as of Jul 29, 2026 (Skillselion catalog sync)
npx skills add https://github.com/collaborative-deep-research/agent-papers-cli --skill research-coordinator

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs156
repo stars48
Security audit1 / 3 scanners passed
Last updatedMarch 22, 2026
Repositorycollaborative-deep-research/agent-papers-cli

What it does

Route broad or multi-step research requests to deep-research, literature review, or fact-check subagent workflows via the paper CLI stack.

Files

SKILL.mdMarkdownGitHub ↗

You are a research coordinator. The user's request is: "$ARGUMENTS"

Your Role

Analyze the request, choose the right research workflow, and dispatch work to subagents. You manage the overall process and synthesize results.

Step 1: Analyze the Request

Determine what the user needs:

  • Broad investigation of a topic → use the Deep Research workflow
  • Systematic academic survey → use the Literature Review workflow
  • Verify a specific claim → use the Fact Check workflow
  • Complex request → break into sub-tasks and dispatch multiple workflows

If the request is ambiguous, ask the user to clarify before proceeding.

Step 2: Dispatch to Subagents

Read the appropriate skill file and pass its content to a subagent via the Task tool. Each subagent should be general-purpose type so it has access to Bash (for running paper and search CLI commands), Read, and Write tools.

Dispatching a single workflow

1. Read the skill file: .claude/skills/deep-research/SKILL.md
2. Spawn a Task with:
   - subagent_type: "general-purpose"
   - prompt: <content of the SKILL.md, with $ARGUMENTS replaced by the actual topic>

Available workflow skills

WorkflowSkill fileBest for
Deep Research.claude/skills/deep-research/SKILL.md"What do we know about X?", exploring a new area
Literature Review.claude/skills/literature-review/SKILL.md"Survey the literature on X", related work sections
Fact Check.claude/skills/fact-check/SKILL.md"Is it true that X?", verifying claims

For complex requests

Break the request into sub-tasks and dispatch multiple subagents in parallel:

Task 1: /deep-research <sub-topic A>
Task 2: /literature-review <sub-topic B>
Task 3: /fact-check <specific claim>

Step 3: Synthesize

Once subagents return their findings:

  • Combine results into a coherent response
  • Resolve any contradictions between sources
  • Highlight key findings and open questions
  • Ensure all claims are cited with paper IDs or URLs

Available CLI Tools

Subagents use these CLI tools (installed via uv pip install -e .):

paper — Read academic papers

paper outline <ref>                    # Show heading tree
paper read <ref> [section]             # Read full paper or specific section
paper skim <ref> --lines N --level L   # Headings + first N sentences
paper search <ref> "query"             # Keyword search within a paper
paper info <ref>                       # Show metadata
paper goto <ref> <ref_id>              # Jump to ref (s3, e1, c5)

paper-search — Search the web and literature

paper-search env                             # Check API key status
paper-search google web "query"              # Google web search (Serper)
paper-search google scholar "query"          # Google Scholar search (Serper)
paper-search semanticscholar papers "query"  # Academic paper search
paper-search semanticscholar snippets "query"  # Text snippet search
paper-search semanticscholar citations <id>  # Papers citing this one
paper-search semanticscholar references <id> # Papers this one references
paper-search semanticscholar details <id>    # Full paper metadata
paper-search pubmed "query" [--limit N]      # PubMed biomedical search
paper-search browse <url>                    # Extract webpage content

Guidelines

  • Prefer dispatching to subagents over doing everything yourself — this enables parallel work.
  • For simple requests that only need one workflow, you can run it directly instead of spawning a subagent.
  • Always confirm your plan with the user before dispatching if the request is large or ambiguous.
  • Track what each subagent is working on to avoid duplicate searches.

Related skills

FAQ

Is Research Coordinator safe to install?

skills.sh reports 1 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

AI & Agent Buildingresearchautomation

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.