aios-workflow-routerlisted
Install: claude install-skill rexleimo/harness-cli
# AIOS Workflow Router
**This skill is a routing layer ONLY — it classifies tasks and dispatches to the correct superpowers skill. It MUST NOT implement any workflow logic itself.**
## Quick Decision Tree
```
用户请求 → 任务类型判断 → MUST invoke 对应的 superpowers skill
```
## Skill Name Resolution (cross-client)
Routes below reference target skills by name. The `superpowers:` prefix is the canonical superpowers-plugin namespace; if the current client does not expose that namespace, invoke the same skill by its plain installed name (e.g. `superpowers:brainstorming` → `brainstorming`, `superpowers:writing-plans` → `writing-plans`). Resolve the name to whatever the current client exposes, then invoke through that client's skill mechanism.
## Routing Rules
**This router is a dispatcher, not a replacement.** AIOS always has superpowers installed. Every route below MUST invoke the target skill through the current client's skill mechanism (e.g. the Skill tool in Claude Code / Copilot CLI, `activate_skill` in Gemini/Antigravity CLI, or the equivalent skill invocation in Codex/OpenCode/Crush) — never inline the process.
### 0. Mandatory Pre-Edit Safety Gate (ALL task types)
**BEFORE any code modification** (editing, creating, deleting files), regardless of task type, MUST invoke: `pre-edit-safety-gate`
This gate checks CRG impact radius, dependencies, style alignment, and test coverage before edits, and enforces CRG graph update + detect_changes + typecheck + test after edits. It appli