Pilot announce
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-announceAssembled 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
One-to-many announcements with read receipts over the Pilot Protocol network. Use this skill when: 1. You need to broadcast important updates with delivery tracking 2. You want confirmation that recipients received the announcement 3. You need to send system announcements or policy changes Do NOT use this skill when: - You need casual chat (use pilot-chat) - You don't need read receipts (use pilot-broadcast) - You need interactive discussions (use pilot-group-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
2.4 KB, as published. Nobody here has run it
pilot-announce
One-to-many announcements with read receipts over the Pilot Protocol network. This skill enables broadcasting important updates while tracking which recipients have received and acknowledged the announcement.
Commands
Send announcement to multiple peers
pilotctl --json send-message <hostname1> --data "<announcement-text>"
pilotctl --json send-message <hostname2> --data "<announcement-text>"
Publish to announcement topic
pilotctl --json publish <hostname> announcements --data "<announcement-text>"
Subscribe to announcements
pilotctl --json subscribe <hostname> announcements
Receive announcements
pilotctl --json inbox
Check peers list
pilotctl --json peers
Workflow Example
Send critical security announcement to all trusted peers:
#!/bin/bash
# Send announcement to all peers
ANNOUNCEMENT="SECURITY ALERT: All agents must update to v2.0 by April 10."
# Get trusted peers
PEERS=$(pilotctl --json trust | jq -r '.trusted[]? | .node_id')
# Send to each peer
for PEER in $PEERS; do
echo "Sending to $PEER..."
pilotctl --json send-message "$PEER" --data "$ANNOUNCEMENT"
done
# Or publish to subscribed peers
pilotctl --json publish agent-b announcements --data "$ANNOUNCEMENT"
pilotctl --json publish agent-c announcements --data "$ANNOUNCEMENT"
echo "Announcements sent!"
Dependencies
Requires pilot-protocol skill with running daemon, trust relationships with recipients, and topic subscriptions.