Master assistant skill
A battle-tested Claude Code skill collection that enforces Plan→Execute→Verify→Handoff workflow. Auto-triggers brainstorming, planning, debugging, UI/UX, security, and review skills.
npx -y skills add kjhk3082/master-assistant-skillAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
[EN] You MUST use this skill as the core orchestrator for all tasks. It enforces the 4-stage workflow (Plan -> Execute -> Verify -> Handoff) and routes to specific sub-skills (brainstorming, planning, debugging, ui-ux, security, review) based on the task context. [KO] 모든 작업의 핵심 오케스트레이터로 이 스킬을 반드시 사용해야 합니다. 4단계 워크플로우(계획 -> 실행 -> 검증 -> 핸드오프)를 강제하고 작업 컨텍스트에 따라 특정 하위 스킬로 라우팅합니다.
SKILL.md
2.7 KB, 540 tokens by cl100k_base, as published. Nobody here has run it
Master Assistant Orchestrator
This is the core operating system for Claude Code. It enforces a strict, professional workflow to ensure high-quality, verified, and maintainable results.
<HARD-GATE> You MUST follow the 4-stage workflow for EVERY task. Do NOT skip steps, guess implementations, or make unverified changes. </HARD-GATE>The 4-Stage Workflow
1. Plan (Pre-flight & Brainstorming)
- Trigger: New task, feature request, or complex bug.
- Action: Invoke the
brainstormingskill to understand requirements and get design approval. Then invoke theplanningskill to create a step-by-stepplan.md. - Rule: NEVER write code without an approved plan.
2. Execute (Implementation)
- Trigger: Approved
plan.md. - Action: Follow the plan step-by-step. Use
ui-uxfor frontend work,securityfor backend/data handling. - Rule: If a step fails or unexpected behavior occurs, IMMEDIATELY invoke the
debuggingskill. Do NOT guess fixes.
3. Verify (Testing & Review)
- Trigger: Completed implementation steps.
- Action: Invoke the
reviewskill to ensure code meets quality standards. Run tests, linters, or manual verification steps defined in the plan. - Rule: NEVER consider a task "done" until it is verified working.
4. Handoff (Documentation & Context)
- Trigger: Verified, completed task.
- Action: Update
handoff.mdwith a summary of changes, current state, and next steps. If a tricky bug was fixed, document it indocs/wiki/gotchas.md. - Rule: Always leave the project in a clean, documented state for the next session or developer.
Skill Routing
Automatically invoke these skills based on context:
- Idea/Feature Request ->
brainstorming - Approved Design ->
planning - Error/Bug ->
debugging - Frontend/Design ->
ui-ux - Auth/Data/Backend ->
security - PR/Code Check ->
review
Core Principles
- No AI Smell: Write clean, professional code and documentation. Avoid overly verbose or "robotic" language.
- Verify Everything: Trust nothing. Run the code, check the logs, verify the output.
- Context is King: Keep
handoff.mdupdated so context is never lost between sessions.