From agkan-skills
Use when reviewing a single icebox task to decide whether to promote it to backlog or close it.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agkan-skills:agkan-icebox-subtaskThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
A sub-workflow that reviews a single icebox task in agkan and decides whether to promote it to `backlog` or close it as no longer needed.
A sub-workflow that reviews a single icebox task in agkan and decides whether to promote it to backlog or close it as no longer needed.
agkan task get <id> --json
Evaluate the task against the following criteria:
Promote to backlog (backlog) when:
Close (closed) when:
Keep in icebox when:
If the reason for the decision is non-obvious, add context to the task body before updating status:
# First, retrieve the existing body
agkan task get <id> --json
# Write body to tmp file and update using --file to preserve newlines
cat > /tmp/agkan_body_$$.md << 'BODY'
<existing body>
<reason for decision>
BODY
agkan task update <id> --file /tmp/agkan_body_$$.md
# Promote to backlog
agkan task update <id> --status backlog
# Close as no longer needed
agkan task update <id> --status closed
# Keep in icebox — no update needed
agkan-planning nextready; always go through backlog → planning firstagkan-icebox skill)Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub gendosu/gendosu-claude-plugins --plugin agkan-skills