Show progress and recommend next todo(s) to tackle
Analyzes Linear issue progress and recommends prioritized next tasks based on dependencies and logical order.
npx claudepluginhub artu-ai/flowissue-idDisplay issue progress and recommend the next task(s) to work on.
git branch --show-current$1 - The Linear issue ID (e.g., "ABC-123"). If not provided, infer from the branch name.If $1 is provided:
If $1 is empty:
username/abc-123-description)ABC-123 (letters-numbers) in the branch nameIf no issue ID can be determined:
No issue ID found.
Please provide an issue ID:
/flow:continue ABC-123
Use get_issue to fetch the issue title and description.
Parse the description for checkboxes and display current progress:
Issue: <issue-id> - <title>
Progress: X/Y completed
Completed:
✓ Task that is done
✓ Another completed task
Remaining:
○ Task still to do
○ Another pending task
If no checkboxes found:
Issue: <issue-id> - <title>
No progress checkboxes found in issue description.
Then stop (no recommendations without checkboxes).
Analyze the remaining (uncompleted, non-canceled) tasks and recommend what to work on next.
Consider these factors when prioritizing:
Output format:
Recommended next:
→ <primary recommendation with brief reasoning>
Alternatives:
• <alternative 1 if applicable>
• <alternative 2 if applicable>
If only one task remains:
Last remaining task:
→ <the task>
If all tasks are complete:
All tasks completed! 🎉
Run /flow:ready to mark the PR ready for review.
Issue: ART-60 - Add Excel/CSV file upload feature
Progress: 3/7 completed
Completed:
✓ Set up file upload component
✓ Add CSV parsing logic
✓ Create upload API endpoint
Remaining:
○ Add Excel parsing support
○ Implement validation errors UI
○ Add progress indicator
○ Write tests
Recommended next:
→ Add Excel parsing support (completes the parsing layer before moving to UI)
Alternatives:
• Implement validation errors UI (if you want to finalize the CSV flow first)
• Write tests (if you prefer test-driven approach for remaining features)