# Manage Tasks

> >-

- **Type:** Skill
- **Install:** `agentstack add skill-sumitaich1998-jarvisvr-manage-tasks`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [sumitaich1998](https://agentstack.voostack.com/s/sumitaich1998)
- **Installs:** 0
- **Category:** [AI & ML](https://agentstack.voostack.com/c/ai-and-ml)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [sumitaich1998](https://github.com/sumitaich1998)
- **Source:** https://github.com/sumitaich1998/jarvisvr/tree/main/skills/productivity/manage-tasks

## Install

```sh
agentstack add skill-sumitaich1998-jarvisvr-manage-tasks
```

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

## About

# Manage Tasks

Render and maintain a `todo_list` the user can check off by hand. You own the
list's contents; the widget emits toggle/select events you respond to.

## Steps

1. **Load or build the list.** Keep stable `id`s per item so toggles map back.
2. **Apply the change:** add → append an item; complete → set `done:true`;
   reprioritize → set `priority` (`low|medium|high`); remove → drop the item.
3. **Render** with `show_todo_list` (full list, with the current item states).
4. **React to interactions** (`client.interaction`, §5.11) and persist:
   - `toggle_item{item_id, done}` → update that item's `done`, `holo.update`.
   - `select_item{item_id}` → focus/expand or offer actions.
5. **Voice a short status** ("3 tasks, 1 done").

## Output

`todo_list` (props per registry.json):

```json
{ "widget_type": "todo_list",
  "transform": { "anchor": "world", "billboard": true },
  "props": { "title": "Today",
             "items": [
               { "id": "t1", "text": "Review PR #42", "done": false, "priority": "high" },
               { "id": "t2", "text": "Stretch break", "done": true, "priority": "low" },
               { "id": "t3", "text": "Prep flight test", "done": false, "priority": "medium" } ] },
  "interactions": ["tap","grab","resize","toggle","drag"] }
```

Toggle handling (incoming):

```json
{ "object_id": "O_todo", "widget_type": "todo_list", "action": "toggle",
  "element": "item_checkbox", "value": { "item_id": "t1", "done": true } }
```

→ respond with a `holo.update` carrying the updated `items` array.

## Edge cases

- **Empty list** → render with an encouraging empty state and offer to add the
  first task.
- **Vague task** → capture it verbatim; don't over-structure ("buy stuff").
- **Task with a deadline** → also offer `set-reminders`; with a focus block →
  `manage-timers` pomodoro.
- **Reordering** (`drag`) → persist the new order.
- **"Clear completed"** → drop `done:true` items and `holo.update`.

## Source & license

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

- **Author:** [sumitaich1998](https://github.com/sumitaich1998)
- **Source:** [sumitaich1998/jarvisvr](https://github.com/sumitaich1998/jarvisvr)
- **License:** MIT

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-sumitaich1998-jarvisvr-manage-tasks
- Seller: https://agentstack.voostack.com/s/sumitaich1998
- 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%.
