todos
TODO file format and operations
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
TODO file format and operations
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Calendar operations with CalDAV
Git repository management, GitLab merge requests, and GitHub pull requests
Location tracking, place recognition, visit history, and calendar attendance
Persistent memory writes — USER.md (behavioral) and the knowledge graph (facts).
Accounting operations (ledger, invoicing, transactions, work log, investment portfolio) — runs in-process via the vendored money package
Send a push notification to the user's configured ntfy device(s). One-way (bot to phone), no reply channel.
| name | todos |
| triggers | ["todo","task","checklist","reminder","done","complete"] |
| description | TODO file format and operations |
TODO files are plain text with a simple format. Each line is a task:
- [ ] Uncompleted task
- [x] Completed task
- [ ] Task with @due(2025-01-30)
- [ ] Task with @priority(high)
When reading/updating TODO files, use standard file operations:
# Read the TODO file
cat {workspace}/path/to/TODO.txt
# Add a task
echo "- [ ] New task" >> {workspace}/path/to/TODO.txt
# Edit in place (changes save directly to your workspace)