ワンクリックで
workflow-routing
Use when a user request arrives and the appropriate workflow or skill chain is not immediately obvious
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Use when a user request arrives and the appropriate workflow or skill chain is not immediately obvious
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Use when reviewing a spec or task graph for completeness before implementation
Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, logging in, or automating browser actions
Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, logging in, or automating browser actions
Use when decomposing a spec, design, or feature description into a task dependency graph with self-evaluating acceptance criteria
Use when doing creative product, feature, component, functionality, or behavior design work
Use when infrastructure or features are built but before declaring done -- verifies work is wired into the system and actively used
SOC 職業分類に基づく
| name | workflow-routing |
| description | Use when a user request arrives and the appropriate workflow or skill chain is not immediately obvious |
Route user requests to the right workflow based on their goal. Keep main context for coordination; delegate work to agents.
Detect the user's primary goal from their message:
| Signal | Goal | Skill Chain |
|---|---|---|
| "how does", "what is", "find", "understand" | Research | explore → document findings |
| "design", "plan", "break down" | Plan | brainstorming → premortem → writing-plans |
| "spec", "decompose", "break into tasks", "encode" | Encode | beadcraft (decompose mode) |
| "add", "implement", "create", "build" | Build | executing-beads → finishing-work |
| "fix", "broken", "failing", "debug", "bug" | Fix | systematic-debugging → test-driven-development → finishing-work |
| "work task", "pick up a task", "execute task", "do " | Work Task | work-bead |
If intent is clear from context, infer the goal. Otherwise, ask:
What's your primary goal?
1. Research — understand/explore something
2. Plan — design and spec a solution (brainstorming → premortem → writing-plans)
3. Encode — decompose a spec into tasks (beadcraft)
4. Build — execute tasks and ship
5. Fix — debug/fix an issue
explore skill at appropriate depthRuns automatically as a single chain — do not stop between steps.
brainstorming — explore requirements, generate design options, make decisions (includes per-decision premortems)premortem — full plan-level risk analysis on the chosen designwriting-plans — produce a spec document incorporating brainstorming output and premortem mitigationsOutput: A spec document ready for decomposition.
Runs automatically — invoke beadcraft and present the tree.
beadcraft (decompose mode) — parse spec into epic + tasks with full quality (Rule of Five, acceptance criteria, Read/Signature/Edges)Input: Spec from Plan phase. Output: Task dependency graph.
Runs automatically — execute tasks in dependency order.
executing-beads — TDD cycle per task, quality gate, atomic commitrequesting-code-review — review between batchesfinishing-work — integrate and clean upInput: Task graph from Encode phase.
systematic-debugging — find root causetest-driven-development — write failing test, fixverification-before-completion — verify fixfinishing-work — integrateWhen tasks are independent, suggest parallel agents:
User: "Research auth patterns and fix the login bug"
→ Detect: 2 independent tasks (Research + Fix)
→ Suggest parallel agents
→ Synthesize results
Delegate to agents:
Keep in main context:
Suggest the natural next step:
| After | Suggest |
|---|---|
| Research | "Ready to plan?" |
| Plan | "Ready to encode into tasks?" |
| Encode | "Ready to build?" |
| Build | "All tasks closed. Ready to finish?" |
| Fix | "Create commit for the fix?" |