From task-tracking-dots
Uses dot CLI to track tasks across sessions: lists opens, marks in progress or done with reasons, creates dependencies, shows trees and searches.
npx claudepluginhub randroids-dojo/skills --plugin task-tracking-dots# Task Tracking with Dots
Use the `dot` CLI to track work items across sessions and manage dependencies. Always check open tasks, mark work in progress, and close tasks with a completion reason.
## Preflight
Confirm the `dot` CLI is available:
If `dot` is missing, install it and verify:
## Quick Reference
For full guidance, read `${CLAUDE_PLUGIN_ROOT}/SKILL.md`.Use the dot CLI to track work items across sessions and manage dependencies. Always check open tasks, mark work in progress, and close tasks with a completion reason.
Confirm the dot CLI is available:
command -v dot >/dev/null 2>&1
If dot is missing, install it and verify:
brew install joelreymont/tap/dots
dot --version
# Start of session
dot ls
dot ready
# Work on a task
dot on <id>
dot off <id> -r "What was done"
# Create dots
dot "Fix the bug"
dot add "Design API" -p 1 -d "Details"
dot add "Subtask" -P dots-1
dot add "After X" -a dots-2
# Inspect
dot show dots-1
dot tree
dot find "query"
For full guidance, read ${CLAUDE_PLUGIN_ROOT}/SKILL.md.