Initial commit

This commit is contained in:
Zhongwei Li
2025-11-30 08:41:13 +08:00
commit 3e9fe41aa3
14 changed files with 675 additions and 0 deletions

23
skills/tasks/SKILL.md Normal file
View File

@@ -0,0 +1,23 @@
---
name: markdown-tasks
description: Work with markdown-based task lists in .llm/todo.md files. Use when managing tasks, working with todo lists, extracting incomplete tasks, marking tasks complete, or implementing tasks from a task list.
---
# Markdown Task Management
This skill enables working with markdown task lists stored in `.llm/todo.md` at the repository root.
See [shared/task-format.md](../../shared/task-format.md) for task format and location.
## Scripts
| Script | Purpose | Documentation |
| ------------------ | ------------------------ | --------------------------------------------------------- |
| `task_get.py` | Extract first incomplete | [task-get.md](../../shared/scripts/task-get.md) |
| `task_add.py` | Add new task | [task-add.md](../../shared/scripts/task-add.md) |
| `task_complete.py` | Mark task done | [task-complete.md](../../shared/scripts/task-complete.md) |
| `task_archive.py` | Archive completed list | [task-archive.md](../../shared/scripts/task-archive.md) |
## Dependencies
These scripts require Python 3 with standard library only (no external packages needed).