From sundial-org-awesome-openclaw-skills-4
Maintains persistent TODO.md in workspace root for adding, viewing, marking done/removing tasks by priority via bash scripts. Triggers on todo commands and heartbeats stale items.
npx claudepluginhub joshuarweaver/cascade-ai-ml-agents-misc-2 --plugin sundial-org-awesome-openclaw-skills-4This skill uses the workspace's default tool permissions.
Maintain a persistent TODO.md scratch pad in the workspace.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
Maintain a persistent TODO.md scratch pad in the workspace.
TODO.md in workspace root (e.g., /Users/nuthome/nuri-bot/TODO.md)
When user asks: "what's on the TODO?", "show TODO", "pending tasks?"
cat TODO.md
Then summarize the items by priority.
When user says: "add X to TODO", "TODO: X", "remember to X"
bash skills/todo-tracker/scripts/todo.sh add "<priority>" "<item>"
Priorities: high, medium, low (default: medium)
Examples:
bash skills/todo-tracker/scripts/todo.sh add high "Ingest low-code docs"
bash skills/todo-tracker/scripts/todo.sh add medium "Set up Zendesk escalation"
bash skills/todo-tracker/scripts/todo.sh add low "Add user memory feature"
When user says: "mark X done", "completed X", "finished X"
bash skills/todo-tracker/scripts/todo.sh done "<item-pattern>"
Matches partial text. Moves item to โ Done section with date.
When user says: "remove X from TODO", "delete X from TODO"
bash skills/todo-tracker/scripts/todo.sh remove "<item-pattern>"
bash skills/todo-tracker/scripts/todo.sh list high
bash skills/todo-tracker/scripts/todo.sh list medium
bash skills/todo-tracker/scripts/todo.sh list low
On heartbeat, check TODO.md:
Example heartbeat check:
bash skills/todo-tracker/scripts/todo.sh summary
# TODO - Nuri Scratch Pad
*Last updated: 2026-01-17*
## ๐ด High Priority
- [ ] Item one (added: 2026-01-17)
- [ ] Item two (added: 2026-01-15) โ ๏ธ STALE
## ๐ก Medium Priority
- [ ] Item three (added: 2026-01-17)
## ๐ข Nice to Have
- [ ] Item four (added: 2026-01-17)
## โ
Done
- [x] Completed item (done: 2026-01-17)
When showing TODO:
๐ **TODO List** (3 items)
๐ด **High Priority** (1)
โข Ingest low-code docs
๐ก **Medium Priority** (1)
โข Zendesk escalation from Discord
๐ข **Nice to Have** (1)
โข User conversation memory
โ ๏ธ 1 item is stale (>7 days old)