← All skills
Tencent SkillHub · Productivity

Todo Management 1.1.2

Per-workspace SQLite todo manager (./todo.db) with groups and task statuses (pending/in_progress/done/skipped), operated via {baseDir}/scripts/todo.sh for adding, listing, editing, moving, and removing entries and managing groups.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Per-workspace SQLite todo manager (./todo.db) with groups and task statuses (pending/in_progress/done/skipped), operated via {baseDir}/scripts/todo.sh for adding, listing, editing, moving, and removing entries and managing groups.

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SKILL.md, package-lock.json, package.json, pnpm-lock.yaml, scripts/todo.sh

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 11 sections Open source page

What this skill controls

A per-workspace SQLite database: Default: ./todo.db Override: TODO_DB=/path/to/todo.db All changes MUST happen through the CLI: bash {baseDir}/scripts/todo.sh ...

Statuses

pending (default), in_progress, done, skipped Default list hides done and skipped unless --all or --status=....

1) No file writing (ever)

Do NOT create or edit any files (e.g., todos.md, notes, markdown, exports). Do NOT output “filename blocks” like todos.md (...). The only persistent state is in todo.db, mutated by todo.sh.

2) Never print the todo list unless explicitly asked

If the user does NOT ask to “show/list/print my todos”, do NOT paste the list. Default behavior after mutations: one short confirmation line only.

3) Keep replies extremely short

After success: respond with ONE line, max ~5 words (translate to user’s language yourself). Do not include bullets, tables, code blocks, or tool output unless the user explicitly asked for the list/details. Allowed confirmations (English examples; translate as needed): “Done.” “Added.” “Updated.” “Removed.” “Moved.” “Renamed.” “Cleared.” “Added to the list.”

4) Ambiguity handling (the ONLY exception to rule #2)

If the user requests a destructive action but does not specify an ID (e.g., “remove the milk task”): run entry list (optionally with --group=...) show the results (minimal table) ask which ID to act on This is the only case where you may show the list without the user explicitly requesting it.

5) Group deletion safety

group remove "X" moves entries to Inbox (default). Only delete entries if the user explicitly chooses that: ask: “Move entries to Inbox (default) or delete entries too?” only then use --delete-entries.

Entries

Add: bash {baseDir}/scripts/todo.sh entry create "Buy milk" bash {baseDir}/scripts/todo.sh entry create "Ship feature X" --group="Work" --status=in_progress List (ONLY when user asks, or for ambiguity resolution): bash {baseDir}/scripts/todo.sh entry list bash {baseDir}/scripts/todo.sh entry list --group="Work" bash {baseDir}/scripts/todo.sh entry list --all bash {baseDir}/scripts/todo.sh entry list --status=done Show one entry: bash {baseDir}/scripts/todo.sh entry show 12 Edit text: bash {baseDir}/scripts/todo.sh entry edit 12 "Buy oat milk instead" Move: bash {baseDir}/scripts/todo.sh entry move 12 --group="Inbox" Change status: bash {baseDir}/scripts/todo.sh entry status 12 --status=done bash {baseDir}/scripts/todo.sh entry status 12 --status=skipped Remove: bash {baseDir}/scripts/todo.sh entry remove 12

Groups

Create / list: bash {baseDir}/scripts/todo.sh group create "Work" bash {baseDir}/scripts/todo.sh group list Rename (alias: edit): bash {baseDir}/scripts/todo.sh group rename "Work" "Work (Project A)" bash {baseDir}/scripts/todo.sh group edit "Work" "Work (Project A)" Remove: Default (move entries to Inbox): bash {baseDir}/scripts/todo.sh group remove "Work" Delete entries too (ONLY if user explicitly wants it): bash {baseDir}/scripts/todo.sh group remove "Work" --delete-entries

“Clear the list” behavior (no list printing)

To clear the todo list: run entry list --all to get IDs (do NOT paste the results) remove each ID with entry remove ID reply with ONE line: “Cleared.” If the user then asks to see the list, run entry list and show it.

Dialogue example (expected behavior)

User: "I need to buy milk, add it to my todo list" Agent: "Done." User: "Oh, and I also need to clean the room" Agent: "Added to the list." User: "Show my todos" Agent: (prints the list) User: "Remove the milk one" Agent: (lists matching tasks + asks for ID, then removes when ID is provided)

Category context

Workflow acceleration for inboxes, docs, calendars, planning, and execution loops.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Config2 Docs1 Scripts
  • SKILL.md Primary doc
  • README.md Docs
  • scripts/todo.sh Scripts
  • package-lock.json Config
  • package.json Config
  • pnpm-lock.yaml Config