← ClaudeAtlas

harness-clilisted

Use when working with other agents or the harness from inside a runner-spawned task — messaging peers on the agentboard, spawning / driving / killing worker agent sessions, delegating one-shot tasks, moving files in or out of a task's worktree, notifying the human operator, or discovering live agents and topics. Also defines the agentboard conventions (handshake, reply topics, trust model). Reply delivery is asynchronous via the inbox hook — never block on wait/dispatch from an agent turn.
on-keyday/agent-harness · ★ 1 · AI & Automation · score 67
Install: claude install-skill on-keyday/agent-harness
# harness-cli (agent runtime) `harness-cli` is on `PATH` inside this worktree. It is your control surface for the whole harness: the agentboard (the only sanctioned way to talk to other agents), worker-session lifecycle (`session new -d` / `session kill`), one-shot `submit` + `logs` / `watch`, worktree file transfer (`file push` / `file pull`), and operator notifications (`notify`). All required credentials are passed via `HARNESS_*` environment variables (already set by the runner) — never pass them as flags. ## Reading the skills — `harness-cli skill` This document, and the other harness agent skills, are embedded in the `harness-cli` binary. Print them from any runtime — you do NOT need Claude's skill mechanism, and this works even where `.claude/skills/` was never injected: ```bash harness-cli skill # print this skill (harness-cli) — the default harness-cli skill ls # list the embedded skills + descriptions (alias: --list / -l) harness-cli skill <name> # print another one, e.g. `harness-cli skill landing-to-main` ``` `skill ls` enumerates whatever is embedded (currently `harness-cli`, `independent-review`, `landing-to-main`, `session-debugging`); an unknown name errors and echoes the available names. The agentboard wake prompt tells you to run `harness-cli skill` precisely because the command — unlike a Claude skill reference — resolves in any runtime, including non-claude / non-injected peers. ## Inbox is automatic — do not poll `harness-cli