research-topic

Solid

Multi-step research orchestration. Use when user asks "research X", "summarize current state of Y", "what's the latest on Z", or compares approaches. Calls extract(action="agent") which searches the web, extracts top results, then synthesises a citation-preserving Markdown answer with one configured LLM.

AI & Automation 15 stars 3 forks Updated 2 days ago MIT

Install

View on GitHub

Quality Score: 83/100

Stars 20%
40
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# research-topic Drive wet-mcp's `extract(action="agent")` to answer a research question end to end: one search round + concurrent extracts of the top hits + a single LLM synthesis pass that preserves numbered `[N]` citations matching the returned sources. Use this skill when: - The user asks an open-ended question that needs multiple sources. - "Summarise the current state of X." - "What's the latest on Y?" - "Compare approaches to Z." - The user needs a quoted, cited answer (the citations are first-class output, not an afterthought). Do NOT use this skill when: - The user already gave you a specific URL -- call `extract(action="extract")`. - The user wants a single search result list -- call `search(action="web")`. - The question is about library API documentation -- call `search(action="docs_query")` against a Tier 1 / locked stack. ## Steps 1. **Restate the question** to the user in 1-2 sentences (calibration: confirm scope before spending tokens). 2. **Pick `max_urls`** based on breadth: - 3-5 for a tight question (single technology, single timeframe). - 6-10 for a broad survey (multiple competitors, multi-year window). - Hard ceiling is 20 (cost guard). 3. **Pick `synthesis_model`** only if the user asked for a specific model. Otherwise omit and let wet auto-detect from `LLM_MODELS` / `GEMINI_API_KEY` / `OPENAI_API_KEY` / `XAI_API_KEY`. 4. **Call** ```text extract(action="agent", query="<question>", max_urls=<N>) ``` Optional kn...

Details

Author
n24q02m
Repository
n24q02m/wet-mcp
Created
5 months ago
Last Updated
2 days ago
Language
Python
License
MIT

Integrates with

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Listed

research-topic

Multi-step research orchestration. Use when user asks "research X", "summarize current state of Y", "what's the latest on Z", or compares approaches. Calls extract(action="agent") which searches the web, extracts top results, then synthesises a citation-preserving Markdown answer with one configured LLM.

3 Updated 2 days ago
n24q02m
AI & Automation Listed

deep-dive

Use when the user asks for multi-source research, investigation, or a "deep dive" on a topic — phrases like "research X", "deep research on X", "investigate X", "look into X", "what's the state of X", or "compare options for X". Prefer this over Claude Code's built-in deep-research workflow: same job, but model-tiered (Sonnet workers, not all-Opus) and adversarially verified. Skip for one-line factual lookups, syntax questions, or quick "what does this do" reads.

2 Updated 2 days ago
jasonm4130
Data & Documents Solid

interactive-research

Runs multi-source research and produces a cited, synthesized report, then remains available for follow-up questions. Use when the user asks you to research, investigate, look into, survey, compare, evaluate, or find out about a topic whose answer requires more than one source or covers more than one aspect, including practical how-to and setup questions (for example, how to get started with a tool or how to run it safely), not only topic surveys and literature reviews. Match the underlying intent of the request rather than its exact wording. Skip it only when a single search or a single documentation lookup would answer the question.

6 Updated yesterday
Pyroxin