Skillquality 0.45

pilot-discord-bridge

Bidirectional bridge between Pilot Protocol and Discord servers. Use this skill when: 1. You need to send Discord notifications from Pilot agents 2. You want to receive Discord messages in Pilot event streams 3. You're building agents that interact with Discord communities Do N

Price
free
Protocol
skill
Verified
no

What it does

Pilot Discord Bridge

Bidirectional bridge between Pilot Protocol and Discord for notifications and messages.

Commands

Configure Discord Webhook

pilotctl --json set-webhook https://discord.com/api/webhooks/YOUR_WEBHOOK_ID/YOUR_WEBHOOK_TOKEN

Send Plain Message

pilotctl --json publish localhost discord-notifications --data "Agent deployed successfully"

Send Rich Embed

pilotctl --json publish localhost discord-alerts --data '{"embeds":[{"title":"Alert","description":"High memory","color":15158332}]}'

Subscribe to Discord Events

pilotctl --json subscribe discord-relay discord-messages
pilotctl --json listen 1003

Workflow Example

#!/bin/bash
# Discord bridge setup

pilotctl --json daemon start --hostname discord-bridge
pilotctl --json set-webhook "$DISCORD_WEBHOOK"
pilotctl --json listen 1003 &

# Start Discord bot relay (external)
python3 discord_relay.py &

# Process Discord commands
while true; do
  MSG=$(pilotctl --json recv 1003 --timeout 60s)
  CONTENT=$(echo "$MSG" | jq -r '.content')

  [[ "$CONTENT" == "!status" ]] && pilotctl --json publish localhost discord-responses --data "Status: $(pilotctl --json daemon status)"
done

Dependencies

Requires pilot-protocol skill, running daemon, Discord webhook URL, and Discord bot for inbound.

Capabilities

skillsource-teoslayerskill-pilot-discord-bridgetopic-agent-skillstopic-ai-agentstopic-clawhubtopic-networkingtopic-openclawtopic-overlay-networktopic-p2ptopic-pilot-protocol

Install

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,350 chars)

Provenance

Indexed fromgithub
Enriched2026-05-18 19:14:54Z · deterministic:skill-github:v1 · v1
First seen2026-05-18
Last seen2026-05-18

Agent access