From herow-dev
(herow) Multi-source research with cited reports via Exa/web MCPs. Use when the user wants researched, sourced answers — deep dives, comparisons, current-state questions. Quick single-fact lookups don't need this skill.
How this skill is triggered — by the user, by Claude, or both
Slash command
/herow-dev:deep-researchThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
> **Drift-prone skill.** Exa/web MCP tool names, quotas, and result shapes change.
Drift-prone skill. Exa/web MCP tool names, quotas, and result shapes change. Verify the configured MCP tools and current API docs before promising coverage or quoting live source counts.
Produce thorough, cited research reports from multiple web sources, and route lighter asks to the cheapest path that answers them. This is the single research entry point — it absorbs the "classify the ask, take the lightest useful path first" routing and the evidence-labeling discipline that used to live in a separate research-ops skill.
Do not spin up a full pass when the answer is already in local code/docs, or when a single quick lookup suffices — see Step 0.
This repo's configured Exa server exposes:
web_search_exa — web/news discoveryweb_fetch_exa — fetch a URL's full content (use on the best result URLs when snippets aren't enough, including code/docs pages)Any configured search/fetch MCP works as a substitute — verify the exposed tool names
first (the exa-search skill documents the current Exa surface). Configure in
~/.claude.json or ~/.codex/config.toml.
Before searching, pick the lane:
web_search_exa (or the exa-search skill); stop there.Also normalize anything the user already supplied into: already-evidenced facts · needs verification · open questions. Don't restart from zero if the user already built part of the model.
Ask 1-2 quick clarifying questions:
If the user says "just research it" — skip ahead with reasonable defaults.
Break the topic into 3-5 research sub-questions. Example:
For EACH sub-question, search using the configured tools:
web_search_exa(query: "<sub-question keywords>", numResults: 8)
Search strategy:
For the most promising URLs, fetch full content — don't rely on snippets alone:
web_fetch_exa(url: "<url>") # for any URL, including GitHub/SO/docs pages for code & API detail
Read 3-5 key sources in full for depth.
Structure the report:
# [Topic]: Research Report
*Generated: [date] | Sources: [N] | Confidence: [High/Medium/Low]*
## Executive Summary
[3-5 sentence overview of key findings]
## 1. [First Major Theme]
[Findings with inline citations]
- Key point ([Source Name](url))
- Supporting data ([Source Name](url))
## 2. [Second Major Theme]
...
## Key Takeaways
- [Actionable insight 1]
- [Actionable insight 2]
## Sources
1. [Title](url) — [one-line summary]
2. ...
## Methodology
Searched [N] queries across web and news. Analyzed [M] sources.
Sub-questions investigated: [list]
Label every important claim by evidence type — sourced fact vs user-supplied context vs inference vs recommendation — and give concrete dates on freshness-sensitive answers.
For broad topics, use Claude Code's Task tool to parallelize:
Launch 3 research agents in parallel:
1. Agent 1: Research sub-questions 1-2
2. Agent 2: Research sub-questions 3-4
3. Agent 3: Research sub-question 5 + cross-cutting themes
Each agent searches, reads sources, and returns findings. The main session synthesizes into the final report.
"Research the current state of nuclear fusion energy"
"Deep dive into Rust vs Go for backend services in 2026"
"Research the best strategies for bootstrapping a SaaS business"
"What's happening with the US housing market right now?"
"Investigate the competitive landscape for AI code editors"
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub judsonjuniorr/claude-config --plugin herow-dev