From plan-manager
Create a new implementation plan from template with auto-incrementing ID. Use this skill when the user asks to "create a plan", "start a new plan", "new implementation plan", or any request to initialize a structured plan file for tracking phased work with gates.
How this skill is triggered — by the user, by Claude, or both
Slash command
/plan-manager:plan-createThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Create a new plan file in `plans/active/`. Steps:
Create a new plan file in plans/active/. Steps:
---
id: "NNN"
title: "Plan Title"
status: active
created: YYYY-MM-DD
completed: null
gates_total: 0
gates_passed: 0
---
## Overview
[Describe the goal of this plan]
## Gate 1: [Name] — PENDING
- [ ] Validation: [what proves this gate is met]
plans/active/ and plans/archive/ directories if they don't existplans/registry.json (create if needed)npx claudepluginhub ats-kinoshita-iso/agent-workshop --plugin plan-managerCreates a new plan folder with a plan.md template, reading config for storage path and generating a filesystem-safe slug from the plan name.
Creates implementation plans with phase management, storing checklists per phase in session folder. Breaks tasks into small, independently completable units with testing and PR readiness phases.
Creates structured PLAN.md for software engineering tasks by interviewing user for intent, scanning project context, and outlining scope, success criteria, sequenced checklist. Use before implementation.