← 返回
未分类

simple-todo-list

A simple todo list skill for managing personal tasks. This skill should be used when users want to add, view, complete, or delete todo items. Triggers include phrases like "add a todo", "show my todos", "mark as done", "delete todo", or any task management requests.
A simple todo list skill for managing personal tasks. This skill should be used when users want to add, view, complete, or delete todo items. Triggers include phrases like "add a todo", "show my todos", "mark as done", "delete todo", or any task management requests.
user_7a656710
未分类 community v1.0.0 1 版本 100000 Key: 无需
★ 0
Stars
📥 54
下载
💾 0
安装
1
版本
#latest

概述

Simple Todo List

A lightweight todo list management skill using local JSON file storage.

Storage

  • Todo data is stored in ~/.workbuddy/todos.json
  • Each todo item contains: id, content, completed, created_at

Data Structure

{
  "todos": [
    {
      "id": 1,
      "content": "Buy groceries",
      "completed": false,
      "created_at": "2026-05-17T10:00:00"
    }
  ]
}

Usage

When the user asks to manage todos, use the scripts in scripts/todo.py:

Add a Todo

python scripts/todo.py add "Your todo content here"

List Todos

python scripts/todo.py list

Complete a Todo

python scripts/todo.py done <id>

Delete a Todo

python scripts/todo.py delete <id>

Clear Completed Todos

python scripts/todo.py clear

Response Format

When showing todos to the user, format as a clean markdown list:

  • Pending todos: [ ] with content
  • Completed todos: [x] with content (can use strikethrough)
  • Show the ID for reference when completing/deleting

Example:

📋 My Todos:

[ ] 1. Buy groceries
[ ] 2. Finish report
[x] 3. Call mom (completed)

Total: 3 | Pending: 2 | Completed: 1

版本历史

共 1 个版本

  • v1.0.0 Initial release 当前
    2026-05-18 15:26 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

life-service

healthcheck

stellarhold170nt
使用 JSON 文件存储追踪饮水和睡眠
★ 11 📥 30,182
life-service

Sonoscli

steipete
控制Sonos音箱(发现/状态/播放/音量/分组)
★ 56 📥 85,204
life-service

Caldav Calendar

asleep123
使用 vdirsyncer + khal 同步并查询 CalDAV 日历(iCloud、Google、Fastmail、Nextcloud 等)。适用于 Linux。
★ 244 📥 30,668