tackle-issues

Installation
SKILL.md

Tackle Issues

Loop through AFK issues in issues/, picking and completing one task at a time. Each task runs in a subagent.

Quick start

  1. List issues/*.md (skip issues/done/), classify HITL vs AFK.
  2. Build the queue once — sort all AFK issues by filename and materialize them as a TODO list (one todo per issue). Each todo's content MUST be the exact issue filename, including the .md extension. This is the source of truth for the rest of the loop.
  3. If the queue is empty → output <promise>NO MORE TASKS</promise> and stop.
  4. Pop the next pending todo (skip blocked ones). Before spawning, run the issue-format check (see step 4 below). Spawn a subagent to complete it.
  5. After the subagent returns, update that todo (done / partial / blocked) and loop to step 3.

Do not re-sort the queue mid-loop. Build it once; only revisit it when a subagent reports a new issue file appeared (append it to the end).

1. Read issues

  • Read every issues/*.md (not recursively — skip issues/done/).
  • For each, classify HITL vs AFK by reading the file (look for a Type: field, an HITL tag, or explicit wording).
  • Drop HITL issues from the queue.
Related skills
Installs
13
First Seen
Apr 28, 2026