deep-researcher

deep-researcher is an agent for Claude Code from Human-Agent-Society/CORAL. It costs 50 tokens per session (1,299 once invoked), scanned B, original, Apache-2.0.

A coding agent that researches a problem area thoroughly, saves original sources, and writes structured findings for other agents. It checks existing research first and looks for missing areas of knowledge.

In plain words
What is it for?
Use it when starting a new task, investigating techniques from research literature, filling gaps in existing notes, or seeking new approaches when progress has stalled.
Why use it?
It gives a project a documented research base instead of relying only on assumptions or repeating work that has already been done.

Agent for Claude Code

Written for Claude Code: a Claude Code subagent (agents/*.md). Also seen: reads .claude/ paths.

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is - [source-a](../raw/source-a.md) — results summary.

Good fit Use it when starting a new task, investigating techniques from research literature, filling gaps in existing notes, or seeking new approaches when progress has stalled.

Compare 6 agents from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/Human-Agent-Society/CORAL
agentmods
npx agentmods add agents/human-agent-society/coral/deep-researcher

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for deep-researcher

README.md
[![agentmods](https://agentmods.dev/badge/agents/human-agent-society/coral/deep-researcher/github.svg)](https://agentmods.dev/agents/human-agent-society/coral/deep-researcher)
Your own site
<a href="https://agentmods.dev/agents/human-agent-society/coral/deep-researcher"><img src="https://agentmods.dev/badge/agents/human-agent-society/coral/deep-researcher/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for deep-researcher

Your own site · 80×15
<a href="https://agentmods.dev/agents/human-agent-society/coral/deep-researcher"><img src="https://agentmods.dev/badge/agents/human-agent-society/coral/deep-researcher.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 50 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,299 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00050 $0.01299
Opus 5 $0.00025 $0.00649
Sonnet 5 $0.00010 $0.00260
Haiku 4.5 $0.00005 $0.00130

Measured 11d ago against content hash fc5c77194714, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade B, and why

deep-researcher scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

cat .claude/notes/research/_coverage.md 2>/dev/null
coral/template/agents/deep-researcher.md · 154 lines

How it starts

The opening of the file, as written. The whole thing — 154 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You are the deep researcher. Your job is to thoroughly investigate the problem domain, survey available techniques, and produce actionable research notes that guide implementation efforts.

Instructions

When spawned, you will receive context about the task and what needs researching. Execute the following process and return a summary of your findings and recommendations.

1. Assess Knowledge Gaps

Before searching, understand what's already known:

# Read the coverage ledger first — it's the map of what's been researched
cat .claude/notes/research/_coverage.md 2>/dev/null

# Check existing research
ls .claude/notes/research/ 2>/dev/null
cat .claude/notes/index.md 2>/dev/null

# See what approaches have been tried
coral log -n 10 2>/dev/null
coral notes --search "technique" 2>/dev/null

Identify what's missing: known approaches nobody has tried, unexplored domains, well-studied problem classes with no literature review. If _coverage.md doesn't exist yet, create it — decompose the task into 4–8 research dimensions and mark them all missing. If it does, target the rows still missing or partial rather than re-covering what's already covered.

2. Search — Cast a Wide Net, Then Focus

Broad survey — search for the problem class:

  • "[problem domain] state of the art methods"
  • "[problem domain] survey paper"
  • "[problem domain] benchmark comparison"

Specific techniques — once you identify promising approaches:

  • "[technique name] vs [alternative] comparison"
  • "[technique name] implementation details"
  • "[technique name] python library"

Practical implementations — find code and libraries:

  • "[problem] python implementation github"
  • "[problem] open source solution"

Do 5-10 focused searches. Read papers and articles for methodology and results — how did they solve it, and what performance did they achieve?

3. Save Raw Sources

For every useful source, save the raw content to .claude/notes/raw/:

Read the full file on GitHub · 154 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 154 lines · 50 tokens per session scan B fc5c77194714

Subscribe to this mod's changes

deep-researcher is an agent published in the GitHub repository Human-Agent-Society/CORAL (972 stars, last pushed 2d ago), licensed Apache-2.0. It adds 50 tokens to every session and 1,299 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other agents, from other repositories

reviewer-performance

Use this agent when you need to analyze code for performance issues, optimize algorithms, identify bottlenecks, or ensure scalability. This includes reviewing database queries, memory usage, caching strategies, and overall system performance. The agent should be invoked after implementing features or when performance…

wsauret/flywheel · 345 tokens

test-deduplicator

Duplicate test removal agent. Use in Step 4 (Refactoring) of the development workflow. Receives the list of test files added or modified in the current iteration, reads those files and any existing files in the same test class, identifies and removes true duplicates, merges parameterizable tests, then commits. Returns…

nowsprinting/unity-coding-skills · 83 tokens

mach12:code-explorer

Deeply analyzes existing codebase behavior, data flow, algorithms, side effects, and issue-specific patterns to inform new development.

LeanAndMean/scramjet · 31 tokens

skill-reviewer

Use this agent when the user has created or modified a skill and needs quality review, asks to "review my skill", "check skill quality", "improve skill description", or wants to ensure skill follows best practices. Trigger proactively after skill creation. Examples: Context: User just created a new skill user: "I've…

neuradex/sna · 249 tokens

devops

DevOps — Manages Git workflows, release branching, CI pipeline configuration, and PR creation for the project.

zebbern/termstack · 25 tokens

FabricSolutionArchitect

Design Microsoft Fabric solution architecture across Lakehouse, Warehouse, Real-Time Intelligence, Data Factory, Power BI, Data Agents, governance, security, operations, and ALM. Use when the request asks for a target architecture, solution blueprint, workload selection, trade-off analysis, reference architecture…

kimtth/ms-fabric-skills-dev-starter · 83 tokens