# Task List

> Required for 4+ step requests; add tasks at start and update status after each step.

- **Type:** Skill
- **Install:** `agentstack add skill-nvidia-skillevaluator-task-list`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [NVIDIA](https://agentstack.voostack.com/s/nvidia)
- **Installs:** 0
- **Category:** [Agent Skills](https://agentstack.voostack.com/c/agent-skills)
- **Latest version:** 0.1.0
- **License:** Apache-2.0
- **Upstream author:** [NVIDIA](https://github.com/NVIDIA)
- **Source:** https://github.com/NVIDIA/SkillEvaluator/tree/main/src/skillevaluator/tier3/reference_skills/task-list
- **Website:** https://docs.nvidia.com/skills/skillevaluator/

## Install

```sh
agentstack add skill-nvidia-skillevaluator-task-list
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# 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) | Get next pending task |

## Rules

- One task in_progress at a time
- Start before working, complete when done
- Do not leave tasks hanging

## Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [NVIDIA](https://github.com/NVIDIA)
- **Source:** [NVIDIA/SkillEvaluator](https://github.com/NVIDIA/SkillEvaluator)
- **License:** Apache-2.0
- **Homepage:** https://docs.nvidia.com/skills/skillevaluator/

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/skill-nvidia-skillevaluator-task-list
- Seller: https://agentstack.voostack.com/s/nvidia
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
