Back to list
shakefu

task

by shakefu

0🍴 0📅 Jan 23, 2026

SKILL.md


name: task description: Manage Contextium tasks - create, update, complete, and list tasks allowed-tools: Bash, Read, Write, Edit argument-hint: [create|complete|list|status] [task-id]

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

  1. Create tasks when starting new work
  2. Set scope to define which files/modules
  3. Update status as you work
  4. 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

Score

Total Score

50/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon