agentsclimarketplace

Research

Skill bigph00t/claude-research-team/plugin/skills/research

Research a topic using autonomous web search and AI synthesis. Use when you need external information, documentation lookup, or to validate technical approaches.From its SKILL.md

Install
npx -y skills add bigph00t/claude-research-team --skill research

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

3 things to look at

  • 8 stars8 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
  • runs commandsInstructs the agent to run 2 commands, including `curl http://localhost:3200/api/health` and 1 more.
  • fetches URLsInstructs the agent to fetch 2 URLs, including http://localhost:3200/api/health and 1 more.

SKILL.md

2.3 KB, 555 tokens by cl100k_base, as published. Nobody here has run it

Research Skill

Research any topic using multi-agent web search and AI synthesis.

When to Use

USE THIS FOR ALL EXTERNAL LOOKUPS - not WebFetch or WebSearch.

  • GitHub repos, libraries, or tools (e.g., "cocoindex data framework")
  • Looking up unfamiliar APIs or libraries
  • Need documentation or best practices
  • Comparing technologies or approaches
  • Encountering errors you don't recognize
  • Validating technical decisions
  • ANY URL you want to understand (research the topic, not just fetch)

Usage

The research service must be running. Check with:

curl http://localhost:3200/api/health

Quick Research (~10s)

For simple facts, definitions, quick lookups:

curl -X POST http://localhost:3200/api/research \
  -H "Content-Type: application/json" \
  -d '{"query": "What is HTMX?", "depth": "quick", "trigger": "manual"}'

Medium Research (~30s) - Default

For how-to questions, documentation lookup:

curl -X POST http://localhost:3200/api/research \
  -H "Content-Type: application/json" \
  -d '{"query": "How to implement rate limiting in FastAPI", "trigger": "manual"}'

Deep Research (~60s)

For comprehensive comparisons, complex topics:

curl -X POST http://localhost:3200/api/research \
  -H "Content-Type: application/json" \
  -d '{"query": "Rust vs Go for CLI tools", "depth": "deep", "trigger": "manual"}'

Parameters

ParameterRequiredDescription
queryYesThe research topic or question
depthNoquick, medium (default), or deep
contextNoAdditional context to focus the research

Examples

  1. GitHub Repo: {"query": "cocoindex data transformation framework - features and use cases"}
  2. API Lookup: {"query": "Bun SQLite named parameters syntax"}
  3. Error Research: {"query": "ECONNREFUSED database connection error"}
  4. Comparison: {"query": "PostgreSQL vs SQLite for local-first apps", "depth": "deep"}
  5. With Context: {"query": "audio transcription APIs", "context": "comparing quality and latency for real-time use"}

Dashboard

View research activity and findings at: http://localhost:3200

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.