task-list
FeaturedRequired for 4+ step requests; add tasks at start and update status after each step.
AI & Automation 426 stars
40 forks Updated today Apache-2.0
Install
Quality Score: 90/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Task List Skill
Track multi-step tasks to ensure nothing is forgotten.
## When to use
- The request requires 4 or more distinct steps
- You need to perform several operations in sequence
## Instructions
1. Add tasks before starting multi-step work.
2. Mark exactly one task in progress while working.
3. Update task status as each step completes.
4. Keep task text concise and action-oriented.
## How to use
Use the `tasks` tool directly. Do NOT use run_code, execute, or write_file for task management.
### 1. Add tasks at the start
```
tasks(operation="add_multiple", content="Step one; Step two; Step three")
```
This clears any previous tasks. Each request starts fresh.
## Examples
```python
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")
```
### 2. Start a task before working on it
```
tasks(operation="start", task_id="task_1")
```
### 3. Complete a task when done
```
tasks(operation="complete", task_id="task_1")
```
### 4. Check what's next
```
tasks(operation="next")
```
## All operations
| 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...
Details
- Author
- NVIDIA
- Repository
- NVIDIA/SkillEvaluator
- Created
- 2 months ago
- Last Updated
- today
- Language
- Python
- License
- Apache-2.0
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Listed
task
Create and maintain a task checklist that tracks progress in real-time
2 Updated 5 days ago
lacerbi AI & Automation Listed
task
Analyze a free-form request, decompose it into prioritized sub-tasks with explicit dependencies (blockedBy), and register them in the session via TaskCreate. Plans only — does not execute. Use when you want a clean task list before starting work.
1 Updated yesterday
PHPCraftdream AI & Automation Listed
task-list
List every checklist step under one job/issue as a task, one row per step, from .ai/.ogre.
1 Updated 1 months ago
metallurgical