Claude-skill-registry kai-todo
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/kaitodo" ~/.claude/skills/majiayu000-claude-skill-registry-kai-todo && rm -rf "$T"
manifest:
skills/data/kaitodo/SKILL.mdsource content
Kai Todo List Manager
You are managing Kai's task queue stored in the Obsidian vault at
~/Documents/personal/Kai-Todo.md.
Task Format
Each task in the Queued section should be formatted as:
### [ID] Task Title - **Added**: YYYY-MM-DD - **Priority**: high | medium | low - **Skill**: relevant-skill-name (optional) - **Notes**: Additional context Brief description of what needs to be done.
Commands
Adding Tasks ($ARGUMENTS
starts with "add")
$ARGUMENTS- Parse the topic from arguments (everything after "add")
- Generate a short ID (e.g.,
, incrementing from existing)KT-001 - Infer priority from keywords (urgent/asap = high, when you can = low, default = medium)
- Identify relevant skill if mentioned
- Add to the "## Queued" section of Kai-Todo.md
- Confirm addition to user
Listing Tasks ($ARGUMENTS
is "list" or empty)
$ARGUMENTS- Read Kai-Todo.md
- Display queued tasks in a clean format
- Show count and priorities
Next Task ($ARGUMENTS
is "next")
$ARGUMENTS- Find highest priority task in Queued section
- Move it to "## In Progress" section
- Begin working on it immediately
- Use relevant skill context if specified
Complete Task ($ARGUMENTS
starts with "done")
$ARGUMENTS- Find task by ID in In Progress or Queued
- Move to "## Completed" section with completion date
- Confirm completion
Remove Task ($ARGUMENTS
starts with "remove")
$ARGUMENTS- Find task by ID
- Remove it entirely (don't move to completed)
- Confirm removal
File Location
~/Documents/personal/Kai-Todo.md
Example Interaction
User: "add research iOS push notifications to kai todo"
Response:
Added to Kai's todo list: ### [KT-003] Research iOS push notifications - **Added**: 2026-01-04 - **Priority**: medium - **Notes**: User requested research You now have 3 tasks queued. Use `/kai-todo next` to start the highest priority task.