| name | master-skill |
| description | Orchestrate end-to-end Agent Skill delivery as a standalone workflow with natural-language intent routing, optional /ss commands, session tracking, and deterministic verification. |
Master Skill
Mission
Convert user intent into a complete standalone skill package with traceable lifecycle artifacts:
IDEA -> DESIGN.md -> TASK.md -> IMPLEMENTATION -> VERIFY_REPORT.md -> ARCHIVE.
Mandatory Boot Sequence
- Read
knowledge/architect.md.
- Read
knowledge/standards.md.
- Read
loop/roadmap.md.
- Resolve intent using natural language first, then optional
/ss:* command hints.
- Refuse ambiguous session context and ask at most three short clarifying questions.
Standalone Intent Router
- Natural language intent (primary):
- Explore intent ->
explore
- Plan artifacts ->
ff or continue
- Execute tasks ->
apply
- Validate coherence ->
verify
- Finalize lifecycle ->
archive
- Optional command triggers (secondary):
/ss:explore: Discover scope and constraints. Do not implement code.
/ss:new-session: Start a new standalone session context.
/ss:ff: Generate artifacts quickly until apply-ready.
/ss:continue: Create exactly one missing artifact per turn.
/ss:apply: Execute tasks and update checklist state immediately.
/ss:verify: Evaluate spec-task-code coherence.
/ss:archive: Close lifecycle after verification gates pass.
- Unsupported external command namespaces:
- Reject unsupported namespace usage.
- Return migration hint:
Use /ss:* commands instead.
Ana-Skill Phase (Design)
- Build or update
DESIGN.md.
- Capture strengths, weaknesses, information gaps, and risks.
- Mirror design decisions into
loop/roadmap.md.
- Enforce Gate A and Gate B before moving forward.
Task-Skill Phase (Planning)
- Build or update
TASK.md.
- Decompose work into phases, tasks, and checklist items.
- Track task IO and Definition of Done per task group.
- Mirror execution plan into
loop/tasks.md.
- Enforce Gate C before implementation.
Implementation Phase
- Execute tasks in priority order.
- Update
- [ ] to - [x] as soon as a task is completed.
- Keep changes inside required structure and conventions.
- Stop and ask up to three short questions when blocked by missing context.
Moni-Skill Phase (Verification)
- Build or update
VERIFY_REPORT.md.
- Evaluate
Completeness, Correctness, and Coherence.
- Classify issues by
CRITICAL, WARNING, SUGGESTION.
- Write pass/fail evidence into
loop/checklist.md.
- Enforce Gate D and Gate E before archive.
Phase Gates
- Gate A: Confirm scope and capabilities.
- Gate B: Freeze
DESIGN.md.
- Gate C: Approve
TASK.md with DoD.
- Gate D: Complete implementation tasks and validation.
- Gate E: Block archive while any CRITICAL issue exists.
Required Files
Maintain the following files at all times:
SKILL.md
knowledge/architect.md
knowledge/standards.md
loop/roadmap.md
loop/checklist.md
loop/tasks.md
scripts/init_skill.py
scripts/quick_validate.py
templates/DESIGN.md.template
templates/TASK.md.template
templates/VERIFY_REPORT.md.template
Response Contract
Return exactly eight sections in every execution response:
- Mode
- Using Session
- Phase Focus
- Action Taken
- Files Created/Updated
- Remaining Gaps
- Risks / Blockers
- Next Step
Operational Rules
- Use imperative voice.
- Apply progressive disclosure.
- Trace every conclusion to requirement, spec, task, or code.
- Deliver actionable outputs only.
- Block archive whenever
VERIFY_REPORT.md contains any CRITICAL issue.
Done Definition
Mark the skill complete only when all conditions pass:
- Keep the structure compliant with required zones.
- Describe Ana/Task/Moni workflow clearly in
SKILL.md.
- Ship required knowledge, loop, scripts, and templates.
- Produce
VERIFY_REPORT.md proving design-task-implementation coherence.
- Obtain explicit user confirmation for final version closure.