Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

Pilot Discord Bridge

v1.0.0

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...

0· 96· 1 versions· 0 current· 0 all-time· Updated 11h ago· MIT-0
byCalin Teodor@teoslayer

Install

openclaw skills install pilot-discord-bridge

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.

Version tags

latestvk979b4g40c5dpg027zkcf6q94s84gtmy

Runtime requirements

Binspilotctl