What problem does it solve? When multiple agent sessions share one project, they overwrite each other's files, duplicate work, and miss review requests because there is no shared channel. This Skill defines a coordination protocol over the project message bus so sessions announce work, request reviews, and react to merges without colliding. ## Core Features & Use Cases - Broadcast protocol: Defines six event types (starting, pr-opened, review-request, review-feedback, merged, blocked) with a one-line message shape sent via the send-message transport. - Ack-without-reply rule: Every non-ack message gets exactly one ack, and acks are terminal, preventing infinite reply loops that burn LLM turns per session. - Delivery guidance: Covers per-harness delivery seams (pi message-bus extension, Claude turn-end injection, Hermes pre-call delivery) and warns against blocking on acks. - Use Case: Two agents work in the same repo on separate branches; one announces merged: #412 to main, the other acks and rebases its lane before merging, avoiding a conflict. ## Quick Start Announce my current task, opened PRs, and merge status to the other agent sessions in this project over the message bus, and ask them for review.