AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Manage Tasks

skill-sumitaich1998-jarvisvr-manage-tasks · by sumitaich1998

>-

No reviews yet
0 installs
36 views
0.0% view→install

Install

$ agentstack add skill-sumitaich1998-jarvisvr-manage-tasks

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-sumitaich1998-jarvisvr-manage-tasks)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Manage Tasks? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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 ids 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.

  1. Render with show_todo_list (full list, with the current item states).
  2. 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.
  1. Voice a short status ("3 tasks, 1 done").

Output

todo_list (props per registry.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):

{ "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.

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

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.