Planning
Planning lifecycle: specs, requirements, pre-plan ambiguity resolution, file-backed plans, plan validation, pause/resume, session handoff.From its SKILL.md
npx -y skills add notque/vexjoy-agent --skill planningAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
SKILL.md
6.2 KB, ~1.0k tokens by cl100k_base, as published. Nobody here has run it
Planning Skill
Umbrella skill for the planning lifecycle. Routes to the correct reference based on the intent requested: write a spec, resolve ambiguities before planning, create a file-backed plan, validate a plan, manage plan lifecycle, pause a session, or resume from handoff artifacts.
Routing
Detect the user's intent and load the appropriate reference file:
| Intent | Trigger phrases | Reference |
|---|---|---|
| Spec | "write spec", "user stories", "define requirements", "scope this", "acceptance criteria", "define scope", "spec out" | ${CLAUDE_SKILL_DIR}/references/spec.md |
| Pre-plan | "discuss ambiguities", "resolve gray areas", "clarify before planning", "assumptions mode", "before we plan", "pre-planning discussion" | ${CLAUDE_SKILL_DIR}/references/pre-plan.md |
| Interview | depth-first decision-tree, one question at a time, recommendation per question. Triggers: "interview me", "grill me", "depth-first review", "depth-first interview", "not sure", "i'm not sure", "where do i start", "want clarity on", "need clarity on", "what am i missing", "poke holes in", "challenge my assumptions", "think this through with me", "lots of moving parts", "many decisions" | ${CLAUDE_SKILL_DIR}/references/depth-first-interview.md |
| Plan-files | "create plan", "task plan", "working memory", "persistent plan", "file-backed planning" | ${CLAUDE_SKILL_DIR}/references/plan-files.md (+ ${CLAUDE_SKILL_DIR}/references/executor-ready-plan-template.md when the plan will be executed by subagents (SDD)) |
| Check | "check plan", "validate plan", "plan checker", "review plan", "is this plan ready", "pre-execution check" | ${CLAUDE_SKILL_DIR}/references/check.md |
| Manage | "list plans", "show plan", "complete plan", "plan status", "manage plans" | ${CLAUDE_SKILL_DIR}/references/manage.md |
| Pause | "pause", "save progress", "handoff", "stopping for now", "end session", "session handoff", "wrap up session" | ${CLAUDE_SKILL_DIR}/references/pause.md |
| Resume | "resume", "continue", "pick up where I left off", "what was I doing", "continue work", "where did I leave off", "what's next" | ${CLAUDE_SKILL_DIR}/references/resume.md |
Reference Loading Table
| Signal | Load These Files | Why |
|---|---|---|
| "write spec", "user stories", "define requirements", "scope this", "acceptance criteria", "define scope", "spec out" | spec.md | Spec |
| "discuss ambiguities", "resolve gray areas", "clarify before planning", "assumptions mode", "before we plan", "pre-planning discussion" | pre-plan.md | Pre-plan |
| "interview me", "grill me", "depth-first review", "depth-first interview", "not sure", "i'm not sure", "where do i start", "want clarity on", "need clarity on", "what am i missing", "poke holes in", "challenge my assumptions", "think this through with me", "lots of moving parts", "many decisions" | depth-first-interview.md | Interview |
| "create plan", "task plan", "working memory", "persistent plan", "file-backed planning" | plan-files.md (+ executor-ready-plan-template.md when plan targets SDD execution) | Plan-files |
| "check plan", "validate plan", "plan checker", "review plan", "is this plan ready", "pre-execution check" | check.md | Check |
| "list plans", "show plan", "complete plan", "plan status", "manage plans" | manage.md | Manage |
| "pause", "save progress", "handoff", "stopping for now", "end session", "session handoff", "wrap up session" | pause.md | Pause |
| "resume", "continue", "pick up where I left off", "what was I doing", "continue work", "where did I leave off", "what's next" | resume.md | Resume |
Instructions
- Identify the user's planning task from their message
- Load the matching reference file from the table above
- Follow the instructions in that reference file exactly
What ships with it: 17 files
93.5 KB alongside SKILL.md
references/
- check-dimensions.md7.4 KB
- check-errors.md824 B
- check.md6.5 KB
- check-verdict-format.md3.2 KB
- depth-first-interview.md6.3 KB
- executor-ready-plan-template.md7.7 KB
- manage.md5.1 KB
- pause-confirm-and-errors.md2.1 KB
- pause-extract-learnings.md2.9 KB
- pause-gather-steps.md2.3 KB
- pause.md6.4 KB
- pause-synthesize-fields.md2.3 KB
- pause-write-templates.md4.3 KB
- plan-files.md8.4 KB
- pre-plan.md11.6 KB
- resume.md11.0 KB
- spec.md5.2 KB