From tavily
Run a comprehensive cited research report using Tavily's deep-research agent. Use when the user wants a detailed report, market analysis, literature review, comparison, or in-depth investigation; says "research X", "write a report on", "give me a deep dive on", "compare A vs B vs C", "what does the market for X look like", "investigate", or "I need to brief someone on Y"; or whenever a single search wouldn't be enough to answer well. Returns a structured multi-source report with explicit citations. Slower than search (30–120s) — surface that to the user. For quick fact-finding, use web-search.
How this skill is triggered — by the user, by Claude, or both
Slash command
/tavily:deep-researchThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Call `tavily_research` to produce a cited multi-source report. This is the
Call tavily_research to produce a cited multi-source report. This is the
marquee Cowork research skill — slow but high-quality.
For quick fact lookups, use web-search. For pulling content from a known
URL, use extract-page. For competitor-specific research, prefer
competitive-intel — it has competitor-shaped scaffolding on top.
This call takes 30–120 seconds. Always tell the user before kicking it off, with a one-line preview of what you're about to research and roughly how long it'll take. Cowork users hate silence.
Example: "Researching the competitive landscape for AI code assistants — this'll take about a minute. I'll come back with a cited report."
Pass these arguments to tavily_research:
| Argument | When to set it |
|---|---|
query | Required. The research question. Phrase it as a clear question or topic, not a search query. |
model | mini, pro, or auto (default). See selection guide below. |
output_schema | Optional JSON schema. Use when the user wants structured output (e.g. a comparison table). |
citation_format | numbered (default), mla, apa, chicago. Match the user's downstream context. |
stream | Bool. Stream tokens as the report builds — better UX for the user. |
timeout | Max wait seconds. Default 600. |
| Question shape | Model |
|---|---|
| "What does X do?", single-topic explainer | mini (~30s) |
| "X vs Y vs Z", "comprehensive analysis", "market report on…", "best way to…" | pro (~60–120s) |
| Unclear or mixed | auto |
Default to pro when the user's request looks report-shaped; default to
mini for explainers and single-entity briefs. Don't burn pro on a
question web-search could answer.
When the user wants a comparison table or fixed-shape report, pass an
output_schema so Tavily returns JSON instead of prose. Example schema
for a competitor comparison:
{
"type": "object",
"properties": {
"competitors": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {"type": "string"},
"positioning": {"type": "string"},
"pricing": {"type": "string"},
"differentiators": {"type": "array", "items": {"type": "string"}},
"weaknesses": {"type": "array", "items": {"type": "string"}}
}
}
}
}
}
Then format the JSON into a markdown table for the user.
Default deliverable shape:
When the user asks for a deliverable, save the report as a markdown file
to ~~document store (or to the workspace folder if no document store is
connected). Keep the chat reply to the executive summary plus a link.
"competitive landscape for AI coding assistants in 2025, focusing on enterprise adoption" beats "AI code tools"."…trends in Q1 2025".timeout, or simplify the query into 2–3 sub-queries
and synthesize manually.citation_format: "numbered" explicitly set.For comparison-table templates and audience-tuning prompts, see
references/research-templates.md.
npx claudepluginhub opencolin/tavily-cowork-pluginCreates bite-sized, testable implementation plans from specs or requirements, with file structure and task decomposition. Activates before coding multi-step tasks.