Maestro-orchestrate implementation-planning
Generates detailed implementation plans from finalized designs
git clone https://github.com/josstei/maestro-orchestrate
T=$(mktemp -d) && git clone --depth=1 https://github.com/josstei/maestro-orchestrate "$T" && mkdir -p ~/.claude/skills && cp -r "$T/claude/src/skills/shared/implementation-planning" ~/.claude/skills/josstei-maestro-orchestrate-implementation-planning-1d3f20 && rm -rf "$T"
claude/src/skills/shared/implementation-planning/SKILL.mdImplementation Planning Skill
Standard workflow only. If
task_complexity is simple and workflow mode is Express, do not activate this skill. Simple tasks use the Express workflow, which does not activate implementation-planning. Return to the Express Workflow section.
Activate this skill during Phase 2 of Maestro orchestration, after the design document has been approved. This skill provides the methodology for generating detailed, actionable implementation plans that map directly to subagent assignments.
Codebase Grounding
Do not generate an implementation plan from guesses about the repository.
Use the built-in
codebase_investigator before phase decomposition when:
- The task modifies an existing codebase
- File ownership, integration points, or validation commands are still unclear after reading the approved design
- Parallelization decisions depend on understanding current module boundaries or likely file overlap
Ask the investigator for:
- The modules and files most likely to change
- Existing architectural boundaries and conventions the plan must preserve
- Integration seams, dependencies, and shared ownership hotspots
- Validation commands and test entry points already used by the project
- Parallelization or conflict risks that should prevent batching
Skip the investigator only for greenfield tasks, documentation-only work, or plans where the current turn already established the relevant repo structure from direct reads.
Reuse investigator findings directly in the implementation plan:
- File inventories should reflect real candidate paths, not placeholders
- Validation criteria should prefer repo-native commands the investigator surfaced
- Parallel batches should account for actual ownership overlap and conflict risk
Plan Generation Methodology
Input Analysis
Before generating the plan, thoroughly analyze the approved design document for:
- Read
from the approved design document's frontmatter. Apply phase count guidance and domain analysis scaling accordingly. Recordtask_complexity
in implementation plan frontmatter.task_complexity - Components and their responsibilities
- Interfaces and contracts between components
- Data models and their relationships
- External dependencies and integrations
- Technology stack decisions
- Quality requirements that influence implementation order
Phase Decomposition
Break the implementation into phases following these principles:
- Foundation First: Infrastructure, configuration, and shared types/interfaces come first
- Dependencies Flow Downward: A phase can only depend on phases with lower IDs
- Single Responsibility: Each phase delivers a cohesive unit of functionality
- Agent Alignment: Each phase maps to one or two agent specializations
- Agent Capability Match: Verify the assigned agent's tool tier supports the phase deliverables (see compatibility check below)
- Testability: Each phase should be independently validatable
Phase Ordering Strategy
Layer 1: Foundation (types, interfaces, configuration) | Layer 2: Core Domain (business logic, data models) | Layer 3: Infrastructure (database, external services, API layer) | Layer 4: Integration (connecting components, middleware) | Layer 5: Quality (testing, security review, performance) | Layer 6: Documentation & Polish
Agent-Deliverable Compatibility Check
Before finalizing agent assignments, verify each phase's agent can deliver its requirements:
| Phase Deliverable | Required Tier | Compatible Agents |
|---|---|---|
| Creates/modifies files | Full Access or Read+Write | coder, data-engineer, devops-engineer, tester, refactor, design-system-engineer, i18n-specialist, analytics-engineer, technical-writer, product-manager, ux-designer, copywriter |
| Runs shell commands | Full Access or Read+Shell | coder, data-engineer, devops-engineer, tester, refactor, design-system-engineer, i18n-specialist, analytics-engineer, debugger, performance-engineer, security-engineer, seo-specialist, accessibility-specialist |
| Analysis/review only | Any tier | All agents |
Phase Count Guidance
Scale decomposition granularity to
task_complexity (read from design document frontmatter):
- simple: 1-3 phases. Prefer single-phase execution when feasible. Combine foundation + implementation. Skip separate documentation/polish phases.
- medium: 3-5 phases. Use the layer model but combine Quality and Documentation into the final implementation phase where practical.
- complex: No phase count cap. Full layer decomposition strategy applies.
Parallelization Identification
Phases can run in parallel when:
- They have no shared file dependencies (no overlapping files_created or files_modified)
- They are at the same dependency depth (same layer)
- They do not share data model ownership
- Their validation can run independently
Mark parallel-eligible phases with
parallel: true and group them into execution batches.
Implementation Detail Requirements
Per-Phase Specification
Each phase in the plan must include:
Objective
A clear, measurable statement of what this phase delivers.
Agent Assignment
Which agent(s) execute this phase, with rationale for selection.
Files to Create
For each new file:
- Full relative path from project root
- Purpose and responsibility
- Key interfaces, classes, or functions to define
- Complete type signatures for public APIs
Files to Modify
For each existing file:
- Full relative path from project root
- Specific changes required and why
- Expected before/after for critical sections
Implementation Details
Provide sufficient detail for the assigned agent to execute without ambiguity:
- Interface definitions with complete type signatures
- Base class contracts with abstract method signatures
- Dependency injection patterns and registration points
- Error handling strategy (error types, propagation, recovery)
- Configuration requirements (environment variables, config files)
Validation Criteria
Specific commands to run and expected outcomes:
- Build/compile commands
- Lint/format checks
- Unit test commands
- Integration test commands (if applicable)
- Manual verification steps (if applicable)
Dependencies
: Phase IDs that must complete before this phase startsblocked_by
: Phase IDs that cannot start until this phase completesblocks
Dependency Minimization
List only direct blockers in
blocked_by. Do not include transitive dependencies — they inflate dependency depth and prevent parallelism.
Anti-pattern (over-specified):
- Phase 2: blocked_by: [1]
- Phase 3: blocked_by: [1, 2] — Phase 1 is redundant, already reachable via Phase 2
- Phase 4: blocked_by: [1, 2, 3] — Phases 1, 2 are redundant
Result: depths 0, 1, 2, 3 — zero parallel phases.
Correct (minimized):
- Phase 2: blocked_by: [1]
- Phase 3: blocked_by: [1] — Only needs Phase 1 output, not Phase 2
- Phase 4: blocked_by: [2, 3] — Needs both done
Result: depths 0, 1, 2 — Phases 2 and 3 run in parallel at depth 1.
Ask for each dependency: "Does this phase truly need the output of that specific phase, or is it transitively covered?"
If
validate_plan is available, review its parallelization_profile and redundant_dependency warnings before presenting the plan. Revise blocked_by to eliminate redundancies when possible.
Agent Assignment Criteria
Matching Tasks to Agents
| Task Domain | Primary Agent | Secondary Agent | Rationale |
|---|---|---|---|
| System design, architecture | | - | Read-only analysis, design expertise |
| API contracts, endpoints | | | Design then implement |
| Feature implementation | | - | Full implementation access |
| Code quality review | | - | Read-only verification |
| Database schema, queries | | - | Schema + implementation |
| Bug investigation | | - | Read + shell for investigation |
| CI/CD, infrastructure | | - | Full DevOps access |
| Performance analysis | | - | Read + shell for profiling |
| Code restructuring | | - | Write + shell access (for validation) |
| Security assessment | | - | Read + shell for scanning |
| Test creation | | - | Full test implementation |
| Documentation | | - | Write access for docs |
| Technical SEO audit | | - | Read + shell + web search |
| Marketing copy, content | | - | Read/write |
| Content planning | | - | Read + web search/fetch |
| UX design, user flows | | - | Read/write + web search |
| WCAG compliance audit | | - | Read + shell + web search |
| Requirements, product | | - | Read/write + web search |
| Tracking, analytics | | | Implement then instrument |
| Internationalization | | | Implement then localize |
| Design tokens, theming | | | Tokens then consume |
| Legal, regulatory | | - | Read + web search/fetch |
Assignment Rules
- Match the primary task domain to the agent specialization
- Consider tool requirements — does the task need shell access? Write access?
- For parallel phases, assign non-overlapping file ownership to each agent
- Prefer single-agent phases for clarity; use multi-agent only when distinct specializations are needed
- Never assign more files to an agent than it can handle within its
limitmax_turns
Token Budget Estimation
Estimate token consumption per phase based on:
- Number of files to read (input tokens)
- Complexity of output expected (output tokens)
- Agent's max_turns limit as upper bound
- Historical averages: ~500 input tokens per file read, ~200 output tokens per file written
Cost Estimation
Per-Phase Cost Factors
- Model tier: Pro agents (~$0.01/1K input,
$0.04/1K output) vs Flash agents ($0.001/1K input, ~$0.004/1K output) - Input complexity: Number of files read, average file size, context from previous phases
- Output complexity: Lines of code generated, number of files created/modified
- Retry budget: Add 50% buffer per phase for potential retries (max 2 retries)
Estimation Formula
Phase Cost = (input_tokens × input_rate + output_tokens × output_rate) × retry_multiplier
Where:
= files_to_read × 500 + context_tokensinput_tokens
= files_to_write × 200 + validation_outputoutput_tokens
= 1.5 (accounts for up to 2 retries)retry_multiplier
Plan-Level Cost Summary
Include this table in every implementation plan:
| Phase | Agent | Model | Est. Input | Est. Output | Est. Cost |
|---|---|---|---|---|---|
| 1 | [agent] | [model] | [tokens] | [tokens] | [$X.XX] |
| ... | ... | ... | ... | ... | ... |
| Total | [sum] | [sum] | [$X.XX] |
Plan Document Generation
Output Location
The write path depends on whether your runtime provides a Plan Mode surface (check
get_runtime_context, loaded at session start, step 0).
- Plan Mode active: Some runtimes restrict writes to a temporary staging directory during Plan Mode. Write the plan there first, then copy to the permanent location after approval. Call
with the plan path to present the plan for user approval.exit_plan_mode - Plan Mode not active or not available: Write the implementation plan directly to the project's plans directory.
Permanent location:
<state_dir>/plans/YYYY-MM-DD-<topic-slug>-impl-plan.md (where <state_dir> resolves from MAESTRO_STATE_DIR, default docs/maestro).
If your runtime does not provide a Plan Mode transition, track planning progress using the plan-update mechanism from your runtime context, write directly to the final location, and use the user-prompt tool from runtime context for the approval gate.
Document Structure
Use the
implementation-plan template loaded via get_skill_content.
Required Sections
- Plan Overview: Summary of total phases, agents involved, estimated effort
- Dependency Graph: Visual representation showing phase dependencies and parallel opportunities
- Execution Strategy Table: Stage-by-stage breakdown with agent assignments and execution mode
- Phase Details: Full specification for each phase (objective, agent, files, details, validation, dependencies)
- File Inventory: Complete table mapping every file to its phase and purpose
- Risk Classification: Per-phase risk assessment (LOW/MEDIUM/HIGH) with rationale
- Execution Profile: Summary of parallel vs sequential characteristics to inform mode selection:
Execution Profile: - Total phases: [N] - Parallelizable phases: [M] (in [B] batches) - Sequential-only phases: [S] - Estimated parallel wall time: [time estimate based on batch execution] - Estimated sequential wall time: [time estimate based on serial execution] Note: Native parallel execution currently runs agents in autonomous mode. All tool calls are auto-approved without user confirmation.
Completion Criteria
The implementation plan is complete when:
- Every component from the design document maps to at least one phase
- All phase dependencies are acyclic (no circular dependencies)
- Parallel opportunities are identified and marked
- Each phase has clear validation criteria
- File ownership is non-overlapping for parallel phases
- The user has given explicit approval of the complete plan
Before presenting the plan for approval, check whether
validate_plan appears in your available tools. If it does, call it with the plan structure and task_complexity to verify phase count constraints, file ownership, acyclic dependencies, and agent validity. If it does not, self-check against the phase count limits above.
Post-Generation
After writing the implementation plan:
- Confirm the file path to the user
- Present the dependency graph and execution strategy
- Highlight parallel execution opportunities
- Provide token budget estimates
- If your runtime provides Plan Mode, call
with the plan path to present the plan for user approval. If Plan Mode is not available, present the completed plan for user approval using the user-prompt tool from runtime context.exit_plan_mode - Ensure the approved plan is at
as the permanent project reference (copy from the staging directory if Plan Mode was used)<state_dir>/plans/YYYY-MM-DD-<slug>-impl-plan.md - Ask if the user is ready to proceed to execution (Phase 3)
- Upon approval, create the session state file via the session-management skill