add-task
Add Task
Create a new task file using the taskmd add CLI command.
Instructions
The user's task description is in $ARGUMENTS.
-
Parse the user's input from
$ARGUMENTSto extract:- The task title (required)
- An optional template name (e.g. "bug", "feature", "chore", or a custom template)
- Any optional flags:
--priority,--effort,--tags,--group,--depends-on,--parent,--owner,--slug,--phase
-
Choose the group based on the task's domain (pass with
--group):cli— CLI commands, Go backend, terminal featuresweb— Web frontend, UI, React components- Omit
--groupfor cross-cutting, infrastructure, documentation, or unclear domain
-
Run
taskmd addwith the appropriate flags:
More from driangle/taskmd
complete-task
Mark a task as completed. Use when the user wants to mark a task as done or complete.
26do-task
Look up a task by ID or name and start working on it. Use when the user wants to pick up and execute a task.
25import-todos
Discover TODO/FIXME comments in the codebase and convert selected ones into task files. Use when the user wants to turn code TODOs into tracked tasks.
23next-task
Get the next recommended task to work on. Use when the user asks what to work on next or needs a task assignment.
22get-task
Get details of a specific task by ID or name. Use when the user wants to view or look up a task.
21verify-task
Run verification checks for a task and evaluate results. Use when the user wants to verify a task's acceptance criteria.
21