You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: enhance plan.md command with numbered tasks and implementation status check
- Add implementation status check stage to avoid duplicate work
- Structure tasks with numbered main tasks and subtasks for better organization
- Update plan-iterator.sh to handle new numbered task format
- Improve task referencing and progress tracking
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: .claude/commands/plan.md
+40-16Lines changed: 40 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,21 +11,29 @@ Create a new plan from a Jira task: fetch details, transition to In Progress, cr
11
11
- If it fails or times out, tell the user: "Jira connection failed. Please run `/mcp`, select `atlassian`, and choose `4. Reconnect`, then run `/plan $ARGUMENTS` again."
12
12
- Extract: summary, description, issue type
13
13
14
-
2.**Transition to In Progress**:
14
+
2.**Check implementation status**:
15
+
- Analyze the codebase to determine if this feature/fix has already been implemented
16
+
- Search for relevant files, functions, components that relate to the ticket
17
+
- If fully implemented: comment on Jira and suggest moving to "Done"
18
+
- If partially implemented: note what's done and focus plan on remaining work
19
+
- If not implemented: proceed with full planning
20
+
21
+
3.**Transition to In Progress**:
15
22
- Use `mcp__atlassian__getTransitionsForJiraIssue` to get available transitions
16
23
- Use `mcp__atlassian__transitionJiraIssue` to move to "In Progress" (skip if already in progress)
0 commit comments