スキル一覧に戻る
shakefu

determine-task

by shakefu

0🍴 0📅 2026年1月23日
GitHubで見るManusで実行

SKILL.md


name: determine-task description: Determine current task from state files and git context allowed-tools: Bash, Read

Task Determination

Analyze session state to determine what task to work on.

Execution

Run the task determiner agent:

./agents/task-determiner.sh

Analysis Performed

  1. Git History - Recent commits, uncommitted changes
  2. Progress File - claude-progress.txt if present (harness pattern)
  3. Branch Name - Extract hints from feature/, fix/, claude/* branches
  4. Tasks File - .contextium/tasks.json for explicit task list

Task Selection Logic

  1. Find first task with status != "completed"
  2. Consider task dependencies
  3. Update .contextium/tasks.json with current task

Output

=== RECOMMENDED TASK ===
Task: <task-id>
Reason: <selection rationale>
Prerequisites: <any setup needed>
Scope: <files/modules in scope>
========================

Creating Tasks

If no tasks exist, create them:

# Edit tasks.json directly or use the task management skill
cat > .contextium/tasks.json << 'EOF'
{
  "version": "1.0.0",
  "tasks": [
    {
      "id": "implement-feature-x",
      "description": "Implement feature X",
      "status": "pending",
      "priority": "high",
      "scope": ["src/features/x/*"]
    }
  ],
  "current": null,
  "history": []
}
EOF

スコア

総合スコア

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

レビュー

💬

レビュー機能は近日公開予定です