| name | brain-dump-ticket-selection |
| description | Pick the next Brain Dump ticket using the CLI. Use when the user asks what to work on next, which ticket is best, or to begin a ticket from the backlog. |
Brain Dump Ticket Selection
Use Brain Dump CLI output to recommend the next ticket.
Workflow
- Confirm Brain Dump is available:
brain-dump doctor
- Inspect project status:
brain-dump status --pretty
brain-dump ticket list --pretty
- If needed, inspect a specific ticket in more detail:
brain-dump context --ticket <ticket-id> --pretty
Recommendation criteria
Prioritize:
- Tickets already in
ready
- Higher priority tickets
- Foundational tickets that unblock others
- Tickets related to current repo changes or current epic focus
- Smaller tickets if the user wants a quick win
Response format
When asked “what next?”, provide:
- Top 3 recommendations
- 1 short reason for each
- A clear preferred choice
Starting the chosen ticket
Once a ticket is selected, run:
brain-dump workflow start-work --ticket <ticket-id> --pretty
brain-dump context --ticket <ticket-id> --pretty
Then proceed with implementation.