Research Detail banner
bigph00t bigph00t

Research Detail

Development community intermediate

Description

Retrieve full details from a previous research finding when the summary wasn't enough.

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

Repository README

This is the README for bigph00t/claude-research-team, shared by 4 entries in this directory. It describes the repository, not this entry specifically.


description: "Get more detail from a previous research finding" argument-hint: ""

Research Detail

Retrieve full details from a previous research finding when the summary wasn't enough.

Arguments

  • A finding ID (numeric) from previous research
  • OR a query string to search past findings

How to Execute

  1. Parse the argument from: $ARGUMENTS

  2. If numeric ID, fetch directly:

curl -s "http://localhost:3200/api/findings/"
  1. If text query, search findings:
curl -s "http://localhost:3200/api/findings/search?q="
  1. Present full finding details:
    • Complete summary
    • All key findings (not truncated)
    • Full source list with URLs
    • Confidence score
    • Related findings

Progressive Disclosure

This skill supports the progressive disclosure pattern:

  • Level 1: Brief summary (shown in initial injection)
  • Level 2: Key findings + sources (this command)
  • Level 3: Full content + related research

Request higher levels by adding `--full` flag.