skills/external-context/SKILL.md
Fetch external documentation and references — decompose query into facets, search in parallel
npx skillsauth add sartoris-digital/pi-superpowers external-contextInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Fetch external documentation, references, and context for a query. Decomposes into parallel facets and dispatches document-specialist agents to search each.
Break the query into 2-5 independent search facets:
## Search Decomposition
**Query:** {original query}
### Facet 1: {facet-name}
- Search focus: what to search for
- Best sources: official docs, GitHub, etc.
### Facet 2: {facet-name}
...
Fire independent facets simultaneously (max 5 parallel agents):
subagent({
tasks: [
{
agent: "document-specialist",
tier: "standard",
task: "Search for: {facet 1 description}. Find official documentation and practical examples. Cite all sources with URLs."
},
{
agent: "document-specialist",
tier: "standard",
task: "Search for: {facet 2 description}. Find official documentation and practical examples. Cite all sources with URLs."
}
]
})
Present synthesized results:
## External Context: {query}
### Key Findings
1. **{finding}** — Source: [title](url)
2. **{finding}** — Source: [title](url)
### Detailed Results
#### Facet 1: {name}
{aggregated findings with citations}
#### Facet 2: {name}
{aggregated findings with citations}
### Sources
- [Source 1](url)
- [Source 2](url)
testing
Use when creating new skills, editing existing skills, or verifying skills work before deployment
development
Use when you have a spec or requirements for a multi-step task, before touching code
data-ai
Use when about to claim work is complete, fixed, or passing, before committing or creating PRs - requires running verification commands and confirming output before making any success claims; evidence before assertions always
tools
Use when starting any conversation - establishes how to find and use skills, requiring Skill tool invocation before ANY response including clarifying questions