Help us improve
Share bugs, ideas, or general feedback.
From electrified-cortex-skills
Router — accepts any GitHub Copilot CLI task and dispatches to the correct operation sub-skill. Does not execute copilot commands itself. Triggers - use copilot CLI, copilot command, run copilot, ask copilot, explain with copilot, copilot review.
How this skill is triggered — by the user, by Claude, or both
Slash command
/electrified-cortex-skills:copilot-cliThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Execution, flag assembly, prompt framing, and output parsing live inside the dispatched sub-skill — not here.
Share bugs, ideas, or general feedback.
Execution, flag assembly, prompt framing, and output parsing live inside the dispatched sub-skill — not here.
| Operation | Sub-skill | Use for |
|---|---|---|
| review | review/ | Code review of a change set; structured findings + raw markdown |
| ask | ask/ | General query or advice; plain text answer |
| explain | explain/ | Explain a code region or file; explanatory markdown |
Status: NEEDS_CLARIFICATION.Status: CLEAN | FINDINGS | OK | ERROR | UNAVAILABLE | NEEDS_CLARIFICATION
<sub-skill result fields>
Source: <sub-skill name>
UNAVAILABLE and NEEDS_CLARIFICATION originate from the router. All other statuses pass through from sub-skills unchanged.
Before dispatching any sub-skill, check the capability cache (see capability-cache/SKILL.md):
result: unavailable → skip all CLI invocations; return Status: UNAVAILABLE to the caller immediately.result: available → use cached model list without re-probing.copilot command. All execution is inside sub-skills.copilot is unavailable — surface the sub-skill's error and stop.Related: review, ask, explain, capability-cache
npx claudepluginhub electrified-cortex/skills-plugin --plugin electrified-cortex-skillsCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.