npx claudepluginhub artu-ai/flow --plugin flowissue-id# Continue Display issue progress and recommend the next task(s) to work on. ## Context - Current branch: !`git branch --show-current` ## Arguments - **Issue ID**: `$1` - The Linear issue ID (e.g., "ABC-123"). If not provided, infer from the branch name. ## Step 1: Get the Issue ID If `$1` is provided: - Use it as the issue ID If `$1` is empty: - Extract the issue ID from the branch name (Linear branches typically follow the format `username/abc-123-description`) - Look for a pattern like `ABC-123` (letters-numbers) in the branch name If no issue ID can be determined (branch name...
/continueAdvances the active vibe session by one step: checks status, runs worker and explainer agents, optionally explorer, and displays progress summary with changes, verifications, and next actions.
/continueScans docs/feature/ for feature progress across development waves, displays status summary with symbols and details, detects anomalies, and resumes next wave after confirmation.
/continueResumes prior session by scanning progress files and git state, summarizes work status with branch/phase details and next action, then loads context after confirmation.
/continueAutonomously executes pending tasks from orchestrator queue, delegating to agents like frontend-dev or backend-dev, with git checks, retries, and quality gates until completion or pause.
/continueContinues a previous Codex session using a thread ID and follow-up prompt to iterate on findings, request fixes, or drill deeper into analysis.
/continueAnalyzes existing Slidev presentation files, summarizes status on structure, content quality, visuals, and suggests priority next steps.
Display 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 (branch name doesn't match Linear ABC-123 pattern):
This command requires a Linear issue.
Your branch doesn't appear to be linked to a Linear issue. Provide an issue ID:
/flow:continue ABC-123This command uses Linear issue checkboxes to track progress. It is not available for plain branches.
Check if the issue has an associated worktree:
git rev-parse --show-toplevel
basename $(git rev-parse --show-toplevel)
Compute the expected sibling worktree path: <repo-parent>/<repo-name>-<issue-identifier>
Check if the worktree exists:
git worktree list
If a worktree exists for this issue and the current directory is NOT already inside it, open it:
code -n <worktree-path>
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)