Create a new task. Use when user wants to add work items, create todos, or break down features into tasks.
Creates new tasks with custom IDs, priorities, and parent relationships for organized work tracking.
/plugin marketplace add iheanyi/tasuku/plugin install iheanyi-tasuku-plugins-tasuku@iheanyi/tasukuCreate a new task in Tasuku.
tk task add "Task description" # Create with auto-generated ID
tk task add "Task description" --id my-id # Create with custom ID
tk task add "Subtask" --parent parent-id # Create as subtask
tk task add "Urgent fix" --priority high # Create with priority
--id: Custom task ID (otherwise auto-generated from description)--parent: Parent task ID to create as subtask--priority: Priority level (critical, high, normal, low, backlog)| Level | Name | When to Use |
|---|---|---|
| 0 | critical | Blocking issues, urgent bugs |
| 1 | high | Important, do soon |
| 2 | normal | Default priority |
| 3 | low | Can wait |
| 4 | backlog | Future work, ideas |
--parent to organize related work as subtaskstk task start <id> immediately if starting work