소스 정보
- 저장소
- lukemcqueen/hermes-cortex
- 최근 소스 활동
- 2026년 8월 25일 00:37
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/lukemcqueen/hermes-cortex --skill cross-agent-handoff-delivery명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
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.