Herdr issue coordination
SkillAI & modelsCoordinates a batch of GitHub issues through separate Claude Code sessions running in visible Herdr tabs, with tested pull requests, review loops, and gated merges. Use when the user asks one Claude session to sequence several coding sessions, or to complete a parent issue, milestone, or issue batch inside Herdr.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Herdr issue coordination skill
What this skill tells your AI
The instructions your AI receives, as published by owainlewis/agent-skills in skills/herdr-issue-coordinator/SKILL.md and read by ahel’s review.
Use this session as the coordinator. Give each dispatched GitHub issue its own git worktree, branch, Herdr tab, and Claude Code session. Sequence the work. Keep implementation context in workers and all durable state in GitHub.
This skill is experimental. It depends on the herdr CLI and its API changes
between versions. Verify the commands below against the installed binary before
relying on them.
Explicitly naming /herdr-issue-coordinator, or explicitly telling the
coordinator that agents may merge, authorizes in-scope workers to merge their
own pull requests after every merge gate below passes. An implicit skill match
does not grant merge authority: run in no-merge mode unless the user's words
grant it. Neither mode authorizes deployment, release publication, destructive
operations, branch-protection bypasses, or changes outside the supplied batch.
Preconditions
Stop if any of these fail. Do not substitute hidden subagents for workers.
test "${HERDR_ENV:-}" = 1. You must be running inside a Herdr pane.herdr --versionreports 0.8.0 or later. Earlier versions have noagent promptand noagent start --pane, and this skill will not work.herdr agentlistsprompt, andagent startaccepts--kindand--pane. The binary is the authority, not this document.- The working directory is a git repository with a GitHub remote and
ghauthenticated. - Read the repository instructions, parent issue, sub-issues, declared dependencies, project board, issue state, and linked open or merged pull requests. A merged pull request is only evidence of completion when it closes or explicitly references the issue and its final change and proof satisfy the issue scope. Reconcile that state instead of dispatching again.
- Make every issue a complete task before dispatch. If a missing product or technical decision could change behavior, data, security, compatibility, operations, cost, or proof, mark that issue as needing human input.
- Build a dependency graph. Stop for human correction on a dependency cycle.
State rules
The coordinator is the only writer of batch state. These rules exist because a sequenced batch runs for hours and this session's context is not durable.
- GitHub holds issue, pull request, review, and merge state. Re-read it at the start of every cycle. Never cache it across cycles.
- Never create a second tracker: no local state file, no notes file, no in-context list treated as authoritative.
- Workers never write batch state. They own one issue and report back.
- Workers never write their own tab status. The coordinator pushes it.
- If your own context is compacted mid-batch, re-derive the whole graph from GitHub before dispatching anything.
Concurrency and tabs
- Default to 1 active worker. Use 2 only when two issues are independent and the user asked for speed. Use another limit only when the user asks.
- One tab per active issue. Close it after its merge is verified.
- Never leave finished tabs open. A long batch must not accumulate tabs.
- Keep the user's focus in the coordinator tab.
Coordinator workflow
-
Name this tab for the batch.
herdr tab rename "$HERDR_TAB_ID" "Coordinator"tab renamehas no--clear. Record the original label and restore it verbatim when the batch ends. -
Dispatch only issues whose prerequisites are merged. For each one, create the worktree first, then the tab, then the agent.
# 1. worktree, from the updated remote default branch git worktree add -b <branch> <worktree-path> origin/<default-branch> # 2. tab, in this workspace, rooted in the worktree herdr tab create --workspace "$HERDR_WORKSPACE_ID" \ --cwd <worktree-path> --label "#<issue> <short title>" --no-focus # read .result.tab.tab_id and .result.root_pane.pane_id from the response # 3. agent, in that tab's root pane herdr agent start issue-<issue> --kind claude --pane <root-pane-id> # 4. reclaim focus; agent start has no --no-focus and takes it herdr tab focus "$HERDR_TAB_ID"Agent names must match
[a-z][a-z0-9_-]{0,31}and be unique among live agents, so#123is not a legal name. Useissue-123as the agent name and#123 <short title>as the tab label. Parse every id from the JSON response. Do not predict ids.If the issue already has an open pull request, use that pull request's exact head branch instead of creating a new one, and pass the branch and pull request URL in the worker prompt.
-
agent startreturns only once Herdr sees the agent ready. It reportsagent_statusandinteractive_ready. Do not add a separate wait. -
Send the worker its task and wait for it to settle.
herdr agent prompt issue-<issue> "<worker prompt>" --wait --timeout <ms>agent promptsubmits text and Enter atomically.--waitreturns on the first settledidle,done, orblockedstate. Do not useagent sendfollowed by a separate Enter. -
Read a worker only when it needs help or reports completion.
herdr agent get issue-<issue> herdr agent read issue-<issue> --source recent-unwrapped --lines 200agent readreturns plain text, not JSON. If a completed response is longer than the pane can return, ask the worker to write its full response to a temporary file and reply with only the path, then read that file. -
On
blocked, inspect before answering. Send a decision or corrected scope withagent prompt. Never edit a worker's files from the coordinator. -
Push the current stage into the worker's tab after every state change.
herdr pane report-metadata <pane-id> --source coordinator \ --title "#<issue> <stage>" --ttl-ms 900000Stages are pipeline stages a human can act on, such as
implementing,tests running,PR open,awaiting CI,in review,blocked: <reason>. Derive each one from GitHub, not from what the worker claimed. Refresh it every cycle so the TTL never lapses on a live worker. -
After three failed attempts at the same check or review finding, stop that issue, record the evidence on the GitHub issue, and request human input. Continue other independent work.
-
When a worker reports completion, verify on GitHub before touching the tab. In merge mode: confirm the pull request is merged, the issue holds final proof, and the issue is closed. Close it explicitly if the merge did not. Mark it Done when the project supports it. Only then clean up:
herdr tab close <tab-id> git worktree remove <worktree-path>Verify first, then close. Closing kills the worker process and its pane transcript. Never close a tab to end a problem you have not resolved.
In no-merge mode: stop the worker once its pull request passes every agent-completable gate, leave the issue in Review, record the pending human merge as its blocker, and leave the tab open for the user.
-
Refresh the dependency graph from GitHub after every merge and dispatch the next ready issue from the updated default branch. Never start dependent work from an unmerged branch. In no-merge mode, record a blocked dependent as waiting on a human merge rather than waiting indefinitely.
-
Finish when every in-scope issue is merged and closed, or has a recorded blocker needing human action. In no-merge mode, finish when every in-scope issue has a ready pull request or a recorded blocker. Restore the coordinator tab label and confirm no worker tabs or worktrees remain.
Worker contract
Each worker owns one issue and follows this order:
- Read the issue, repository instructions, relevant design, code, tests, and dependency pull requests. Move the issue to In Progress when possible.
- Work in the worktree it was started in. Do not create another worktree, do not change branch, and do not touch another issue's files.
- Implement only the issue. Add or update tests for every acceptance criterion, affected failure path, regression risk, and named edge case.
- Prove the change. Browser-facing work requires a real browser check of the affected success and failure flows, responsive widths, keyboard behavior, console errors, and failed requests when relevant.
- Commit and push. Open a draft pull request if one is not already open, with a short summary and current proof.
- Mark the pull request ready for review and move the issue to Review before requesting independent review.
- Run an independent review with a fresh subagent that did not write the change. Wait for required CI and automated review. In merge mode, also wait for every repository-required approval. In no-merge mode, record a pending required approval as a human blocker rather than waiting indefinitely.
- Address every valid in-scope finding. Reply to review threads with the fix or the evidence for making no change. Resolve a thread only when it is fully addressed.
- After any code change, repeat the affected proof and a fresh review, push, update the pull request evidence, and wait for CI again. Iterate until the mode's gates pass. Do not manufacture extra rounds.
- In merge mode, merge after every gate passes, using the repository's preferred method and never an admin bypass. Wait until GitHub reports the merge, record final proof, and verify the issue is closed. In no-merge mode, leave the passing pull request open. Report the final state.
Merge gates
A worker may merge only when all of these are true:
- The pull request is ready for review, not draft.
- The complete issue scope and acceptance criteria have recorded proof.
- Focused and required wider tests pass on the final commit.
- An independent review verdict is
Approveon the final code. - Every required GitHub check passes.
- Every actionable automated or human review thread is resolved.
- Every repository-required approval is present.
- The pull request is mergeable and current with its required base.
- No security, data-loss, compatibility, operational, or product decision is unresolved.
- The pull request changes only the worker's issue.
If a gate cannot pass, do not merge. Record the blocker and continue other independent work.
Worker prompt
Use this shape and replace every placeholder:
Complete <issue URL> in this worktree. It is already checked out on the
branch you should use.
You own only this issue, worktree, branch, and pull request.
Branch state: <reuse PR head branch and PR URL, or the new branch name>.
Delivery mode: <merge after all gates pass, or leave the passing PR open>.
Read the issue and repository instructions as the source of truth.
Implement the smallest complete change and prove acceptance criteria, edge
cases, failure paths, and regressions.
After local proof passes, commit, push, open or update the pull request, and
mark it ready for review. Only then run an independent review with a fresh
subagent and wait for CI and GitHub review. Address valid findings and repeat
proof and review after every code change.
Do not report your own status anywhere outside this session. The coordinator
tracks state from GitHub.
<If merge mode: The user explicitly authorized this run to merge this issue's
pull request after every merge gate passes. Wait until GitHub reports the
merge, update and close the issue, and return the result.>
<If no-merge mode: Leave the passing pull request open for human merge and
return its URL and proof.>
Do not deploy, publish a release, bypass repository rules, or change unrelated
work.
Boundaries
- Use visible Herdr tabs for workers. Fresh subagents are only for the independent review inside a worker.
- Never dispatch two workers for one issue, or let two workers share a worktree.
- Never replace or duplicate an existing pull request for the issue. Resume it.
- Never start dependent work from an unmerged pull request.
- Never merge an unrelated pull request merely because it blocks the batch.
- Never infer deployment or release authority from merge authority.
- Never close a tab, pane, workspace, or worktree you did not create.
- Never run
herdr server stop. It would kill this session.
Known Herdr behavior
Verified against herdr 0.8.0, protocol 19.
agent starthas no--no-focusand takes focus. Follow it withherdr tab focus "$HERDR_TAB_ID".tab renamehas no--clear, unlikeagent rename. Restore labels by hand.agent readreturns plain text. Other commands return JSON.herdr worktree createcreates a whole workspace per worktree, andherdr worktree removeis workspace-scoped. It does not fit one tab per issue in a single workspace. Usegit worktree addinstead.pane report-metadata --titleis stored on the pane, not on the tab, andtab listdoes not return it.
Signals
- GitHub stars
- 44
- Forks
- 9
- Last commit
- Aug 2026
Advanced
- Catalog kind
- skill
- Gateway key
herdr-issue-coordinator- Source
- github.com/owainlewis/agent-skills