askill
execute-task-direct

execute-task-directSafety 90Repository

Use when starting a development session to pick the highest priority Todo task from agkan, implement it directly without PR/branch, and mark it done.

0 stars
1.2k downloads
Updated 3/10/2026

Package Files

Loading files...
SKILL.md

execute-task-direct

Overview

agkanのTodoタスクから優先度最高の1件を選び、ブランチ・PRを作成せずに直接実装して完了させるワークフロー。


ワークフロー

1. ブランチを最新化

git pull -p

2. Todoタスクを取得

agkan task list --status ready --json

3. 優先度の高いタスクを1件選択

以下の基準で降順に評価し、最上位の1件を選ぶ:

重要度(importance フィールド):

高 > 中 > 低

タグ(同重要度の場合に参照):

bug > security > improvement > test > performance > refactor > docs

子タスクがある場合・ブロッカータスクがある場合 対象の子タスク・ブロッカータスクを優先して選ぶ(重要度・タグの基準は同じ)

4. タスクをin_progressに更新

agkan task update <id> status in_progress

5. 実装・完了

Task ツール(general-purpose サブエージェント) を使って実装する。 Skill("execute-subtask-direct") は使わず、サブエージェントに SKILL.md を読み込ませる形で呼び出す:

Task(
  subagent_type="general-purpose",
  description="Implement task #<id>",
  prompt="""
以下のタスクを実装してください。

load /key-guidelines

## タスク情報
- ID: <id>
- タイトル: <title>
- 本文: <body>

## 手順
.claude/skills/execute-subtask-direct/SKILL.md を読み込み、その手順に従って実装してください。
"""
)

6. セッション終了 or 繰り返し

ユーザによる終了指示がない場合は、次のタスクを選択して同様のワークフロー1から繰り返す。


優先度判定フロー

Todoタスク一覧
    ↓
重要度でソート(高→中→低)
    ↓
同じ重要度が複数?
   Yes → タグ優先度でソート(bug→security→...→docs)
   No  → 最上位を選択
    ↓
1件を選択して着手

タグ優先度一覧

優先度タグ名
1bug
2security
3improvement
4test
5performance
6refactor
7docs

注意事項

  • 必ず1件のみ選択する(複数同時着手しない)
  • タスクが存在しない場合はセッションを終了する
  • ブランチ・PRは作成しない(カレントブランチに直接コミット)
  • 実装完了後にタスクをdoneに更新する

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

58/100Analyzed 2/24/2026

Skill for executing Todo tasks directly without branches/PRs. Well-structured with clear steps, priority decision flowchart, and tag ranking. However, highly specific to the agkan tool and project workflow, limiting reusability. Has good actionability with commands and structured guidance. Contains appropriate tags and is in a dedicated skills folder. Mixed Japanese/English content is clear but may limit broader appeal."

90
75
30
70
85

Metadata

Licenseunknown
Version-
Updated3/10/2026
Publishergendosu

Tags

llmpromptingsecuritytesting