create-plan
npx machina-cli add skill Microck/ordinary-claude-skills/create-plan --openclawCreate Implementation Plan
Generate comprehensive implementation plans that provide strategic guidance without making actual code changes.
When to Use
- User explicitly requests a plan, roadmap, or implementation strategy
- Complex tasks requiring structured breakdown before implementation
- Need for risk assessment and alternative approach analysis
- Pre-implementation analysis of architectural decisions
Planning Process
1. Initial Assessment
Research the codebase to understand:
- Project structure and organization
- Relevant files and components
- Existing patterns and conventions
- Potential challenges and risks
Use search and read tools to examine the codebase. Use sage if deeper research is required for the use-case. Explicitly cite sources using filepath:line format.
2. Create Strategic Plan
Generate a Markdown plan file in plans/ directory with naming: plans/{YYYY-MM-DD}-{task-name}-v{N}.md
Example: plans/2025-11-24-add-auth-v1.md
3. Validate Plan
MANDATORY: Run the validation script to ensure the plan meets all requirements:
./.forge/skills/create-plan/validate-plan.sh plans/{YYYY-MM-DD}-{task-name}-v{N}.md
Fix any errors or warnings and re-validate until the plan passes all checks.
4. Plan Structure
# [Task Name]
## Objective
[Clear statement of goal and expected outcomes]
## Implementation Plan
- [ ] 1. [First task with detailed description and rationale]
- [ ] 2. [Second task with detailed description and rationale]
- [ ] 3. [Third task with detailed description and rationale]
## Verification Criteria
- [Criterion 1: Specific, measurable outcome]
- [Criterion 2: Specific, measurable outcome]
## Potential Risks and Mitigations
1. **[Risk Description]**
Mitigation: [Specific mitigation strategy]
2. **[Risk Description]**
Mitigation: [Specific mitigation strategy]
## Alternative Approaches
1. [Alternative 1]: [Brief description and trade-offs]
2. [Alternative 2]: [Brief description and trade-offs]
Critical Requirements
- ALWAYS validate the plan using
./.forge/skills/create-plan/validate-plan.shafter creation - ALWAYS use checkbox format (
- [ ]) for ALL implementation tasks - NEVER use numbered lists or plain bullet points in Implementation Plan section
- NEVER write code, code snippets, or code examples in the plan
- Include clear rationale for each task
- Provide specific, measurable verification criteria
- Document assumptions made for ambiguous requirements
- Focus on strategic "what" and "why", not tactical "how"
- Describe what needs to be done using natural language, not code
Best Practices
- Make reasonable assumptions when requirements are ambiguous
- Use codebase patterns to infer best practices
- Provide multiple solution paths for complex challenges
- Balance thoroughness with actionability
- Create plans that can be executed step-by-step by implementation agents
Boundaries
This is a planning-only skill:
- ✅ Research codebase and analyze structure
- ✅ Create strategic plans and documentation
- ✅ Assess risks and propose alternatives
- ✅ Describe implementations using natural language
- ❌ Make actual code changes
- ❌ Modify files or create implementations
- ❌ Run tests or build commands
- ❌ Write code, code snippets, or code examples in plans
If user requests implementation work, suggest switching to an implementation agent.
Source
git clone https://github.com/Microck/ordinary-claude-skills/blob/main/skills_all/create-plan/SKILL.mdView on GitHub Overview
Create-plan generates comprehensive, Markdown-based strategic plans for complex tasks. Each plan includes objectives, checkbox-driven tasks, verification criteria, risk assessments, and alternative approaches, and must be validated with the included script before execution. This helps teams analyze, break down, and align on the roadmap before implementing changes.
How This Skill Works
The process begins with an initial assessment of the task and codebase context, then generates a Markdown plan file in the plans/ directory using the naming format plans/{YYYY-MM-DD}-{task-name}-v{N}.md. The plan structure includes an objective, a checkbox-based implementation plan, verification criteria, risks with mitigations, and alternative approaches. After creation, the mandatory validation script at ./.forge/skills/create-plan/validate-plan.sh is run to ensure compliance; issues are fixed and re-validated until the plan passes.
When to Use It
- The user explicitly requests a plan, roadmap, or implementation strategy
- Complex tasks requiring a structured breakdown before implementation
- Need for risk assessment and alternative approach analysis
- Pre-implementation analysis of architectural decisions
- Documentation of what to do and why to guide stakeholders and teams
Quick Start
- Step 1: Clarify task scope and stakeholders, gathering context and requirements
- Step 2: Generate a Markdown plan in plans/{YYYY-MM-DD}-{task-name}-v{N}.md with objectives, tasks, and risk sections
- Step 3: Run the validation script: .//.forge/skills/create-plan/validate-plan.sh plans/{YYYY-MM-DD}-{task-name}-v{N}.md and iterate until it passes
Best Practices
- ALWAYS validate the plan after creation using the provided validation script
- ALWAYS use the checkbox format (- [ ]) for ALL implementation tasks
- Include a clear objective, rationale, and measurable verification for each task
- Document assumptions, constraints, and potential risks with mitigations
- Provide multiple alternative approaches with trade-offs; avoid code changes in plans
Example Use Cases
- Plan for migrating a monolith to microservices with phased decomposition
- Plan for implementing a new authentication system (OAuth/OpenID) and access controls
- Plan for a database schema redesign and data migration strategy
- Plan for feature-flagged rollout with phased deployment and monitoring
- Plan for disaster recovery, backups, and RPO/RTO validation