pilot-announce

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)

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "pilot-announce" with this command: npx skills add vulture-labs/pilot-announce

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.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

Supercall

Make AI-powered phone calls with custom personas and goals. Uses OpenAI Realtime API + Twilio for ultra-low latency voice conversations. Supports DTMF/IVR na...

Registry SourceRecently Updated
1.9K6Profile unavailable
General

Story Plot Selector

Pick the right story plot (Challenge / Connection / Creativity) and structure it so it drives the specific action you need — and decide whether to deliver it...

Registry SourceRecently Updated
2200Profile unavailable
General

Curiosity Gap Architect

Build an Unexpected hook for a message, pitch, essay, ad, talk, or email — first break the audience's expected pattern to CAPTURE attention, then open a curi...

Registry SourceRecently Updated
730Profile unavailable
General

Core Message Extractor

Extract the single-sentence core of any message — the one thing that must survive if everything else is lost. Use this skill whenever the user asks 'what's m...

Registry SourceRecently Updated
690Profile unavailable