소스 정보
- 저장소
- bdarbaz/claude-stack-plugin
- 최근 소스 활동
- 2026년 3월 16일 20:54
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
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