What problem does it solve? Running an autonomous coding agent on a schedule requires deciding, on every fire, what to work on: an open agent PR needing reconciliation, a paused issue to resume, or the next prioritized backlog item. Doing this triage by hand each time is slow and error-prone. ## Core Features & Use Cases - One-call triage: A single read-only script evaluates the concurrency lock, open PRs needing attention (conflicts, AFK:revise hand-backs, incomplete bot tails, docs-only merges, Dependabot bumps), paused issues, and the project backlog pick. - Priority-aware picking: Selects the highest-Priority, oldest AFK-labeled issue from the Smart Smoker V2 GitHub Project with native blockedBy dependencies resolved and no human assignee. - Routing and dispatch: Resumes paused work preserving its branch, routes wayfinder Decision tickets to /afk-resolve, merges docs-only and Dependabot PRs through validated gate commands, and dispatches everything else to /afk-dispatch. - Use Case: A cron-fired Claude routine runs /afk-pickup every window; it reconciles a conflicting PR if one exists, otherwise picks issue #142 (P0, unblocked) and spawns the implementation team, opening a PR on success. ## Quick Start Run /afk-pickup to triage the repository and autonomously pick up the next eligible GitHub issue, or use /afk-pickup --dry-run to preview the pick without mutating anything.