Agent skill
task-manager
Manage project tasks. Create, list, update, and track dependencies of tasks.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/productivity/task-manager-julwrites-agent-harness
SKILL.md
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
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?