用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/lukemcqueen/hermes-cortex --skill cross-agent-handoff-delivery命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Cross-server agent health monitoring using binary status vectors — deploy health endpoints on each agent, poll from orchestrator, alert on state transitions.
Wire a self-hosted Langfuse instance to Hermes Agent — generate API keys, configure env vars, enable the bundled plugin, install SDK, and verify traces flow.
Use before enforcement code changes or shared-repo commits.
正在显示 SKILL.md
| name | cross-agent-handoff-delivery |
| description | Verify a cross-agent handoff is usable, not just delivered. |
| version | 0.1.0 |
| author | Hermes Cortex |
| license | MIT |
| platforms | ["linux","macos"] |
| metadata | {"hermes":{"tags":["cross-agent","handoff","bus","delivery","verification","messaging"],"related_skills":["cross-agent-design","bus-inbox-check","agent-fundamentals"]}} |
Ensures a handoff sent to a peer agent's inbox is genuinely usable by the recipient — not merely accepted by the Send API. Prevents the "I sent it, why is nothing happening?" failure where the notification lands but the content does not.
inbox_orchestrator) or another agent, expecting them to act on it.A handoff is only delivered when the content is in the message (or a recipient-reachable ref), not when the Send API returns ok.
The msg_id / status: ok returned by bus_send proves the queue accepted
the message. It proves nothing about whether the recipient can act on it. A
message whose body names a local-only branch (never pushed to origin) or omits
the actual diff is not a usable handoff — the peer opens it, finds nothing, and
the work stalls until they chase you.
git diff --cached output,
artifact, or patch text. OR push the branch to a remote the recipient can
reach. Never name a local-only branch as the handoff.correlation_id when resending a correction so the
recipient can thread it to the first message.After the send, confirm the delivery side:
msg_id with status: ok.bus_list_queues() → depth of the
target queue went up. (Non-orchestrators cannot read/peek inbox_orchestrator
— a 403 on peek is the expected send-only ACL, not an error.)After any write, verify the content itself was pushable/attachable:
git rev-parse HEAD origin/main — if equal, you have 0 commits ahead; the
staged work is un-pushed.git ls-remote origin | grep <branch> — empty means the branch your message
names is invisible to the recipient.git diff --cached | wc -l — the actual size of what you attached.The blocker often shows up as a pending/critical message in YOUR inbox
(inbox_titus), not in any Send log. Before telling the user "handoff sent /
done," check:
bus_archives("inbox_<you>", since_minutes=...) for recent peer replies.inbox_<you>) for urgent/critical follow-ups
(e.g. "BLOCKER: branch is NOT on origin, resend the patch").msg_id proves delivery to
the queue, not usable content. Always combine send-ok with a content-usable
check before reporting done.git checkout a branch that doesn't exist on their remote. Attach the diff or
push first.inbox_<you>; you get 403 (or the
orchestrator gives 403 on artifacts) reading inbox_orchestrator as a
non-orchestrator. Use your own inbox + archives for the follow-up signal.msg_id + status: ok.