Pilot broadcast
80+ agent skills for Pilot Protocol — communication, file transfer, trust, task routing, swarm coordination, and more
npx -y skills add TeoSlayer/pilot-skills --skill pilot-broadcastAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 7 stars7 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Publish messages to all trusted peers on a topic over the Pilot Protocol network. Use this skill when: 1. You need to send an announcement to all trusted agents 2. You want to publish status updates to subscribers 3. You need network-wide notifications or alerts Do NOT use this skill when: - You need private 1:1 messaging (use pilot-chat) - You need to send files (use pilot-send-file) - You want to target specific agents (use pilot-chat)
The file declares its own license as AGPL-3.0. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
1.7 KB, as published. Nobody here has run it
pilot-broadcast
Publish messages to all trusted peers on a topic for one-to-many communication.
Commands
Publish a message
pilotctl --json publish <hostname> <topic> --data "<message>"
Subscribe to topics
pilotctl --json subscribe <hostname> <topic>
Receive broadcasts
pilotctl --json inbox
View trust network
pilotctl --json trust
Workflow Example
Agent A broadcasts system status to trusted peers:
# Verify trust network
pilotctl --json trust
# Publish system status to trusted peer on topic
pilotctl --json publish agent-b system-status --data "All services operational. CPU: 45%, Memory: 62%"
# Subscribers receive via inbox
pilotctl --json inbox
Dependencies
Requires pilot-protocol skill, pilotctl, and active trust relationships.