agkan-run-direct
Installation
SKILL.md
agkan-run-direct
Overview
A workflow to select the highest priority ready task from agkan, implement it directly without creating a branch or PR, and mark it as done.
Workflow
0. Fetch Config
Retrieve the agkan configuration and extract model/effort settings for the sub-agent:
CONFIG=$(agkan config get --json 2>/dev/null || echo '{}')
RUN_MODEL=$(echo "$CONFIG" | jq -r '.config.models.run.model // "sonnet"')
RUN_EFFORT=$(echo "$CONFIG" | jq -r '.config.models.run.effort // "high"')