🎁 Get the FREE AI Skills Starter Guide β€” Subscribe β†’
BytesAgainBytesAgain
πŸ¦€ ClawHub

Task Manager

by @rare

SQLite-based task management with priority, tags, and stats. Database stored in skill directory for natural isolation.

Versionv1.1.0
Downloads3,013
TERMINAL
clawhub install task-manager

πŸ“– About This Skill


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

/data/tasks.db

Data Isolation: Each agent has their own copy of this skill β†’ natural data isolation, no configuration needed.

Usage

# Direct call
python3 /task-manager.py 

Or set alias

alias task="python3 /task-manager.py"

Commands

| Command | Description | |---------|-------------| | task add "title" [options] | Create task | | task list [options] | List tasks | | task show | Show task details | | task update [options] | Update task | | task start | Mark as in progress | | task complete | Mark as completed | | task archive | Archive task | | task delete | Delete task | | task stats | Show statistics |

Options

add:

  • --priority, -p P0/P1/P2/P3 (default: P2)
  • --tags, -t Comma-separated tags
  • --due Due date
  • --desc, -d Description
  • list:

  • --status Filter by status
  • --priority Filter by priority (comma-separated)
  • --sort priority/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 |

    πŸ’‘ Examples

    # Direct call
    python3 /task-manager.py 

    Or set alias

    alias task="python3 /task-manager.py"

    βš™οΈ Configuration

    add:

  • --priority, -p P0/P1/P2/P3 (default: P2)
  • --tags, -t Comma-separated tags
  • --due Due date
  • --desc, -d Description
  • list:

  • --status Filter by status
  • --priority Filter by priority (comma-separated)
  • --sort priority/due/created (default: created)