From microplans
Reference for the microplan document format. Provides structure, naming conventions, and writing guidelines for creating microplan files. Use when creating microplan documents.
How this skill is triggered — by the user, by Claude, or both
Slash command
/microplans:writing-microplansThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
This document defines the standard format for microplan files. A microplan is a self-contained unit of work: it captures everything needed to understand, plan, and implement a single focused task.
This document defines the standard format for microplan files. A microplan is a self-contained unit of work: it captures everything needed to understand, plan, and implement a single focused task.
Microplan directory: !echo "${TMPDIR:-/tmp}/claude-microplans/"``
mkdir -p before writing to ensure it existsmicroplan-microplan-add-auth-middleware.md, microplan-refactor-database-layer.mdUse this template when writing a microplan:
# Microplan: [Title]
## Objective
[One or two sentences describing what this task accomplishes and why.]
## Context
[Relevant background: what motivated this work, any prior decisions or constraints that affect the approach, and anything else needed to understand the task from scratch.]
## Research Findings
[Summary of what you learned from all research sources: codebase exploration, web searches, documentation, and any resources suggested in the delegation prompt. Include relevant details, existing patterns, dependencies, and anything that influences the implementation approach.]
## Implementation Plan
1. [First sub-step with specific details]
2. [Second sub-step]
3. [Continue as needed]
Each sub-step should be small enough to implement without further decomposition.
## Outstanding Questions
- [ ] [Question about an uncertain decision or missing context]
- [ ] [Question about a consequential choice that the user should weigh in on]
npx claudepluginhub computomatic/claude-plugin-microplans --plugin microplansWrites detailed implementation plans from specs for multi-step tasks before coding, with file structure maps, TDD bite-sized steps, and markdown tracking format.
Creates bite-sized, testable implementation plans from specs or requirements, with file structure and task decomposition. Activates before coding multi-step tasks.
Generates executable Markdown implementation plans for multi-step tasks from context briefs, resolving ambiguities, ordering dependencies, and enabling parallel worker execution.