Skip to main content
Version: Next

Tasks & Query

Create tasks and inspect the state of your work.

🤖 Agent-driven

These are normally run by the agents as they work — /taskmaster creates tasks, /task-implement picks the next one, and so on. You usually don't run create, current, next, list, or stats by hand; run them when you want to inspect state or script something.

Create & edit

CommandPurpose
createCreate a new task. Flags: --title, --type feat|fix|rework, --priority high|medium|low, --tags a,b, --with-analysis.
renameUpdate task metadata. Flags: --id, --title, --type, --priority.
statusSet a task's status directly. Flags: --id, --status, --by.

Query

CommandPurpose
currentShow the active task.
listList tasks. Flag: --status.
showPrint a task as JSON. Flags: --id, --summary, --spec.
statsAggregate statistics. Flag: --tokens.

Pick what's next

CommandPurpose
nextPick the next actionable task by priority. Flag: --with-spec.
next-reviewPick the next reviewable task. Flag: --with-spec.
next-fixPick the next fix-needed task. Flag: --with-spec.
next-changePick the next change request.

Examples

insight-flow create --title "Add auth" --type feat --priority high --tags auth,api
insight-flow show --id N42 --spec # full TASK.md + CHECKLIST.md
insight-flow list --status fix-needed
insight-flow next --with-spec # next task + its spec, ready to implement