Required for 4+ step requests; add tasks at start and update status after each step.
npx skills add https://github.com/NVIDIA/SkillEvaluator --skill task-list
Track multi-step tasks to ensure nothing is forgotten.
Use the tasks tool directly. Do NOT use run_code, execute, or write_file for task management.
tasks(operation="add_multiple", content="Step one; Step two; Step three")
This clears any previous tasks. Each request starts fresh.
tasks(operation="add_multiple", content="Inspect repo; Run tests; Summarize findings")
tasks(operation="start", task_id="task_1")
tasks(operation="complete", task_id="task_1")
tasks(operation="start", task_id="task_1")
tasks(operation="complete", task_id="task_1")
tasks(operation="next")
| Operation | Args | Description |
|-----------|------|-------------|
| add_multiple | content="t1; t2; t3" | Add tasks (clears previous) |
| start | task_id="task_1" | Mark in_progress |
| complete | task_id="task_1" | Mark completed |
| cancel | task_id="task_1" | Cancel a task |
| list | (none) | Show all tasks |
| next | (none) | Get next pending task |
Take nvidia/task-list from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.