tracking-todos/SKILL.md
Maintain a structured task list for the current session. Use proactively when a request requires 3+ distinct steps, the user provides multiple items, or complex work benefits from explicit progress tracking. Storage persists via Muninn config across container death. Adapted from Claude Code's TodoWrite tool.
npx skillsauth add oaustegard/claude-skills tracking-todosInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Maintain a structured, persistent task list while working through multi-step requests. Track progress explicitly, mark completion honestly, and make the plan visible to Oskar.
Use proactively when:
Skip when:
When in doubt, use it. Being explicit about multi-step plans makes failure modes visible.
Each todo has exactly three string fields:
content — imperative form ("Run tests", "Fix auth bug")status — one of: pending, in_progress, completedactiveForm — present continuous ("Running tests", "Fixing auth bug")Both content and activeForm are required for every todo. The activeForm is what gets shown while a task is executing.
from todos import get_todos, write_todos, abandon, render
# Read current list
todos = get_todos()
# Replace entire list (Claude Code semantics — one call, whole list)
write_todos([
{"content": "Fetch issue body", "status": "in_progress", "activeForm": "Fetching issue body"},
{"content": "Draft fix plan", "status": "pending", "activeForm": "Drafting fix plan"},
{"content": "Implement and test", "status": "pending", "activeForm": "Implementing and testing"},
])
# Display to Oskar
print(render())
# Discard remaining todos when starting fresh unrelated work
abandon()
write_todos() validates schema and that at most one item is in_progress. When every item is completed, it auto-clears the list (matches Claude Code behavior — done-state is empty-state).
One in_progress at a time, strictly. Before starting work on a task, set it to in_progress. Never have two in_progress items simultaneously. The validator enforces this.
Mark complete IMMEDIATELY. Update to completed the moment the work is actually done. Don't batch completions at the end — that defeats the tracking purpose and erases information about when things were finished.
Only mark complete if FULLY done. If tests fail, if the implementation is partial, if you hit an unresolved error — keep the task in_progress and add a new task describing the blocker. Lying about completion status is the failure mode this tool exists to prevent.
Remove irrelevant tasks. If a task becomes obsolete (scope change, wrong approach), remove it entirely from the list rather than marking it done. The list should reflect actual remaining work.
Break complex tasks down. Vague items like "implement the feature" defeat the point. Prefer specific actions: "Add validator to route handler", "Write 3 test cases for edge inputs", "Run existing test suite".
Todos live in Muninn's config store under key active-todos (category=ops). This means:
If you start a conversation and find stale todos that don't apply, call abandon() to clear them.
Single writer assumed. The storage uses read-modify-write without locking. If a scheduled CCotw task and a live conversation both call write_todos() concurrently, the second write wins. Muninn runs single-threaded within a conversation, and scheduled tasks (perch, zeitgeist) don't use this skill, so the assumption holds in practice. Don't use this skill from concurrent agents without adding a lock.
Global scope is intentional, not per-conversation. Unfinished work leaks into the next conversation by design — it's a nudge that something was left open. If stale todos from prior work become noise, call abandon() to clear.
Replace-whole-list API vs delta updates. Matches Claude Code's TodoWrite exactly. The LLM failure mode (forgetting items when rewriting the full list) is mitigated by the prompt, not by the API shape. If omissions become a pattern, re-render the current list before composing the new one.
When the plan is substantive, show it to Oskar once after creating it, then rely on inline mentions rather than re-rendering the full list on every update. Noise defeats the signal.
▶ Fetching issue body
☐ Drafting fix plan
☐ Implementing and testing
Good use case — multi-file refactor:
write_todos([
{"content": "Find all call sites of getCwd", "status": "in_progress", "activeForm": "Finding all call sites of getCwd"},
{"content": "Rename occurrences in src/utils/", "status": "pending", "activeForm": "Renaming occurrences in src/utils/"},
{"content": "Rename occurrences in src/agents/", "status": "pending", "activeForm": "Renaming occurrences in src/agents/"},
{"content": "Run test suite", "status": "pending", "activeForm": "Running test suite"},
])
Bad use case — should not use:
User: "What's the current time in Tokyo?"
→ Single fact lookup. Skip todos.
Mid-work update (after finishing step 1, hitting a blocker in step 2):
write_todos([
{"content": "Find all call sites of getCwd", "status": "completed", "activeForm": "Finding all call sites of getCwd"},
{"content": "Rename occurrences in src/utils/", "status": "completed", "activeForm": "Renaming occurrences in src/utils/"},
{"content": "Resolve type error in AgentContext after rename", "status": "in_progress", "activeForm": "Resolving type error in AgentContext after rename"},
{"content": "Rename occurrences in src/agents/", "status": "pending", "activeForm": "Renaming occurrences in src/agents/"},
{"content": "Run test suite", "status": "pending", "activeForm": "Running test suite"},
])
Note: the blocker became a new task rather than marking step 3 complete.
development
Write effective instructions for Claude: project instructions, standalone prompts, and skill content. Use when users need help writing prompts, setting up project instructions, choosing between instruction formats, or improving how they communicate with Claude. Covers writing principles, model-aware calibration, and format selection. For building and testing complete skills, use skill-creator instead.
data-ai
Discover and load skills on demand from /mnt/skills/user/. Use when you need a capability but don't know which skill provides it, when the boot-emitted skill list is names-only and you need a full description, or when you want to list the catalog. Verbs are list (names only), search (rank by name/description match against a query), and show (emit the full SKILL.md for a named skill).
documentation
Reads the visual content of slides, pages, and images the way a human would, not just their embedded text. Use when a PPTX or PDF has image slides, screenshots, charts, scanned figures, or flattened-to-image layouts that the built-in pptx/pdf skills read as empty; when asked to transcribe, describe, OCR, or extract what is shown in an image, slide deck, or document page; or when embedded-text extraction returned little or nothing from a visually rich file. Triggers on 'read this deck', 'what's on these slides', 'transcribe', 'OCR', 'extract text from image', 'describe this chart/diagram', .pptx/.pdf/.png/.jpg with visual content.
development
Portrait Mode for SVGs — foveated vectorization with 4-zone selective detail. Combines vision annotations, MediaPipe segmentation/landmarks, and optional saliency. Like phone portrait mode, but vectorized. Use when vectorizing a portrait or photo where subject detail should outrank background detail.