🧪 Skills
Task Manager
SQLite-based task management with priority, tags, and stats. Database stored in skill directory for natural isolation.
v1.1.0
Description
name: task-manager description: SQLite-based task management with priority, tags, and stats. Database stored in skill directory for natural isolation. version: 1.1.0 type: component metadata: clawdbot: emoji: "📋" requires: bins: [python3] files: [task-manager.py]
Task Manager
SQLite-powered task management with CRUD, priorities, tags, and statistics.
Database Location
<skill-dir>/data/tasks.db
Data Isolation: Each agent has their own copy of this skill → natural data isolation, no configuration needed.
Usage
# Direct call
python3 <skill-dir>/task-manager.py <command>
# Or set alias
alias task="python3 <skill-dir>/task-manager.py"
Commands
| Command | Description |
|---|---|
task add "title" [options] |
Create task |
task list [options] |
List tasks |
task show <id> |
Show task details |
task update <id> [options] |
Update task |
task start <id> |
Mark as in progress |
task complete <id> |
Mark as completed |
task archive <id> |
Archive task |
task delete <id> |
Delete task |
task stats |
Show statistics |
Options
add:
--priority, -pP0/P1/P2/P3 (default: P2)--tags, -tComma-separated tags--dueDue date--desc, -dDescription
list:
--statusFilter by status--priorityFilter by priority (comma-separated)--sortpriority/due/created (default: created)
Priority Levels
| Level | Meaning | Icon |
|---|---|---|
| P0 | Urgent | 🔴 |
| P1 | High | 🟠 |
| P2 | Normal | 🟡 |
| P3 | Low | 🟢 |
Status
| Status | Icon | Description |
|---|---|---|
| pending | ⏳ | Todo |
| in_progress | 🔄 | In progress |
| completed | ✅ | Done |
| archived | 📁 | Archived |
Reviews (0)
Sign in to write a review.
No reviews yet. Be the first to review!
Comments (0)
No comments yet. Be the first to share your thoughts!