From agkan-skills
Use when reviewing icebox tasks to decide whether to promote them to backlog or close them as no longer needed.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agkan-skills:agkan-iceboxThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
A workflow to review `icebox` tasks and decide whether to promote each one to `backlog` or close it.
A workflow to review icebox tasks and decide whether to promote each one to backlog or close it.
Icebox definition: Tasks that are ideas or candidates not yet ready for planning. They have unclear requirements, are on hold pending external factors, or are low-priority items that may be addressed in the future.
agkan task list --status icebox --json
For each task, use the Task tool (general-purpose sub-agent) to review.
Do not use Skill("agkan-icebox-subtask"). Instead, invoke it by having the sub-agent read the SKILL.md file:
Task(
subagent_type="general-purpose",
description="Review icebox task #<id>",
prompt="""
Please review the following icebox task.
## Task Information
- ID: <id>
- Title: <title>
- Body: <body>
## Procedure
Read .claude/skills/agkan-icebox-subtask/SKILL.md and follow its procedures to review.
"""
)
If a task ID is specified by the user, retrieve and review only that target task:
agkan task get <id> --json
Then delegate only that single task to a sub-agent using the same Task call format above.
After the sub-agent completes, re-fetch the icebox task list to pick up any tasks added during processing:
agkan task list --status icebox --json
If there is no instruction to end from the user and icebox tasks remain, select the next task and repeat from step 2.
If no icebox tasks remain, end the session.
Retrieve icebox tasks
↓
Delegate one task to sub-agent
↓
Sub-agent reviews and makes decision
- Requirements now clear? → Promote to backlog
- No longer needed / superseded → Close
- Still unclear / waiting → Keep in icebox
↓
Move to next task (repeat until all are done)
agkan-planning nextready; always go through backlog → planning firstnpx claudepluginhub gendosu/gendosu-claude-plugins --plugin agkan-skillsGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.