Phase: Any
Usage:
/flow-issues
/flow-issues --ready
/flow-issues --blocked
/flow-issues --decomposed
/flow-issues --quick-start
Fetches all open issues for the current repository, analyzes them via Python script (file paths, labels, stale detection), ranks by impact using LLM judgment, and displays a dashboard with a recommended work order. Supports optional readiness filters to narrow results. Read-only — never creates, edits, or closes issues.
bin/flow analyze-issues which calls gh issue list internally, parses the JSON, extracts file paths from issue bodies, detects “Flow In-Progress”, “Decomposed”, and “Blocked” labels, queries native GitHub blocked-by relationships via GraphQL, categorizes issues, and checks for stale issues (older than 60 days with missing file references)[#N](url), Title columns)Ready or Blocked based on the “Blocked” label or native GitHub blocked-by dependencies. Ready issues appear first, blocked issues at the end. Sorting is by impact ranking. A Start Commands table follows the work order with only ready issues — blocked issues are excluded from start commandsOptional flags filter the issue list by readiness. Flags are mutually exclusive — pass at most one.
| Flag | Shows |
|---|---|
--ready |
Issues that are not blocked — can start immediately |
--blocked |
Issues that are blocked — waiting on other work |
--decomposed |
Issues with the “Decomposed” label — work-ready with prior analysis |
--quick-start |
Decomposed issues that are not blocked — best candidates for autonomous execution |
No flag returns all issues (default behavior).