用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/stevehuang0115/crewly --skill plan-request命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | Plan Request |
| description | Analyze a user request and get a list of proposed ProjectTasks via the V3 Request Plan API. |
| version | 1.0.0 |
| category | planning |
| skillType | claude-skill |
| assignableRoles | ["developer","qa","tpm","designer","frontend-developer","backend-developer","fullstack-dev","qa-engineer","product-manager","architect","generalist"] |
| triggers | ["plan request","decompose request","analyze request","plan tasks"] |
| tags | ["v3","request","planning","decomposition"] |
| execution | {"type":"script","script":{"file":"execute.sh","interpreter":"bash","timeoutMs":30000}} |
Analyze a user request message and get a list of proposed ProjectTasks via the POST /api/requests/plan endpoint. This allows agents (orchestrator or sub-agents) to decompose a user request into structured, actionable tasks.
| Flag | JSON Field | Required | Description |
|---|---|---|---|
--message / -m | message | Yes | The user request message to decompose |
--max-tasks | options.maxTasks | No | Maximum number of tasks to generate |
--default-priority | options.defaultPriority | No | Default priority for tasks: high, medium, low |
# Basic plan
bash execute.sh --message "Build a new authentication system with OAuth2 support"
# Plan with options
bash execute.sh --message "Fix all failing tests in the auth module" \
--max-tasks 10 --default-priority high
bash execute.sh '{"message":"Build a search feature","options":{"maxTasks":5,"defaultPriority":"medium"}}'
JSON response with a RequestPlan containing:
message — The original user messagetasks — Array of proposed tasks with title, description, acceptance criteria, and priorityreasoning — Human-readable explanation of the decompositionstrategy — Which planning strategy was applied (build, fix, generic, none)