用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/bdarbaz/claude-stack-plugin --skill s-do命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Autonomous workflow loop - runs the full skill chain automatically with circuit breaker and stuck detection
Show all available skills, agents, and workflow guides - quick reference card for claude-stack
Generate structured codebase documentation - file tree, dependency graph, module responsibilities, entry points
基于 SOC 职业分类
正在显示 SKILL.md
| name | s-do |
| description | Freeform router - accepts natural language and routes to the appropriate skill(s) |
Accepts natural language instructions and routes to the correct skill(s). The universal entry point.
Usage: /s:do {natural language instruction}
Read the user's natural language instruction. Analyze it to determine:
Map the detected intent to one or more skills:
| Intent Pattern | Routes To | Reason |
|---|---|---|
| "fix {bug/error/issue}" | /s:debug | Systematic debugging required |
| "review {code/PR/changes}" | /s:review | Multi-perspective code review |
| "ship it / push / deploy / PR" | /s:ship | Ship workflow |
| "what's the status / where are we" | /s:status | Project state overview |
| "continue / resume / pick up" | /s:resume | Context reconstruction |
| "pause / stop / save state" | /s:pause | State preservation |
| "test the UI / check the page" | /s:qa | Browser-based QA |
| "document / write docs" | /s:docs | Documentation update |
| "note: {something}" | /s:note | Quick note capture |
| "help / what can you do" | /s:help | Skill listing |
| "map the codebase / show architecture" | /s:map | Codebase documentation |
| "brainstorm / explore / think about" | /s:brainstorm | Creative exploration |
| "plan {feature/work}" | /s:plan | Implementation planning |
| "verify / check / confirm done" | /s:verify | Evidence-based verification |
| "retro / retrospective / what went well" | /s:retro | Retrospective |
| "save learnings / compound" | /s:compound | Knowledge persistence |
| "start new project" | /s:new | Project initialization |
| "requirements / discuss / what should we build" | /s:discuss | Requirements gathering |
| "open {url} / browse {url}" | /s:browse | Headless browser |
| "setup cookies / login" | /s:cookies | Cookie import |
| Intent Pattern | Routes To | Reason |
|---|---|---|
| "add a new feature for X" | /s:brainstorm > /s:plan > /s:build | Full feature workflow |
| "fix the bug and ship it" | /s:debug > /s:verify > /s:ship | Fix + verify + ship |
| "review and ship" | /s:review > /s:verify > /s:ship | Review gate before ship |
| "build and test X" | /s:build > /s:verify | Implementation + verification |
| "start fresh on X" | /s:new > /s:discuss | New project kickoff |
| "plan and build X" | /s:plan > /s:build | Plan then implement |
| "quick fix for X" | /s:quick "{X}" | Compressed workflow |
| "do everything automatically" | /s:auto | Full autonomous loop |
| "review from CEO perspective" | /s:ceo-review | Product perspective |
| "technical review" | /s:eng-review | Engineering perspective |
| "full review" | /s:ceo-review > /s:eng-review > /s:review | All perspectives |
Always show the routing decision before executing:
[DO] Understood: "{user_instruction}"
[DO] Routing to: /s:{skill} because {reason}
For multi-skill chains:
[DO] Understood: "{user_instruction}"
[DO] Routing chain:
1. /s:{skill_1} - {reason_1}
2. /s:{skill_2} - {reason_2}
3. /s:{skill_3} - {reason_3}
If the intent is ambiguous (maps to multiple possible skills equally):
[DO] I'm not sure which workflow fits best for: "{user_instruction}"
Options:
A) /s:{skill_a} - {when this makes sense}
B) /s:{skill_b} - {when this makes sense}
C) /s:{skill_c} - {when this makes sense}
Which one? (A/B/C or describe more)
NEVER guess when ambiguous. Ask.
For single-skill routes with HIGH confidence: execute immediately, no confirmation needed.
For multi-skill chains: ask for confirmation before starting:
[DO] This will run {N} skills in sequence. Proceed? (yes/no/modify)
For destructive-sounding actions (delete, reset, remove): ALWAYS confirm:
[DO] This sounds like a destructive action. Routing to: /s:{skill}
[DO] Are you sure? (yes/no)
Once routing is confirmed:
[DO] Completed /s:{skill_1}, starting /s:{skill_2}...If no skill matches the instruction:
[DO] I don't have a specific skill for that, but here's what I can do:
Core: /s:new /s:discuss /s:plan /s:build /s:status /s:resume /s:pause /s:note
Quality: /s:brainstorm /s:review /s:verify /s:debug /s:ceo-review /s:eng-review
Ship: /s:ship /s:compound /s:retro /s:docs
Browser: /s:qa /s:qa-only /s:browse /s:cookies
Auto: /s:auto /s:quick /s:do /s:map /s:help
Can you rephrase, or pick a skill directly?
Before routing, check current project state:
.planning/STATE.md doesn't exist and the request needs it → suggest /s:new first[DO] Warning: You asked to ship, but STATE.md shows verification hasn't passed yet.
[DO] Recommended chain: /s:verify > /s:ship
[DO] Proceed with recommended chain? (yes/no/force ship anyway)
Handle instructions with "and", "then", "after that":
/s:debug > /s:verify > /s:ship/s:brainstorm > /s:plan > /s:build/s:review > (fix issues inline) > /s:verify > /s:shipParse conjunctions and sequence words to build the skill chain.
/s:auto set one