Agent Skills
› evolution-foundation/evo-nexus
› dev-external-context
dev-external-context
GitHub用于并行执行多个外部文档查询任务,通过同时启动多个@scroll-docs代理获取不同主题的SDK、API和框架参考信息,并汇总合成研究报告。
触发场景
需要查询3个以上不同主题的外部文档
对时间敏感且串行查询较慢的研究任务
为同一问题交叉引用多个SDK或框架
安装
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)
版本历史
- 7f5dd76 当前 2026-07-25 04:53


