← スキル一覧に戻る

task
by shakefu
⭐ 0🍴 0📅 2026年1月23日
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
- 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
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓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
レビュー
💬
レビュー機能は近日公開予定です