Task Manager

Manage project tasks. Create, list, update, and track dependencies of tasks.

majiayu000 Updated 567 repo stars

File contents

Task Manager

Use this skill to manage the project's task documentation in docs/tasks/.

Create a Task

python3 scripts/tasks.py create "Task Title" --status pending --priority high --type task --estimate "2h"

List Tasks

# List all pending tasks
python3 scripts/tasks.py list --status pending

# List tasks in a specific sprint
python3 scripts/tasks.py list --sprint "Sprint 1"

Update a Task

python3 scripts/tasks.py update TASK-ID --status in_progress

Manage Dependencies

python3 scripts/tasks.py link TASK-A TASK-B  # A depends on B
python3 scripts/tasks.py unlink TASK-A TASK-B

View Task Details

python3 scripts/tasks.py show TASK-ID

Get Next Task Recommendation

python3 scripts/tasks.py next

majiayu000/claude-skill-registry-data/tree/main/productivity/task-manager commit 1e44d79bb2

Frequently asked questions

npx skillmds@latest add majiayu000/task-manager-3