todo-tracker — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited todo-tracker (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
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.mdThen 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 lowOn 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)~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.