Agent skill
task
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/task
SKILL.md
Task Management
Manage tasks in .contextium/tasks.json.
Commands
Based on $ARGUMENTS:
task create <id> <description>
Create a new task:
# Read current tasks
cat .contextium/tasks.json
# Add new task using jq (or edit manually)
task complete <id>
Mark a task as completed.
task list
Show all tasks and their status.
task status
Show current task and progress summary.
Task Structure
Each task in tasks.json:
{
"id": "unique-task-id",
"description": "What needs to be done",
"status": "pending|in_progress|completed",
"priority": "low|normal|high",
"scope": ["src/path/*", "tests/path/*"],
"dependencies": ["other-task-id"],
"created": "2024-01-15T10:00:00Z",
"completed": null
}
Workflow
- Create tasks when starting new work
- Set scope to define which files/modules
- Update status as you work
- Complete tasks when done and verified
Integration
Tasks integrate with:
- Task Determiner - Selects next task automatically
- Context Fetcher - Loads context based on task scope
- Harness Pattern - Works with
claude-progress.txt
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?