/pick
Pick your next work item, approve an implementation plan, and hand it off to /work.
/pick turns a ready work item into active work. It finds the items you can
start, lets you choose one, and presents its full context before planning
begins. It then hands the item to /plan. After you approve the plan, /pick
moves the item to in progress and hands the approved plan to /work.
Dispatching workflows
/pick coordinates two workflow handoffs. /plan must return an approved plan
before the item can move to in progress and /work can begin.
Workflow/pickSelects one item and owns the handoffs
Workflow/planCreates and approves the implementation planWorkflow/workReceives the approved plan to start implementationHow this workflow is structured
| 1 | Provider | Load the configured work item provider. |
|---|---|---|
| 2 | Items | Find the work items that are ready to start. |
| 3 | Pick | Choose the item you want to work on next. |
| 4 | Context | Review the item’s full context before planning. |
| 5 | Plan | Use /plan to create and approve an implementation plan. |
| 6 | Start | Move the item to in progress only after plan approval. |
| 7 | Work | Hand the approved plan and active item to /work. |