Skillquality 0.45
pilot-slack-bridge
Bidirectional bridge between Pilot Protocol and Slack channels. Use this skill when: 1. You need to send Slack notifications from Pilot agents 2. You want to receive Slack messages in Pilot event streams 3. You're building agents that interact with Slack workspaces Do NOT use t
What it does
Pilot Slack Bridge
Bidirectional bridge between Pilot Protocol and Slack for notifications and messages.
Commands
Configure Slack Webhook
pilotctl --json set-webhook https://hooks.slack.com/services/YOUR/WEBHOOK/URL
Send Plain Message
pilotctl --json publish localhost slack-notifications --data "Agent started successfully"
Send Structured Message
pilotctl --json publish localhost slack-alerts --data '{"text":"Error","attachments":[{"color":"danger","title":"Alert"}]}'
Subscribe to Slack Events
pilotctl --json subscribe relay-agent slack-events
pilotctl --json listen 1002
Workflow Example
#!/bin/bash
# Slack bridge setup
pilotctl --json daemon start --hostname slack-relay --public
pilotctl --json set-webhook "$SLACK_WEBHOOK"
pilotctl --json listen 1002 &
# Start HTTP relay (external)
python3 slack_relay.py &
# Process Slack commands
while true; do
EVENT=$(pilotctl --json recv 1002 --timeout 60s)
TEXT=$(echo "$EVENT" | jq -r '.event.text')
case "$TEXT" in
"status")
pilotctl --json publish localhost slack-responses --data "Status: $(pilotctl --json daemon status)"
;;
"list agents")
pilotctl --json publish localhost slack-responses --data "Agents: $(pilotctl --json peers)"
;;
esac
done
Dependencies
Requires pilot-protocol skill, running daemon, Slack webhook URL, and HTTP relay service for inbound.
Capabilities
skillsource-teoslayerskill-pilot-slack-bridgetopic-agent-skillstopic-ai-agentstopic-clawhubtopic-networkingtopic-openclawtopic-overlay-networktopic-p2ptopic-pilot-protocol
Install
Installnpx skills add TeoSlayer/pilot-skills
Transportskills-sh
Protocolskill
Quality
0.45/ 1.00
deterministic score 0.45 from registry signals: · indexed on github topic:agent-skills · 6 github stars · SKILL.md body (1,456 chars)
Provenance
Indexed fromgithub
Enriched2026-05-18 19:15:04Z · deterministic:skill-github:v1 · v1
First seen2026-05-18
Last seen2026-05-18