Intent recognition and workflow routing. Analyzes user input to determine task type and routes to appropriate agent. Core decision layer.
Scanned 9/5/2026
Install to Claude Code
npx -y skills add WenJunDuan/Rlues --skill phase-router --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Phase Router?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/wenjunduan-phase-router-714a1c6a)More formats (shields.io, HTML) on the badges page.
---
name: phase-router
description: |
Intent recognition and workflow routing. Analyzes user input to determine
task type and routes to appropriate agent. Core decision layer.
---
# Phase Router Skill
## Routing Rules
| Input Pattern | Route To | Workflow |
|:---|:---|:---|
| No task ID + new keywords | requirement-mgr | 需求创建 |
| Task ID + change keywords | requirement-mgr | 变更管理 |
| Task ID + design keywords | design-mgr | 方案设计 |
| Task ID + develop keywords | impl-executor | 开发实施 |
| Task ID only | Query status | 智能推断 |
## Complexity Assessment (P.A.C.E.)
| Path | Criteria | Workflow | Duration |
|:---|:---|:---|:---|
| A | 单文件, <30行 | R1→E→R2 | 30-60分 |
| B | 2-10文件 | R1→I→P→E→R2 | 2-8小时 |
| C | >10文件, 跨模块 | 完整九步 | 数天+ |
## Output Format
```yaml
RouteDecision:
intent: [new|change|design|develop|complete]
task_id: REQ-xxx
complexity: [A|B|C]
agent: [requirement-mgr|design-mgr|impl-executor]
workflow: [path-a|path-b|path-c]
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Playbook for creating and editing uCoz landing pages via MCP tools (`templates_tool`, `ftp_tool`, `modules_tool`). Use for tasks such as: "build a landing page", "update the homepage as a landing page", "create a promo page on the homepage", "add a lead form / menu / SEO to the homepage". Homepage: `page_list`, `page_get`; first publish — `page_update` with full `page_tmpl`; HTML edits after generation — `patch_template` (module_id=2, template_id=1), not `update_template`. Activate the mail f...