Parallel Research
Research multiple topics or targets and produce a structured comparison.
This skill has three modes:
- General comparison mode: compare tools, products, libraries, companies, or frameworks
- Parity / capability extraction mode: compare codebases, ports, forks, SDKs, or frameworks and extract what is truly implemented, what is only claimed, and what is still missing
- Capability transfer / harvesting mode: identify the strongest ideas, behaviors, patterns, or subsystems in one project and determine what should be copied, adapted, or avoided in another project
Usage
/research Topic A, Topic B, Topic C
/research Svelte, SolidJS, Qwik
/research OMO, OMC, OMX
Instructions
1. Parse Topics
Extract the list of research targets from $ARGUMENTS. If no arguments given, ask the user for topics (max 1 question).
2. Decide Comparison Mode
Use parity / capability extraction mode when any of these are true:
- The user asks whether one repo/framework/port has truly implemented another's features
- The user asks what was migrated, ported, or translated from one codebase to another
- The user asks for gaps, missing behavior, or "how complete" an implementation is
- The user wants a rubric, matrix, or diagram showing feature depth instead of a marketing comparison
- The user refers to source code, tests, architecture, or implementation details
Use capability transfer / harvesting mode when any of these are true:
- The user wants to bring the best parts of one project into another
- The user asks what should be copied, adapted, borrowed, or ported
- The user wants "good ideas only", "strengths only", or "what is worth transferring"
- The user is designing a successor, rewrite, port, fork, or framework influenced by another system
- The user wants reusable patterns, not just a scorecard
Otherwise use general comparison mode.
3. Gather Evidence First
Always prefer the strongest evidence available:
- Local code and tests, if a repo is present
- Official docs, READMEs, changelogs, and source repositories
- Maintainer-authored materials
- Community discussion only as secondary evidence
For codebase comparisons:
- Read source, tests, and architecture docs before summarizing
- Distinguish implemented behavior from README claims
- Distinguish surface feature presence from behavioral depth
- Distinguish tested parity slice from full-system parity
- Quote exact file paths, symbols, routes, and tests where possible
For capability transfer / harvesting work:
- Identify what makes the source capability good, not just that it exists
- Identify the hidden supporting conditions that make it work
- Separate portable idea from source-specific implementation
- Distinguish what should be copied, adapted, reinterpreted, or left behind
- Look for coupling, assumptions, operational constraints, and regression risks
4. Use Parallel Agents When It Actually Helps
If the environment supports real sub-agents and the targets are independent, spawn one agent per topic or target.
For each target, ask for:
Agent per topic:
- Research: overview, architecture, key features, and evidence-backed strengths/weaknesses
- Find: the most relevant primary sources
- Identify: unique differentiators and important caveats
- Return structured markdown with headers and bullet points
For parity / capability extraction mode, ask each agent to return:
- Advertised capabilities
- Concrete implementation artifacts
- Test or runtime evidence
- Missing or weaker behavior
- Confidence level per claim
For capability transfer / harvesting mode, ask each agent to return:
- Source strengths worth preserving
- Why each strength is genuinely valuable
- Concrete implementation anchors
- Dependencies, constraints, and hidden coupling
- Transfer recommendation: copy / adapt / rethink / avoid
- Expected benefits and likely failure modes after transfer
CRITICAL:
- Every agent must be actually spawned if the tool/runtime supports it
- Never fake or hallucinate agent results
- If agent spawning is unavailable, continue in a single lane and say so implicitly via output quality, not excuses
5. Wait for All Agents
Wait for all background agents to complete. Do NOT proceed until all results are in.
6. Synthesize Results
Compile findings into a structured comparison:
## Research Report: [Topic List]
### Executive Summary
[2-3 sentence overview of the comparison]
### Comparison Table
| Aspect | Topic A | Topic B | Topic C |
|--------|---------|---------|---------|
| Architecture | ... | ... | ... |
| Key Features | ... | ... | ... |
| Community Size | ... | ... | ... |
| Latest Release | ... | ... | ... |
| Strengths | ... | ... | ... |
| Weaknesses | ... | ... | ... |
### Detailed Analysis
#### Topic A
[3-5 bullet points of key findings]
#### Topic B
[3-5 bullet points of key findings]
#### Topic C
[3-5 bullet points of key findings]
### Recommendation
[Which to choose and why, based on findings]
### Sources
[List of URLs referenced]
For parity / capability extraction mode, prefer this structure instead:
## Comparative Capability Audit: [Target A] vs [Target B]
### Verdict
[Short answer: how complete the implementation/port actually is]
### Capability Matrix
| Capability | Reference Target | Compared Target | Evidence | Status |
|------------|------------------|-----------------|----------|--------|
| Agent loop | ... | ... | file/tests/docs | strong / partial / weak / absent |
| Memory | ... | ... | file/tests/docs | ... |
| Session search | ... | ... | file/tests/docs | ... |
| Delegation | ... | ... | file/tests/docs | ... |
| Compression | ... | ... | file/tests/docs | ... |
| Scheduler | ... | ... | file/tests/docs | ... |
| Runtime backends | ... | ... | file/tests/docs | ... |
| Trajectory / training | ... | ... | file/tests/docs | ... |
### Depth Gaps
- [Where the compared target has a feature name but not the same implementation depth]
### Verified Strengths
- [What is genuinely strong and supported by code/tests]
### Recommended Improvements
1. [Highest-leverage improvement]
2. [Second]
3. [Third]
### Sources
- [file path, test, or URL]
For capability transfer / harvesting mode, prefer this structure instead:
## Capability Harvest Report: [Source] -> [Target]
### Goal
[What the target project is trying to inherit or improve]
### Harvest Matrix
| Source Capability | Why It Is Good | Implementation Anchors | Hidden Dependencies | Transfer Mode | Recommendation |
|-------------------|----------------|-------------------------|---------------------|---------------|----------------|
| ... | ... | file/tests/docs | ... | copy / adapt / rethink / avoid | ... |
### Best Parts To Preserve
- [High-value behaviors or patterns]
### What Must Be Adapted
- [Things that are good but tightly coupled to the source system]
### What Should Not Be Carried Over
- [Source-specific baggage, debt, or misleading abstractions]
### Transfer Plan
1. [First subsystem to import or reproduce]
2. [Second]
3. [Third]
### Risks
- [Coupling, performance, maintenance, team-fit, runtime-fit, architectural mismatch]
### Sources
- [file path, test, or URL]
7. Special Rules for Capability Extraction
When comparing repos, frameworks, or ports:
- Build the matrix around behavioral subsystems, not marketing bullets
- Prefer axes like:
- agent loop
- tool execution
- memory and recall
- session search
- skill/learning loop
- delegation/subagents
- context compression
- scheduler/delivery
- runtime backends
- observability
- security
- trajectory/training
- For each axis, explicitly classify:
- Claimed
- Implemented
- Verified
- Parity depth
- If tests only cover a narrow parity slice, say so clearly
- Do not over-credit a target for having the same nouns with weaker internals
- When relevant, separate:
- feature surface
- implementation depth
- production durability
- migration completeness
8. Special Rules for Capability Transfer / Harvesting
When the goal is to bring strengths from one project into another:
- Evaluate the reason a capability is good, not just the capability label
- Capture:
- the user-visible advantage
- the implementation mechanism
- the enabling assumptions
- the target-side adaptation cost
- Prefer outputs framed as:
- copy as-is
- copy with adaptation
- re-implement conceptually
- do not import
- Ask whether the source strength depends on:
- runtime model
- team workflow
- storage model
- test discipline
- tool ecosystem
- operational scale
- If a source feature is only good because of adjacent infrastructure, say so explicitly
- Do not recommend transferring isolated surface features without their supporting invariants
- Look for "good because of X" and "breaks without Y"
9. What to Avoid
- Do not default to stars, contributor count, or community metrics when the user asked about implementation fidelity
- Do not treat README feature lists as ground truth
- Do not collapse "present but simplified" into "fully supported"
- Do not hide uncertainty; mark it as low-confidence when evidence is thin
- Do not confuse inspiration harvesting with 1:1 cloning
- Do not recommend importing a capability without noting its coupling and adaptation cost
Rules
- Use real parallel sub-agents when the environment supports them and the work is independent
- Each agent gets one topic or target when parallelized — no monolithic agent researching everything
- For broad external comparisons: prefer 3-7 parallel agents
- For repo parity audits: use fewer agents if evidence integration is the hard part
- If a topic is ambiguous, make a reasonable assumption and note it
- Do NOT ask the user clarifying questions beyond the initial topic list
- Output must include a comparison table or capability matrix — this is the primary deliverable
- In parity mode, evidence beats breadth
- In parity mode, file paths, tests, and implementation caveats are more important than popularity metrics
- In transfer mode, explain why a capability is worth porting and what conditions make it work
1---2name: research3description: Parallel research, comparative audit, or capability transfer analysis on multiple topics, tools, repos, codebases, or frameworks with structured comparison, parity, or feature-harvesting output. Use when asked to research, compare, analyze, audit, extract capabilities, or transfer the best parts of one project into another4---56# Parallel Research78Research multiple topics or targets and produce a structured comparison.910This skill has three modes:11121. **General comparison mode**: compare tools, products, libraries, companies, or frameworks132. **Parity / capability extraction mode**: compare codebases, ports, forks, SDKs, or frameworks and extract what is truly implemented, what is only claimed, and what is still missing143. **Capability transfer / harvesting mode**: identify the strongest ideas, behaviors, patterns, or subsystems in one project and determine what should be copied, adapted, or avoided in another project1516## Usage17```18/research Topic A, Topic B, Topic C19/research Svelte, SolidJS, Qwik20/research OMO, OMC, OMX21```2223## Instructions2425### 1. Parse Topics26Extract the list of research targets from `$ARGUMENTS`. If no arguments given, ask the user for topics (max 1 question).2728### 2. Decide Comparison Mode2930Use **parity / capability extraction mode** when any of these are true:3132- The user asks whether one repo/framework/port has truly implemented another's features33- The user asks what was migrated, ported, or translated from one codebase to another34- The user asks for gaps, missing behavior, or "how complete" an implementation is35- The user wants a rubric, matrix, or diagram showing feature depth instead of a marketing comparison36- The user refers to source code, tests, architecture, or implementation details3738Use **capability transfer / harvesting mode** when any of these are true:3940- The user wants to bring the best parts of one project into another41- The user asks what should be copied, adapted, borrowed, or ported42- The user wants "good ideas only", "strengths only", or "what is worth transferring"43- The user is designing a successor, rewrite, port, fork, or framework influenced by another system44- The user wants reusable patterns, not just a scorecard4546Otherwise use **general comparison mode**.4748### 3. Gather Evidence First4950Always prefer the strongest evidence available:51521. Local code and tests, if a repo is present532. Official docs, READMEs, changelogs, and source repositories543. Maintainer-authored materials554. Community discussion only as secondary evidence5657For codebase comparisons:5859- Read source, tests, and architecture docs before summarizing60- Distinguish **implemented behavior** from **README claims**61- Distinguish **surface feature presence** from **behavioral depth**62- Distinguish **tested parity slice** from **full-system parity**63- Quote exact file paths, symbols, routes, and tests where possible6465For capability transfer / harvesting work:6667- Identify what makes the source capability good, not just that it exists68- Identify the hidden supporting conditions that make it work69- Separate **portable idea** from **source-specific implementation**70- Distinguish what should be **copied**, **adapted**, **reinterpreted**, or **left behind**71- Look for coupling, assumptions, operational constraints, and regression risks7273### 4. Use Parallel Agents When It Actually Helps7475If the environment supports real sub-agents and the targets are independent, spawn one agent per topic or target.7677For each target, ask for:7879```80Agent per topic:81- Research: overview, architecture, key features, and evidence-backed strengths/weaknesses82- Find: the most relevant primary sources83- Identify: unique differentiators and important caveats84- Return structured markdown with headers and bullet points85```8687For parity / capability extraction mode, ask each agent to return:8889```90- Advertised capabilities91- Concrete implementation artifacts92- Test or runtime evidence93- Missing or weaker behavior94- Confidence level per claim95```9697For capability transfer / harvesting mode, ask each agent to return:9899```100- Source strengths worth preserving101- Why each strength is genuinely valuable102- Concrete implementation anchors103- Dependencies, constraints, and hidden coupling104- Transfer recommendation: copy / adapt / rethink / avoid105- Expected benefits and likely failure modes after transfer106```107108**CRITICAL**:109110- Every agent must be actually spawned if the tool/runtime supports it111- Never fake or hallucinate agent results112- If agent spawning is unavailable, continue in a single lane and say so implicitly via output quality, not excuses113114### 5. Wait for All Agents115Wait for all background agents to complete. Do NOT proceed until all results are in.116117### 6. Synthesize Results118Compile findings into a structured comparison:119120```markdown121## Research Report: [Topic List]122123### Executive Summary124[2-3 sentence overview of the comparison]125126### Comparison Table127128| Aspect | Topic A | Topic B | Topic C |129|--------|---------|---------|---------|130| Architecture | ... | ... | ... |131| Key Features | ... | ... | ... |132| Community Size | ... | ... | ... |133| Latest Release | ... | ... | ... |134| Strengths | ... | ... | ... |135| Weaknesses | ... | ... | ... |136137### Detailed Analysis138139#### Topic A140[3-5 bullet points of key findings]141142#### Topic B143[3-5 bullet points of key findings]144145#### Topic C146[3-5 bullet points of key findings]147148### Recommendation149[Which to choose and why, based on findings]150151### Sources152[List of URLs referenced]153```154155For parity / capability extraction mode, prefer this structure instead:156157```markdown158## Comparative Capability Audit: [Target A] vs [Target B]159160### Verdict161[Short answer: how complete the implementation/port actually is]162163### Capability Matrix164165| Capability | Reference Target | Compared Target | Evidence | Status |166|------------|------------------|-----------------|----------|--------|167| Agent loop | ... | ... | file/tests/docs | strong / partial / weak / absent |168| Memory | ... | ... | file/tests/docs | ... |169| Session search | ... | ... | file/tests/docs | ... |170| Delegation | ... | ... | file/tests/docs | ... |171| Compression | ... | ... | file/tests/docs | ... |172| Scheduler | ... | ... | file/tests/docs | ... |173| Runtime backends | ... | ... | file/tests/docs | ... |174| Trajectory / training | ... | ... | file/tests/docs | ... |175176### Depth Gaps177- [Where the compared target has a feature name but not the same implementation depth]178179### Verified Strengths180- [What is genuinely strong and supported by code/tests]181182### Recommended Improvements1831. [Highest-leverage improvement]1842. [Second]1853. [Third]186187### Sources188- [file path, test, or URL]189```190191For capability transfer / harvesting mode, prefer this structure instead:192193```markdown194## Capability Harvest Report: [Source] -> [Target]195196### Goal197[What the target project is trying to inherit or improve]198199### Harvest Matrix200201| Source Capability | Why It Is Good | Implementation Anchors | Hidden Dependencies | Transfer Mode | Recommendation |202|-------------------|----------------|-------------------------|---------------------|---------------|----------------|203| ... | ... | file/tests/docs | ... | copy / adapt / rethink / avoid | ... |204205### Best Parts To Preserve206- [High-value behaviors or patterns]207208### What Must Be Adapted209- [Things that are good but tightly coupled to the source system]210211### What Should Not Be Carried Over212- [Source-specific baggage, debt, or misleading abstractions]213214### Transfer Plan2151. [First subsystem to import or reproduce]2162. [Second]2173. [Third]218219### Risks220- [Coupling, performance, maintenance, team-fit, runtime-fit, architectural mismatch]221222### Sources223- [file path, test, or URL]224```225226### 7. Special Rules for Capability Extraction227228When comparing repos, frameworks, or ports:229230- Build the matrix around **behavioral subsystems**, not marketing bullets231- Prefer axes like:232 - agent loop233 - tool execution234 - memory and recall235 - session search236 - skill/learning loop237 - delegation/subagents238 - context compression239 - scheduler/delivery240 - runtime backends241 - observability242 - security243 - trajectory/training244- For each axis, explicitly classify:245 - **Claimed**246 - **Implemented**247 - **Verified**248 - **Parity depth**249- If tests only cover a narrow parity slice, say so clearly250- Do not over-credit a target for having the same nouns with weaker internals251- When relevant, separate:252 - **feature surface**253 - **implementation depth**254 - **production durability**255 - **migration completeness**256257### 8. Special Rules for Capability Transfer / Harvesting258259When the goal is to bring strengths from one project into another:260261- Evaluate the **reason a capability is good**, not just the capability label262- Capture:263 - the user-visible advantage264 - the implementation mechanism265 - the enabling assumptions266 - the target-side adaptation cost267- Prefer outputs framed as:268 - **copy as-is**269 - **copy with adaptation**270 - **re-implement conceptually**271 - **do not import**272- Ask whether the source strength depends on:273 - runtime model274 - team workflow275 - storage model276 - test discipline277 - tool ecosystem278 - operational scale279- If a source feature is only good because of adjacent infrastructure, say so explicitly280- Do not recommend transferring isolated surface features without their supporting invariants281- Look for "good because of X" and "breaks without Y"282283### 9. What to Avoid284285- Do not default to stars, contributor count, or community metrics when the user asked about implementation fidelity286- Do not treat README feature lists as ground truth287- Do not collapse "present but simplified" into "fully supported"288- Do not hide uncertainty; mark it as low-confidence when evidence is thin289- Do not confuse inspiration harvesting with 1:1 cloning290- Do not recommend importing a capability without noting its coupling and adaptation cost291292## Rules293- Use **real** parallel sub-agents when the environment supports them and the work is independent294- Each agent gets one topic or target when parallelized — no monolithic agent researching everything295- For broad external comparisons: prefer 3-7 parallel agents296- For repo parity audits: use fewer agents if evidence integration is the hard part297- If a topic is ambiguous, make a reasonable assumption and note it298- Do NOT ask the user clarifying questions beyond the initial topic list299- Output must include a comparison table or capability matrix — this is the primary deliverable300- In parity mode, evidence beats breadth301- In parity mode, file paths, tests, and implementation caveats are more important than popularity metrics302- In transfer mode, explain why a capability is worth porting and what conditions make it work