Generate an implementation plan from a planning document
Generates an implementation plan from a planning document, creating a Confluence coordination dashboard and updating Jira tickets with full execution details.
/plugin marketplace add jeffallan/claude-skills/plugin install jeffallan-fullstack-dev-skills@jeffallan/claude-skills<overview-doc-url>project/planning/Overview Document: $ARGUMENTS
This workflow creates two outputs:
Fetch the overview document from {Overview_Document}
Extract:
{Epic_Key} - The epic ticket key (e.g., CC-123){Jira_Project} - Link to the Jira project/boardFAILURE CONDITION: If epic key or project cannot be determined, prompt user for missing info.
CHECKPOINT: Confirm epic key and project before proceeding.
Codebase Exploration Focus:
Analyze existing tickets and prepare adjustments:
CHECKPOINT: Present proposed ticket changes and get approval before modifying Jira.
Create a lightweight coordination document in Confluence.
# {Epic_Key} Implementation Plan
## Summary
| Metric | Value |
|--------|-------|
| **Epic** | [{Epic_Key}](link) |
| **Total Tickets** | X |
| **Total Story Points** | X |
| **Overall Complexity** | Low/Medium/High |
| **Execution Waves** | X |
| **Key Dependencies** | Brief summary |
---
## Completion Status
| Ticket | Status | Completed Date | Notes |
|--------|--------|----------------|-------|
| [CC-XXX](link) | Pending | - | - |
| [CC-YYY](link) | Pending | - | - |
---
## Execution Order (Topologically Sorted)
| # | Ticket | Summary | Points | Risk | Dependencies | Status |
|---|--------|---------|--------|------|--------------|--------|
| 1 | [CC-XXX](link) | Title | 2 | Low | None | Pending |
| 2 | [CC-YYY](link) | Title | 3 | Low | CC-XXX | Pending |
---
## Parallel Execution Strategy
### Wave 1: [Name] (X pts) - Execute in Parallel
| Ticket | Summary | Points | Agent | Status |
|--------|---------|--------|-------|--------|
| CC-XXX | Title | 2 | frontend-developer | Pending |
| CC-YYY | Title | 3 | backend-developer | Pending |
### Wave 2: [Name] (X pts) - After Wave 1
| Ticket | Summary | Points | Agent | Status |
|--------|---------|--------|-------|--------|
| CC-ZZZ | Title | 5 | fullstack-developer | Pending |
**Note:** [Any blocking dependencies or coordination notes]
---
## Agent Recommendations
| Work Type | Recommended Agent |
|-----------|-------------------|
| Frontend UI/components | frontend-developer |
| API/backend services | backend-developer |
| Database changes | database-optimizer |
| Full-stack features | fullstack-developer |
| Test coverage | test-automator |
---
## Document Links
- **Overview Document:** [link]
- **Epic:** [link]
CHECKPOINT: Present plan preview and get approval before publishing.
After publishing the implementation plan, update each ticket with full implementation details.
Each ticket must be self-contained with everything needed to execute:
Overview Document: {Overview_Document_URL}
Implementation Plan: {Implementation_Plan_URL}
## Summary
[Brief description of what this ticket accomplishes]
## Implementation Steps
1. **[Step title]**
- Specific action with file path
- Code snippet if applicable
```typescript
// Example code
| File | Action | Description |
|---|---|---|
path/to/file.ts | Modify | What changes |
path/to/new.ts | Create | What it does |
tests/unit/feature.test.ts// Complete, copy-paste ready test code
import { ... } from '...';
describe('Feature', () => {
beforeEach(() => {
// setup
});
test('should do X', () => {
// test implementation
});
});
npm run check)npm run lint)
### Why Self-Contained Tickets
- `/execute-ticket` can run with just the ticket (no external doc fetching required)
- All context in one place
- Reduces token usage during execution
- Enables parallel agent execution
---
## Phase 5: Update Overview Document
Add an **Adjustments Section** to the overview document:
```markdown
## Implementation Plan Adjustments
**Plan Created:** [date]
**Implementation Plan:** [link]
### Tickets Added
- [CC-XXX] - [title] - [justification]
### Tickets Split
- [CC-YYY] split into [CC-YYY1], [CC-YYY2] - [reason]
### Story Points Updated
- [CC-ZZZ]: X → Y points - [reason]
### New Dependencies
- [CC-AAA] blocked by [CC-BBB] - [reason]
CHECKPOINT: Present proposed updates and get approval before modifying.
When complete, provide:
## Implementation Plan Created
**Implementation Plan:** [Confluence URL]
**Overview Document:** [Updated URL]
### Summary
- Tickets in epic: X
- Total story points: X
- Execution waves: X
### Changes Made
- Tickets created: [list]
- Tickets updated: [list]
- Story points added: [list]
### Next Steps
1. Review the implementation plan
2. Run `/execute-ticket <ticket-key>` to begin work
| Phase | Checkpoint | Action |
|---|---|---|
| 0 | Document confirmation | Confirm epic key and project |
| 2 | Ticket changes | Approve new/split/updated tickets |
| 3 | Plan preview | Approve before publishing |
| 5 | Overview updates | Approve adjustments section |
Never modify Jira or Confluence without explicit user approval.