Add a task to the project task list
Adds a task to your project's `.llm/todo.md` file with full context details. Use this to capture implementation requirements, dependencies, and code references when planning work.
/plugin marketplace add motlin/claude-code-plugins/plugin install markdown-tasks@motlin-claude-code-pluginstask descriptionAdd a task to the project task list.
<description> $ARGUMENTS </description>If no description was provided, ask the user for one.
skills/tasks/scripts/task_add.py .llm/todo.md "Task description
Context line 1
Context line 2"
Creates the .llm/ directory and todo.md file if they do not exist, and appends the new task with a [ ] checkbox. The script preserves all indentation in multi-line strings.
Exit codes: 0 (success), 1 (error)
The task list is in .llm/todo.md.
NEVER use the Read tool on .llm/todo.md. Always interact with the task list exclusively through the Python scripts.
[ ] - Not started (ready to work on)[x] - Completed[!] - Blocked after failed attemptEach task includes indented context lines with full implementation details:
Each task is extracted and executed in isolation. Every task must contain ALL context needed to implement it. Never reference other tasks.
Confirm to the user that the task was added.