Agent Skills
› evolution-foundation/evo-nexus
› dev-external-context
dev-external-context
GitHub并行外部文档查询技能,通过并发调用@scroll-docs代理同时获取多个独立主题(如SDK、API、框架)的参考文档,并汇总分析结果。
Trigger Scenarios
需要查询3个以上不同主题的官方文档或参考资料
时间紧迫且涉及多个无关技术栈的交叉研究
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


