Project management skills for AI agents — meeting notes, action item tracking, and task management.
| Skill | Command | Description |
|---|---|---|
| meeting-transcript-notes | /meeting-transcript-notes |
Transform meeting transcripts into structured notes |
| action-item-extractor | /action-item-extractor |
Extract action items from meeting notes into todos.md |
| task-tracker | /task-tracker |
Manage todos.md — list, complete, query, and alert on tasks |
meeting transcript
↓
meeting-transcript-notes → structured notes (summary, decisions, action items)
↓
action-item-extractor → todos.md
↓
task-tracker (list / complete / alert)
Install all skills:
npx skills add https://github.com/yoochankim/task-managerInstall a single skill:
npx skills add https://github.com/yoochankim/task-manager --skill meeting-transcript-notes
npx skills add https://github.com/yoochankim/task-manager --skill action-item-extractor
npx skills add https://github.com/yoochankim/task-manager --skill task-tracker~/
├── meeting-notes/
│ ├── inbox/ ← drop transcripts here
│ ├── summary/ ← generated notes saved here
│ └── archive/ ← processed originals moved here
└── todos.md ← managed by action-item-extractor & task-tracker
Built and tested on OpenClaw and Claude Code. Also compatible with other AI agents that support the skills format.
| Model | Provider | Best For |
|---|---|---|
| Claude Opus 4.6 | Anthropic | Complex tasks, best quality |
| Claude Sonnet 4.6 | Anthropic | Daily use, recommended default |
| Qwen 32B | Ollama | Local or budget option |