todo

Manage tasks in a local todo.json file with add, list, and complete operations.

270|65|Updated Feb 2, 2026
One-click install
npx skills add https://github.com/sepivip/SeekerClaw --skill todo-sepivip
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: todo
Source: https://github.com/sepivip/SeekerClaw/tree/main/app/src/main/assets/default-skills/todo
Command: npx skills add https://github.com/sepivip/SeekerClaw --skill todo-sepivip

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Manage tasks and to-do lists without manual note-keeping by storing state locally in a JSON file.

Core Features & Use Cases

  • Add tasks to a persistent to-do list stored in workspace/todo.json.
  • List current tasks with status indicators (undone or done) and timestamps.
  • Mark tasks as completed and clear completed tasks when needed.

Quick Start

Add a task to my todo list by describing the task.

Frequently Asked Questions about todo

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I manage tasks and to-do lists stored in a local JSON file?

You can manage tasks stored in a local JSON file by adding new items, listing current tasks with status indicators, and marking tasks as completed within a workspace-specific todo.json file.

Can I track to-do list state without manual note-keeping?

Yes, you can track to-do list state without manual note-keeping by storing task objects with fields for id, task, done, and created in a persistent local JSON file.

How do I mark tasks as completed and clear them from my todo list?

To mark tasks as completed and clear them from your todo list, the Skill updates the done field in the todo.json file and writes deterministic updates to remove cleared entries.

Does this task management approach require external dependencies?

No, this task management approach requires no external dependencies, relying only on read and write access to a workspace-specific todo.json file for local storage.

What is the best way to list current tasks with status indicators?

The best way to list current tasks with status indicators is to read the workspace todo.json file, which displays each task with undone or done statuses and timestamps.

Are there limitations to using local storage for task management?

A limitation of using local storage for task management is that task state is confined to a specific workspace todo.json file, meaning data is not synced across different environments.