Research detail
Skill bigph00t/claude-research-team/plugin/skills/research-detail
Autonomous research agents for Claude Code - passively research and inject helpful context
npx -y skills add bigph00t/claude-research-team --skill research-detailAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing 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.
What its author says it does
Copied from the file, not written here
Get detailed information about a specific research finding or observation. Use when injected research mentions "[/research-detail ID]" for more sources and context.
SKILL.md
2.0 KB, as published. Nobody here has run it
Research Detail Skill
Retrieve full details, sources, and context for a specific research finding or memory observation.
When to Use
Use this skill when:
- A research injection mentions
[/research-detail <id>] - You need more context about a previously injected finding
- You want to see the full sources for a research result
- You need the complete content instead of just the summary
Usage
Get details for a finding by ID:
curl -s http://localhost:3200/api/findings/<id> | jq
For observations from claude-mem (memory), the ID will be numeric:
curl -s http://localhost:3200/api/knowledge/<id> | jq
Arguments
Pass the finding ID as the argument:
/research-detail abc123- Get details for finding abc123/research-detail 1847- Get details for observation #1847
Response Format
The API returns detailed information including:
query- Original research querysummary- Short summaryfullContent- Complete research contentkeyPoints- Bullet point findings (if available)sources- Array of sources with URLs and snippetsconfidence- Quality/confidence scoredepth- Research depth (quick/medium/deep)createdAt- When the research was performed
Examples
-
Get research details after injection: When you see:
(confidence: 87%) [/research-detail abc123 for sources]Run:curl -s http://localhost:3200/api/findings/abc123 | jq -
Get memory observation details: When you see:
[Memory] observation #1847Run:curl -s http://localhost:3200/api/knowledge/1847 | jq -
Quick check if finding exists:
curl -s http://localhost:3200/api/findings/abc123 | jq '.sources | length'
Related Skills
/research <query>- Perform new research/research-status- Check research service status and recent activity