todo-tracker
Persistent TODO scratch pad for tracking tasks across sessions. Use when user says "add to TODO", "what's on the TODO", "mark X done", "show TODO list", "remove from TODO", or asks about pending tasks. Also triggers on heartbeat to remind about stale items.
What this skill does
# TODO Tracker Maintain a persistent TODO.md scratch pad in the workspace. ## File Location `TODO.md` in workspace root (e.g., `/Users/nuthome/nuri-bot/TODO.md`) ## Commands ### View TODO When user asks: "what's on the TODO?", "show TODO", "pending tasks?" ```bash cat TODO.md ``` Then summarize the items by priority. ### Add Item When user says: "add X to TODO", "TODO: X", "remember to X" ```bash bash skills/todo-tracker/scripts/todo.sh add "<priority>" "<item>" ``` Priorities: `high`, `medium`, `low` (default: medium) Examples: ```bash 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" ``` ### Mark Done When user says: "mark X done", "completed X", "finished X" ```bash bash skills/todo-tracker/scripts/todo.sh done "<item-pattern>" ``` Matches partial text. Moves item to โ Done section with date. ### Remove Item When user says: "remove X from TODO", "delete X from TODO" ```bash bash skills/todo-tracker/scripts/todo.sh remove "<item-pattern>" ``` ### List by Priority ```bash 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 ``` ## Heartbeat Integration On heartbeat, check TODO.md: 1. Count high-priority items 2. Check for stale items (added >7 days ago) 3. If items exist, include brief summary in heartbeat response Example heartbeat check: ```bash bash skills/todo-tracker/scripts/todo.sh summary ``` ## TODO.md Format ```markdown # 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) ``` ## Response Format 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) ```
Related in Productivity
gitea-workflow
IncludedOrchestrate agile development workflows for Gitea repositories using the tea CLI. Use when working with Gitea-hosted repos and asking to 'run the workflow', 'continue working', 'what's next', 'complete the task cycle', 'start my day', 'end the sprint', 'implement the next task', or wanting guided step-by-step development assistance. Keywords: workflow, orchestrate, agile, task cycle, sprint, daily, implement, review, PR, standup, retrospective, gitea, tea.
microsoft-graph-gateway
IncludedRoute Microsoft Graph work in this workspace. Use when users want to read or write Outlook mail, calendar events, contacts, OneDrive or SharePoint files, Teams, Planner, To Do, users, groups, directory data, or arbitrary Microsoft Graph endpoints from VS Code. Prefer WorkIQ for common read scenarios. Use Microsoft Graph for write actions and gap-read scenarios that need exact Graph properties, filters, permissions, or endpoints.
copilotkit
IncludedUse when building with CopilotKit โ setup, development, integrations, debugging, upgrading, or contributing. Routes to the appropriate specialized skill based on the task.
wordly-wisdom
IncludedProvides calibrated decision analysis using Charlie Munger-style multiple mental models, inversion, incentive mapping, circle-of-competence checks, misjudgment audits, second-order effects, and forecast updates. Use when the user asks for an oracle take, a hard call, a decision memo, a premortem, an outside view, a red-team, a sanity-check, what am I missing, think this through, or wants a strategy, hire, investment, plan, product, partnership, or major life choice analysed. Avoid for simple factual lookups or time-sensitive legal, medical, or market questions without fresh evidence.
swain-session
IncludedSession management and project status dashboard. Owns the full session lifecycle (start/work/close/resume), focus lane, bookmarks, worktree detection, and tab naming. Also serves as the project status dashboard โ shows active epics, progress, actionable next steps, blocked items, tasks, GitHub issues, and recommendations. Worktree creation is deferred to swain-do task dispatch (SPEC-195). Triggers on: 'session', 'status', 'what's next', 'dashboard', 'overview', 'where are we', 'what should I work on', 'show me priorities', 'bookmark', 'focus on', 'session info'.
gandi
IncludedComprehensive Gandi domain registrar integration for domain and DNS management. Register and manage domains, create/update/delete DNS records (A, AAAA, CNAME, MX, TXT, SRV, and more), configure email forwarding and aliases, check SSL certificate status, create DNS snapshots for safe rollback, bulk update zone files, and monitor domain expiration. Supports multi-domain management, zone file import/export, and automated DNS backups. Includes both read-only and destructive operations with safety controls.