Best for
- Use when building a skill from official docs, when "research for skill" or "create comprehensive skill" is requested, or when extensive multi-source documentation gathering is needed before skill creation.
Jamie-BitFlight/claude_skills/.claude/skills/skill-research-process/SKILL.md
Builds comprehensive Claude Code skills using parallel research agents — categorization, parallel documentation gathering, anti-hallucination checkpoints, and final validation. Use when building a skill from official docs, when "research for skill" or "create comprehensive skill" is requested, or when extensive multi-source documentation gathering is needed before skill creation.
Decision brief
Systematic, scalable approach for building comprehensive Claude Code skills using parallel research agents. Use this when a skill requires extensive documentation gathering from official sources.
Compatibility matrix
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Declared | Source record | Install path and trigger |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/Jamie-BitFlight/claude_skills --skill ".claude/skills/skill-research-process"Inspect the Agent Skill "skill-research-process" from https://github.com/Jamie-BitFlight/claude_skills/blob/a00194f25fec502d3d659b7d610369614967251e/.claude/skills/skill-research-process/SKILL.md at commit a00194f25fec502d3d659b7d610369614967251e. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
Review the “Process Overview” section in the pinned source before continuing.
Objective: Create base skill directory and identify documentation categories.
Before proceeding, verify:
Objective: Launch concurrent research agents to build reference documentation.
Objective: Update SKILL.md with category links and finalize.
Permission review
The documentation asks the agent to create, modify, or delete local files.
*Objective**: Create base skill directory and identify documentation categories.The documentation includes network, browsing, or remote request actions.
According to the official documentation (https://example.com/docs, accessed 2026-02-01), ...The documentation asks the agent to read local files, directories, or repositories.
**Clone + Read**: Clone repo locally, use Read tool for code analysisThe documentation asks the agent to read local files, directories, or repositories.
Check output file with Read tool (background agents write to file)The documentation asks the agent to create, modify, or delete local files.
Check output file with Read tool (background agents write to file)Evidence record
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 95/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 64 | Source | Repository attention, not individual Skill quality |
| Compatibility | 1 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Systematic, scalable approach for building comprehensive Claude Code skills using parallel research agents. Use this when a skill requires extensive documentation gathering from official sources.
Stage 1: Initialize → Categorization agent creates TODO checklist
↓
Gate 1: Verify categories are distinct and complete
↓
Stage 2: Research → Parallel agents populate references/{category}/
↓
Gate 2: Anti-hallucination checkpoint (verify all claims cited)
↓
Stage 3: Integrate → Update SKILL.md, validate structure
↓
Gate 3: Final validation (links work, quality standards met)
Activate skill-creator for structure guidance:
Skill(skill: "plugin-creator:skill-creator")
Read CLAUDE.md for verification requirements
Objective: Create base skill directory and identify documentation categories.
Initialize skill directory:
plugins/plugin-creator/skills/skill-creator/scripts/init_skill.py <skill-name> --path <output-directory>
Launch categorization agent - see Agent Prompts
Output: {skill-name}.TODO.md with categorized checklist
Before proceeding, verify:
If categories overlap: Merge or redefine boundaries before Stage 2.
Objective: Launch concurrent research agents to build reference documentation.
{skill-name}.TODO.mdrun_in_background: true./references/{category}/See Research Agent Prompt for template.
Launch all agents in a single message with multiple Task calls:
Agent(subagent_type: "general-purpose", description: "Research Category A", run_in_background: true, ...)
Agent(subagent_type: "general-purpose", description: "Research Category B", run_in_background: true, ...)
MANDATORY before Stage 3. For each category, verify:
Citation Format Required:
According to the official documentation (https://example.com/docs, accessed 2026-02-01), ...
If citation missing: Research agent must add source or mark as "NOT_VERIFIED: [claim]".
Objective: Update SKILL.md with category links and finalize.
./SKILL.md with links to each category's index.mdRun validation:
plugins/plugin-creator/skills/skill-creator/scripts/package_skill.py <skill-path>
Verify:
Fallback strategy when MCP tools not available:
gh): For repository metadata, issues, releasesIf an agent fails or times out:
If official docs are incomplete:
| Tool | Fidelity | Use When |
|---|---|---|
| WebFetch | Low | Scoping only. NEVER for implementation details |
| mcpexa* | Medium | Code snippets, documentation extraction |
| mcpRef* | High | Authoritative, verbatim documentation |
See MCP Tool Usage Guide for details.
| Principle | Rule |
|---|---|
| Progressive Disclosure | SKILL.md ≤5k words; details in references/ |
| Parallel Execution | Launch all category agents in single message |
| Citation Required | Every claim needs source + access date |
| No Training Data | Only document what sources confirm |
| Relative Paths | All links use ./ prefix |
Before finalizing:
./ relative pathsindex.md with working linksWhen Stage 2 (category research) involves 3+ independent categories where findings from one category inform or challenge another, consider agent teams instead of sequential subagents.
A category research workflow is a candidate for agent teams when ALL of these are true:
A category research workflow is NOT a candidate for agent teams when:
See Agent Teams Documentation for complete criteria, architecture, and usage patterns.
SOURCE: Lines 27-39 of agent-teams.md (accessed 2026-02-06)
Frequently asked questions
Systematic, scalable approach for building comprehensive Claude Code skills using parallel research agents. Use this when a skill requires extensive documentation gathering from official sources.
The source record exposes this install command: npx skills add https://github.com/Jamie-BitFlight/claude_skills --skill ".claude/skills/skill-research-process". Inspect the command and pinned source before running it.
The pinned source record declares support for: claude code.
Static rules flagged write-files, network, read-files in the source; the page lists the matching lines and excerpts.
Alternatives
vasilyu1983/AI-Agents-public
Scans public GitHub repos for agent skills, dev practices, and code patterns. Use when enriching skills, setting team policy, or researching a build domain.
oaustegard/claude-skills
Orchestrates parallel API instances, delegated sub-tasks, and multi-agent workflows with streaming and tool-enabled delegation patterns. Routes by surface — native subagents in Cowork and Claude Code, httpx fan-out on claude.ai — and covers Gemini delegation via the Cloudflare AI Gateway on every surface. Use for parallel analysis, multi-perspective reviews, or complex task decomposition.
kryptobaseddev/cleo
Multi-source research and investigation combining web search, documentation lookup via Context7, and codebase analysis. Synthesizes findings into actionable recommendations with proper citation and task traceability. Use when conducting research, investigating best practices, gathering technical information, or analyzing existing implementations. Triggers on research tasks, investigation needs, or information discovery requests.
aomi-labs/skills
Step-by-step guide for creating enriched CryptoSkills agent skills. Use when building new protocol skills, contributing to the directory, or understanding the enriched skill pattern. Covers SKILL.md structure, YAML frontmatter, examples, docs, resources, templates, marketplace registration, and validation. Triggers: "create a skill", "add a protocol", "contribute a skill", "new skill template".