安装方式
命令行安装
在项目根目录执行以下命令,完成 Skill 安装。
npx bzskills add luongnv89/skills --skill herdr-agent Manage AI agent fleets in Herdr: tile root + sub-agents in one tab, start/prompt/wait/read/monitor via the herdr agent CLI, steer any pane; `help` lists every operation. Use for Herdr fleets. Don't use for tmux, screen, or non-Herdr terminals.
0
下载量
命令行安装
在项目根目录执行以下命令,完成 Skill 安装。
npx bzskills add luongnv89/skills --skill herdr-agent name: herdr-agent
description: 'Manage AI agent fleets in Herdr: tile root + sub-agents in one tab, start/prompt/wait/read/monitor via the herdr agent CLI, steer any pane; `help` lists every operation. Use for Herdr fleets. Don''t use for tmux, screen, or non-Herdr terminals.'
license: MIT
compatibility: "Requires herdr 0.9.0 or later on PATH and a running Herdr server (`herdr status`) for every operation except `help`, which runs no herdr command. Default same-kind launches also require `pane process-info` to return full argv; `--without flags` explicitly opts out."
effort: medium
metadata:
version: 3.1.1
author: "Luong NGUYEN <luongnv89@gmail.com>"Build and control an AI-agent fleet in the root agent's Herdr tab. Keep the root pane as orchestrator; add each sub-agent as a right-hand split running the main agent's own launch profile; equalize all columns; then start, prompt, wait, read, monitor, steer, or tear down through the herdr CLI.
Use Herdr concepts, not tmux assumptions. Let the server do the work: herdr agent prompt --wait submits and waits in one request, herdr agent wait is event-driven, and herdr api snapshot reports the whole fleet in one call. Relay reply deltas rather than whole panes to protect the context and token budget.
| Request | Follow |
|---|---|
help, or what this does and how to drive it | Help below — answer and stop |
| Spawn sub-agents beside root | Phases 1–2, then 4–5 if assigning work |
| Message an existing agent | Phases 3–5 |
| Read without sending | Phase 3, then Phase 5 read only |
| Check what the fleet is doing | Phase 6 |
| Broadcast to a fleet | Phases 3 and 7 |
| Focus/steer a pane | Phase 3, then Phase 7 |
| Close workers | Phase 7 teardown |
| Main agent's own context is filling up | Phase 8 HANDOFF |
Read only the reference needed by that branch:
references/herdr-recipes.md for guarded grid spawning, equalization semantics, multi-line prompts, focus, and troubleshooting.references/launch-profile.md for where a worker's kind, model, thinking level, and flags come from, the kind gate, and what never carries over.references/delivery-and-waiting.md for the one-call prompt contract, error codes, wait semantics, reading replies, and the no-agent fallback.references/fleet-monitoring.md for snapshot status, sidebar badges, notifications, and the run report.references/context-succession.md for the main agent's context gate, HANDOFF procedure, and handoff brief template.Resolve this branch before Prerequisites. A help request runs no herdr command, touches no pane, and changes nothing, because someone asking how this works may not have Herdr installed yet. Take it on help, --help, /herdr-agent help, or any plain question about what the skill does or how to drive it. Answer, then stop: no fleet work, no completion report.
herdr-agent — build and control an AI-agent fleet in your Herdr tab.
WHAT YOU CAN ASK FOR
spawn "spin up agents named tests and docs beside my pane"
message "ask reviewer to summarize the open PRs"
read "show me what tests said" (reads only, sends nothing)
status "what is my fleet doing right now?"
broadcast "tell every agent to pull latest main"
steer "focus the docs pane so I can type in it"
teardown "shut the fleet down" (asks before closing anything)
handoff "keep driving this run when your context fills up"
help this summary
HOW IT BEHAVES
Your pane stays the orchestrator and is never closed by accident.
Workers land as equal-width columns in that same tab, not new tabs.
New agents mirror yours: same harness, model, thinking level and launch
flags, unless you name something else. An inherited permission bypass
is announced before any agent starts.
A prompt aimed at a busy or blocked agent is refused before it is sent.
Every send waits for a settled state, and blocked, stalled or timed-out
agents are reported rather than silently retried.
Closing panes, tabs, workspaces or the server needs your approval.
WHAT IT NEEDS
herdr 0.9.0 or later on PATH, a running server (`herdr status`), and this
session inside a Herdr pane (HERDR_ENV=1). Default same-kind launches need
the server's `pane process-info` API to return full argv.
Not for tmux or GNU screen — use tmux-agent-comms there.
For a narrower question such as how to broadcast, answer from that one phase instead of printing the whole block, and name the phase so the user can ask for it again by name.
Done when: the user has the summary or their specific answer, and no herdr command ran.
command -v herdr and herdr status. If the server is unavailable, ask the user to start Herdr from a real terminal; never run bare herdr from a non-TTY shell.HERDR_ENV=1. Outside a Herdr pane, do not inspect or control the focused session.HERDR_PANE_ID, HERDR_TAB_ID, and HERDR_WORKSPACE_ID, or from herdr pane current --current and list/get commands.herdr <group> rather than inventing flags. Client and server versions can differ after an update; herdr status says whether the server supports what you are about to use.right, keep every worker in the root tab, then run the equalizer. Create separate tabs only when the user explicitly requests isolation.blocked target itself, but not a working one, and its wait tracks lifecycle state rather than one turn. Reject missing, ambiguous, working, or unverifiable targets yourself before dispatching.agent prompt --wait cycle.--without flags for a skill that demands bare launches). A field is named only by a concrete value: a kind, a model ID or alias, a thinking level, or a flag. Ask when a request is vague ("something cheaper") or names a model from another harness without a kind. A worker of a different kind inherits nothing else. Never guess a value you cannot read: model or thinking may be reported UNKNOWN, but unreadable same-kind setup flags abort the launch unless --without flags explicitly opts out.command -v herdr >/dev/null || { echo "Error: herdr is not installed" >&2; exit 1; }
test "${HERDR_ENV:-}" = 1 || { echo "Error: not running inside a Herdr pane" >&2; exit 1; }
herdr status || { echo "Error: Herdr server is unavailable" >&2; exit 1; }
root_pane="${HERDR_PANE_ID:?}"; root_tab="${HERDR_TAB_ID:?}"; ws="${HERDR_WORKSPACE_ID:?}"
Resolve project_dir from the root pane's cwd, falling back to the current directory. Resolve the skill's scripts/ directory by probing repo-local installs before global ones.
Done when: server status passes and concrete root_pane, root_tab, ws, and project_dir values are recorded.
Before spawning, define each worker's unique name, task, and expected deliverable. Placement and launch are two steps: herdr agent start never creates or moves layout, and requires a pane already sitting at its shell prompt.
Resolve the inherited launch profile once per spawn wave, as its own tool call before the call that splits, so the user sees it before any agent starts:
python3 "$here/launch_profile.py" --root-pane "$root_pane" \
--main-model "$main_model" --main-thinking "$main_thinking" >/dev/null
Set main_model and main_thinking to your own model ID and thinking level, and leave either one empty rather than guess. On Claude Code, leave main_thinking empty, because the script reads CLAUDE_EFFORT. Relay the summary line to the user before the first split, including any ⚠ or warning: line. A worker with an UNKNOWN model or thinking level still starts on its config default. Missing or malformed root argv aborts a same-kind launch before the split; --without flags is the explicit reduced-inheritance opt-out. If the user already declined bypass for this run, pass --without bypass on every worker. references/launch-profile.md has the source order, per-kind flags, and what never carries over.
Use the canonical spawn_sub workflow in references/herdr-recipes.md:
next_grid_split.py --root-pane "$root_pane" to plan the rightmost split.--direction right --no-focus in project_dir, passing --env "HERDR_ROLE=<name>" so the worker can read its own role instead of being told it in every prompt.next_grid_split.py --equalize --root-pane "$root_pane"; abort on any error or non-convergence.--start <name> --pane <id> --timeout 60000. Add only what the user named: --kind, --model, --thinking, --without bypass|flags, or native flags after --. The command runs herdr agent start on the profile.python3 scripts/badge.py <name> --title "<job>" --token role=<role>.agent start is the readiness gate: it returns only once Herdr detects the expected agent and considers it interactive-ready, and returns agent_not_ready immediately if the agent booted into a dialog. There is no separate readiness pass. Names must match [a-z][a-z0-9_-]{0,31} and be unique among live agents. Never fold the task into argv.
Confirm the fleet with python3 scripts/fleet_status.py --tab "$root_tab" --fail-on-blocked before assigning any work.
Done when: every worker has a unique name and pane ID in root_tab, the layout widths differ by at most one cell, root remains active, the launch-profile summary reached the user, and every start returned success.
Run herdr agent get <name> or herdr pane get <pane-id>. If a name is missing or ambiguous, list agents and ask; never silently retarget. agent_not_found means the pane hosts no detected agent — start one, or take the pane-surface fallback in references/delivery-and-waiting.md. Record both the name and pane ID and use that same ID for every later mutation.
Done when: one existing target resolves uniquely and its status is valid.
python3 "$here/preflight_send.py" "$target" >/dev/null || exit $?
herdr agent prompt "$target" "$task" --wait --timeout 180000
The preflight refuses working (2), blocked (3), unverifiable (4), and no-agent (5) targets. The prompt then submits text plus Enter as one ordered write honoring bracketed paste, refuses a blocked target server-side before writing anything, gates on observed activity, and waits for the first settled state — all in one request. That is why this skill no longer captures a transcript baseline or plants a completion marker: there is no gap between send and wait to race.
Do not add --until idle --until done; those are the --wait defaults. Use --until only for a state-specific wait such as --until blocked.
Done when: the prompt returned success, or a named error code was propagated.
Map the failure first. agent_blocked means nothing was sent and a human is needed. agent_prompt_stalled means it was submitted but no activity followed — inspect, never blindly resend. timeout means no settled state inside the budget. Propagate all three; do not report them as replies.
On success, read a capped transcript and relay only the relevant delta:
herdr agent read "$target" --source recent-unwrapped --lines 80
Accept idle or done as settled; they differ only in whether the completion has been marked seen. If raising --lines reveals no more output, the agent is on the terminal's alternate screen — use the file fallback in references/delivery-and-waiting.md rather than a bigger line count.
Done when: the requested reply is captured and verified, or blocked/stalled/timeout evidence is reported without further writes.
python3 "$here/fleet_status.py" --tab "$root_tab"
One herdr api snapshot call renders every agent's status, badge and title, sorted by attention, at flat cost for any fleet size. Prefer it over per-agent herdr agent get polling, which costs N round trips and can report a fleet state that never existed at one instant.
Keep the human oriented without making them read panes:
python3 scripts/badge.py <name> --token phase=<phase>. Display-only, so it never perturbs waits or rollups.herdr notification show "Agent blocked" --body "<name> needs input" --sound request, and once at run completion with --sound done.See references/fleet-monitoring.md for field caps, token semantics, and workspace-level rollups.
Done when: the current fleet state came from a snapshot call, not from memory of what was dispatched.
scripts/broadcast.sh "<task>" <targets...>. It resolves all targets from one agent list, dedupes, refuses unsafe ones, dispatches agent prompt --wait concurrently, and maps every error code to a reason. HAC_BADGE=1 badges each row with its phase.herdr agent focus <name>, which also marks that agent's completion seen. For follow-ups, repeat Phases 4–5.herdr server stop from an active session unless the user intends to stop every pane process.Done when: every requested target has a recorded outcome and destructive actions match the user's confirmed scope.
Long fleet runs outlive one context window. Self-check your own usage at three gate points — before a spawn wave, before a broadcast, and after each relayed reply — never mid-cycle between a dispatch and its wait.
| Self-reported usage | Action |
|---|---|
P >= threshold (default 50, overridable in conversation) | HANDOFF |
P < threshold | Continue as main |
| UNKNOWN or unavailable | Count relayed reads and spawn waves; HANDOFF at 20 reads or 4 spawn waves |
HANDOFF spawns a successor with the same Phase 2 machinery — main-g<N> in the root tab, equalized, started on the inherited launch profile so it runs your harness, model, and thinking level — then delivers a compact handoff brief through the Phase 4 cycle and waits for the ack HANDOFF ACCEPTED gen=<N> fleet=<k>. After the ack, that pane is the orchestrator; this pane goes read-only and announces the new one with herdr agent focus main-g<N>. A successor that fails to start or never acks means the HANDOFF failed: stay main, report the orphan pane, and ask before closing it.
Read references/context-succession.md for the gate-point table, UNKNOWN fallback logging, full procedure, and the brief template. Never paste transcripts or diffs into a brief.
Done when: the gate decision is recorded with a percentage or an explicit UNKNOWN fallback, and any HANDOFF has a ready successor pane, a delivered brief, a received ack, and no write from the outgoing pane afterward.
Expected output for a successful fleet operation:
Fleet: PASS
Root kept: w26:p1
Profile: claude · claude-opus-5[1m] · thinking max (inherited)
Workers: reviewer=settled, tests=settled
Layout: 3 equal-width columns
Replies: 2 captured, 0 blocked, 0 timed out
Acceptance criteria:
help request prints the usage summary, runs no herdr command, and emits no completion report.herdr status succeeds and every target resolves uniquely.fleet_status.py, not from recollection.blocked: focus the pane, notify, and request human action.agent_not_found: no detected agent in that pane — agent start it, or drop to the pane-surface fallback.unknown status: herdr integration status, then herdr agent explain <target> --json to see which rule matched.argv0, no full argv: abort before splitting or starting; update/restart Herdr, or use --without flags only when reduced inheritance is intentional.◆ Herdr Agent ([operation])
··································································
Server: √ pass
Root resolved: √ pass (pane · tab · workspace)
Targets: √ pass (N/N unique)
Launch profile: √ pass (kind · model · thinking · N flags; UNKNOWN and ⚠ named — if spawning; otherwise — n/a)
Layout/readiness: √ pass (if spawning; otherwise — n/a)
Delivery: √ pass (if prompting; otherwise — n/a)
Replies: √ pass (settled · blocked/stalled/timeouts reported)
Fleet snapshot: √ pass (N agents · statuses)
Context gate: √ pass (P% or UNKNOWN · continue | HANDOFF → main-gN)
Destructive action: — none (or confirmed scope)
Result: PASS | FAIL | PARTIAL