Agent Skills
› evolution-foundation/evo-nexus
› dev-external-context
dev-external-context
GitHub通过并行调用@scroll-docs代理,同时获取多个独立外部文档(如SDK、API),加速跨主题技术调研并合成统一结论。
Trigger Scenarios
需要查询3个以上不同主题的外部文档
串行查询耗时过长需并行加速
交叉对比多个框架或SDK的官方资料
Install
npx skills add evolution-foundation/evo-nexus --skill dev-external-context -g -y
SKILL.md
Frontmatter
{
"name": "dev-external-context",
"description": "Parallel external documentation lookup. Spawn multiple @scroll-docs agents simultaneously to fetch SDK refs, API docs, and framework guides for different topics in one pass."
}
Dev External Context
Derived from oh-my-claudecode (MIT, Yeachan Heo). Adapted for the EvoNexus Engineering Layer.
Parallel external research. When a task needs multiple unrelated external lookups (SDK A + Framework B + Standard C), spawn @scroll-docs instances in parallel instead of serial.
Use When
- Task requires 3+ external doc lookups on different topics
- Time-sensitive research where serial lookups would be slow
- Cross-referencing multiple SDKs / frameworks for the same problem
Do Not Use When
- Single lookup → use
@scroll-docsdirectly - Internal codebase questions → use
@scout-explorerinstead - The lookups are dependent (B needs A's result first) → run serial
Workflow
- Decompose the research need into 2+ independent topics
- Spawn
@scroll-docsagents in parallel — one per topic - Collect the briefs as they return
- Synthesize into a single research summary
- Save to
workspace/development/research/[C]external-context-{topic}-{date}.md
Output Format
## External Context — {topic}
### Lookup 1: {topic A}
[from @scroll-docs]
### Lookup 2: {topic B}
[from @scroll-docs]
### Lookup 3: {topic C}
[from @scroll-docs]
## Synthesis
[Combined understanding]
## Conflicts
[Where sources disagree]
## Recommendation
[Next step based on combined research]
Pairs With
@scroll-docs(parallel workers)@compass-planner(consumer of synthesized research)@apex-architect(consumer for architecture decisions)
Version History
- 7f5dd76 Current 2026-07-25 04:53


