
Research Deep
- 45 installs
- 6 repo stars
- Updated July 22, 2026
- julianobarbosa/claude-code-skills
Read an existing research outline and fan out independent background agents to deeply research each item, producing one structured JSON per item.
About
Read existing research outline and fan out independent agents to deeply research each item, producing structured JSON per item.. Resumable, batched, with output per agent.
- advanced skill
- core: ai & agent building
Research Deep by the numbers
- 45 all-time installs (skills.sh)
- +1 installs in the week ending Aug 2, 2026 (Skillselion tracking)
- Ranked #7,749 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 3, 2026 (Skillselion catalog sync)
npx skills add https://github.com/julianobarbosa/claude-code-skills --skill research-deepAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 45 |
|---|---|
| repo stars | ★ 6 |
| Last updated | July 22, 2026 |
| Repository | julianobarbosa/claude-code-skills ↗ |
What it does
Read an existing research outline and fan out independent background agents to deeply research each item, producing one structured JSON per item.
Files
Research Deep — Per-Item Deep Research
Reads the outline produced by /research-outline, launches one background agent per batch, each populating an item's full JSON against the field schema.
Trigger
/research-deep
Pipeline position
/research-outline → /research-add-* → ► /research-deep ◄ → /research-reportWorkflow
Step 1 — Auto-locate the outline
Glob */outline.yaml from the current working directory. Read it to get items, execution.batch_size, execution.items_per_agent, and execution.output_dir.
Step 2 — Resume check
Glob {output_dir}/*.json to find already-completed items. Skip them — only schedule items that don't yet have a JSON.
Step 3 — Batch execution
- Group remaining items into batches of
batch_size. - For each batch: launch agents via the
Tasktool withsubagent_type: general-purpose(or your project's research subagent if one is registered),run_in_background: true. Disable per-agent output — agents write directly to their assigned JSON path, so streaming their dialogue back into the parent context just burns tokens. - Each agent handles up to
items_per_agentitems. - Wait for the user to approve the next batch before launching it (lets the user spot-check the first batch's output and stop early if quality is off).
Parameters captured per item:
{topic}—topicfield fromoutline.yaml{item_name}— the item'snamefield{item_related_info}— the item's full YAML stanza (name + category + description + …){output_dir}—execution.output_dirfromoutline.yaml(default./results){fields_path}— absolute path to{topic_dir}/fields.yaml{output_path}— absolute path to{output_dir}/{item_name_slug}.json
Slug rule for `{item_name_slug}`: lowercase, replace runs of any non-alphanumeric character with _, strip leading/trailing _. Concretely: re.sub(r"[^a-z0-9]+", "_", item_name.lower()).strip("_"). Examples: GitHub Copilot → github_copilot, Cursor (Anysphere) → cursor_anysphere.
Why the prompt below is templated literally: the subagent runs in isolation. Its prompt carries every parameter explicitly, and small wording drifts cause the JSON shape to drift across runs. Treat the template as a stable contract — replace {xxx} variables, keep the rest as-is.
Prompt template:
## Task
Research {item_related_info}, output structured JSON to {output_path}
## Field Definitions
Read {fields_path} to get all field definitions
## Output Requirements
1. Output JSON according to fields defined in fields.yaml
2. Mark uncertain field values with [uncertain]
3. Add uncertain array at the end of JSON, listing all uncertain field names
4. All field values must be in English
## Output Path
{output_path}
## Validation
After completing JSON output, run validation script to ensure complete field coverage:
python ~/.claude/skills/research-outline/validate_json.py -f {fields_path} -j {output_path}
Task is complete only after validation passes.Worked example (item = "GitHub Copilot"):
## Task
Research name: GitHub Copilot
category: International Product
description: Developed by Microsoft/GitHub, first mainstream AI coding assistant, ~40% market share, output structured JSON to {project_dir}/results/github_copilot.json
## Field Definitions
Read {project_dir}/fields.yaml to get all field definitions
## Output Requirements
1. Output JSON according to fields defined in fields.yaml
2. Mark uncertain field values with [uncertain]
3. Add uncertain array at the end of JSON, listing all uncertain field names
4. All field values must be in English
## Output Path
{project_dir}/results/github_copilot.json
## Validation
After completing JSON output, run validation script to ensure complete field coverage:
python ~/.claude/skills/research-outline/validate_json.py -f {project_dir}/fields.yaml -j {project_dir}/results/github_copilot.json
Task is complete only after validation passes.Step 4 — Wait and monitor
- Wait for the current batch to finish (each agent signals completion by emitting its JSON).
- Launch the next batch after the user's go-ahead.
- Display progress (
N/totalitems complete).
Step 5 — Summary report
After all batches finish, output:
- count complete
- list of items marked failed or with
uncertainentries - path to
{output_dir}/
Agent config
- Background execution: yes (
run_in_background: true) - Task output: disabled — each agent's deliverable is the JSON file it writes
- Resume support: yes (Step 2 skips completed items)
Gotchas
- The validator path `~/.claude/skills/research-outline/validate_json.py` is install-coupled. It assumes the
research-outlineskill is installed at~/.claude/skills/research-outline/, which is whatclaude-code-skills/scripts/link-skills.shandinstall-skills.shset up. If you copied the skill anywhere else (e.g. a project-local.claude/skills/), the validator path in the templated prompt will break and the subagent will hang at the validation step. Fix by either keeping the canonical install path, or replacing the validator path in the template above with the correct absolute path for your install before kicking off/research-deep. - Background agents with task output disabled give you no early-warning if they go off the rails. That's the deliberate tradeoff — token economy over verbosity. Spot-check the first batch's JSON before approving more.
- Resume relies purely on filename match. A half-written JSON from a crashed run looks "done" to Step 2. If a previous run was interrupted, delete the corrupt JSONs before re-running.
- `{item_name_slug}` collisions silently overwrite. Two items whose names slugify to the same string (e.g.
GPT-4andGPT 4) will clobber each other. If you suspect collision, add a discriminator in the item'scategoryfield and slug them as{category_slug}_{name_slug}instead. - The validator's required-field check is the only post-condition. If
fields.yamldoesn't mark anythingrequired: true, the validator passes anything, including agents that returned almost-empty JSON. Mark at least one field per category asrequiredto get meaningful gating.