Reviews priority of active work by examining active projects and asking "are these the right projects to be active". Produces a linear prioritised project list, ensures at least 10 Ready (runnable) tasks, and updates order or activates tasks as needed. Use when the user says "reprioritise", "review priorities", "are these the right projects", or when prioritisation or active-project mix should be reassessed.
You (the lead) do the work. Do not dispatch sub-agents.
Lead documentation: See docs/leads/reprioritise.md.
When this skill is invoked, run reprioritise: review which projects are active, decide if that mix is right, produce a linear priority order, and ensure enough runnable work (Ready tasks).
tg status --projects, tg status --tasks, tg next --json (to count runnable tasks and see which plans they belong to).flowchart TD
R["/reprioritise or trigger"] --> A[Fetch tg status --projects, --tasks, tg next --json]
A --> B[Count Ready (runnable) tasks]
B --> C{Ready >= 10?}
C -->|Yes| D[Review: are these the right active projects?]
C -->|No| E[Build linear priority list; identify tasks to activate]
E --> F[Update order / activate tasks so Ready >= 10]
F --> D
D --> G[Produce linear prioritised project list]
G --> H[Output: list + any actions taken]
Gather state
tg status --projects and tg status --tasks (or equivalent JSON).tg next --json --limit 50 to get runnable (Ready) tasks and their plans.Apply target
Answer the question
Produce output
These limits are enforced in the CLI/dashboard so reprioritise output aligns with what users see: few projects on the board, enough task rows to see pipeline.
Use this structure when reporting:
# Reprioritise report
## Are these the right projects?
[One paragraph: yes/no and why.]
## Prioritised project list
1. [Plan A] — [brief rationale]
2. [Plan B] — ...
...
## Ready count
- Before: N runnable
- Target: ≥ 10
- After: N runnable [and any actions taken]
## Actions taken
- [None | Reordered ... | Activated task(s) ... ]
.cursor/rules/available-agents.mdc — reprioritise in agent registry and skills table.