coreylyn/skills · Archived

dispatch-tickets

Analyze open tickets/issues, dependencies, docs, and worktree state; dispatch only currently unblocked implementation tickets to subagents.

First seen Jul 9, 2026

Installation

$ npx skills add coreylyn/skills --skill dispatch-tickets

Summary

  • Analyze open tickets/issues, dependencies, docs, and worktree state; dispatch only currently unblocked implementation tickets to subagents.
  • Use when the user asks to triage ready ticket work for AFK agents, fan out implementation, start independent ticket branches/worktrees, or run the next safe batch from a tracker.

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from coreylyn/skills.

npx skills add coreylyn/skills

Browse all from coreylyn/skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 5
License MIT
Default branch main
Open issues 0
Status Archived

Skill metadata

Parsed from SKILL.md frontmatter.

Declared agents claude-code

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 5,763 B
  • docs SUMMARY.md 342 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 18 installs

SKILL.md

Dispatch Tickets

Contract

Run one safe round: classify every candidate, dispatch every safe implementation ticket, collect all results, verify handoffs, and report a ledger. Do not merge PRs/MRs, move drafts to ready, or loop; use the autopilot-tickets skill for those responsibilities.

Set no skill-level concurrency cap; native capacity limits simultaneous calls only.

Select Issues

Use the configured tracker and forge.

  1. Run git status --short --branch; resolve the repo root; identify base/current branches, remotes, tracker, and forge.
  2. Read AGENTS.md, CLAUDE.md, CONTEXT.md, README.md, and relevant docs.
  3. Query every open ticket; read labels, milestones, criteria, links, dependencies, and recent comments.
  4. Classify every open implementation candidate as selected or unselected with a reason. A parent Spec/PRD/map link supplies scope only: its open state is not a dependency. Treat only unfinished implementation-level dependencies and explicit decision/review/policy gates as blockers; treat dirty files that overlap expected edits as a dispatch risk unless clearly unrelated.

Dispatch an issue only when all are true:

  • Open implementation work with concrete acceptance criteria or an unambiguous outcome.
  • Not blocked, duplicate, stale, closed, design-only, discussion-only, needs-info, needs-triage, ready-for-human, or wontfix.
  • No unresolved product/design decision, context gap, conflicting comments, or unfinished dependency.
  • Isolatable to one branch/worktree.
  • Repo docs suffice for AFK execution.
  • Requires no secrets, privileged production access, destructive data changes, or unresolved policy choices.

When unfinished foundational/schema/API/architecture implementation work blocks others, dispatch only it. Do not select a design-only parent merely because it is open.

Dispatch

Action: dispatch one subagent per selected issue. Prose replies and ordinary chat threads are not dispatch.

Use this platform-neutral form (map to the harness's real tool — Task/Agent, spawnagent, task, invokeagent, etc.):

Subagent (general-purpose):
  description: "Implement <issue-id>: <short title>"
  prompt: |
    <Worker Contract below, filled in>

Rules:

  • One subagent per issue; independent issues may be dispatched in the same turn (parallel).
  • Do not invent tool names. If the harness has no multi-agent/subagent capability, stop and report that instead of faking dispatch.
  • Prefer an explicit model only when the harness supports it; otherwise omit.
  • Record agent id (if returned), issue id, branch, worktree, and expected draft PR/MR.

For each selected issue:

  1. Resolve <project-root> with git rev-parse --show-toplevel; choose an issue-id/slug branch with no path separators and a Windows-safe name.
  2. Create its worktree only at <project-root>/.claude/worktrees/<branch-name>; create .worktrees if needed and never reuse a non-empty path owned by another task.
  3. Confirm the worktree starts from the correct base branch and contains no unrelated user changes.
  4. Dispatch one worker per issue with the filled Worker Contract.

During autopilot, the parent may repair loop-created work within the same ticket scope when a worker or targeted follow-up fails. Otherwise, parent implementation requires an explicit user fallback request.

Worker Contract

Add repo commands, issue links, and acceptance criteria to this fixed contract:

You are assigned exactly one issue: <issue id and title>.
Worktree: <absolute path>; branch: <branch>.
Read the guidance and issue; inspect the tree and code. Change only its acceptance scope and preserve unrelated work. Report NEEDS_CONTEXT or BLOCKED instead of guessing when ambiguous, blocked, or unsafe.
Implement the assigned issue. Use /tdd where possible, at pre-agreed seams. Run typechecking regularly, single test files regularly, and the full test suite once at the end. Once done, use /code-review to review the work. Commit to the current branch.
After commit, push the branch and open a draft PR/MR with linked issue, change summary, and verification results. Keep it draft for parent verification.
Report exactly one status: DONE (complete), DONE_WITH_CONCERNS (complete with risks), NEEDS_CONTEXT (specific information required), or BLOCKED (cannot complete safely).
Include changed files, verification commands/results, branch, commit SHA if created, draft PR/MR URL if opened, and remaining risks.

Verify And Report

Complete the round only after collecting every agent result and recording parent verification.

Handle statuses mechanically: DONE—verify branch, commit, draft URL, scope, tests, and description without moving it to ready; DONEWITHCONCERNS—inspect concerns and send a targeted follow-up only if the issue can still be completed safely; NEEDS_CONTEXT—supply only discoverable missing context or seek human input; BLOCKED—record it and withhold dependents. Verify a draft only when tests and verification pass, scope and required fields match, and no unresolved concerns, merge conflicts, failed checks, or new blocker labels/comments remain.

Ledger: each selected issue's id/title, readiness reason, branch/worktree/agent, status, commit, draft URL and verified/unverified state, verification, and risks; unselected candidates grouped by reason; exact next-round conditions.