Pilot Webhook Bridge for Openclaw

A powerful utility to forward Pilot Protocol events to external webhooks like Slack, Discord, and PagerDuty for real-time monitoring.

teoslayer
v1.0.0
Apr 9, 2026
0
774
0

Install & Download

1. ClawHub CLI

The fastest way to install a skill directly from the registry.

npx clawhub@latest install pilot-webhook-bridge

2. Manual Installation

Copy the skill folder to one of these locations

Global
~/.openclaw/skills/
Workspace
<project>/skills/

Priority: Workspace > Local > Bundled

3. Prompt Installation

Copy this prompt to OpenClaw to install it automatically.

Help me install pilot-webhook-bridge using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).

Prefer to download?

Get the raw skill files in a ZIP archive.

What is Pilot Webhook Bridge?

The pilot-webhook-bridge is a specialized integration tool designed to bridge the gap between internal agent communications and external notification platforms. By leveraging this Openclaw Skills entry, developers can ensure that critical system events, alerts, and metrics generated via the Pilot Protocol are immediately visible in the communication tools your team already uses.

This skill acts as a lightweight event forwarder that transforms protocol-specific data into standard HTTP POST requests. It is an essential component for teams building autonomous agent systems that require human-in-the-loop oversight or real-time operational visibility through existing DevOps and communication channels.

Pilot Webhook Bridge Use Cases

  • Forwarding critical agent alerts to Slack or Microsoft Teams for immediate team visibility.
  • Integrating Pilot Protocol telemetry with monitoring and alerting platforms like Datadog or PagerDuty.
  • Triggering external CI/CD or serverless automation workflows via custom HTTP endpoints.
  • Maintaining bidirectional synchronization between local agent environments and cloud-based management consoles.

How Pilot Webhook Bridge Works

  1. The Pilot Protocol daemon listens for events on port 1002 from authorized agents within the network.
  2. The pilot-webhook-bridge skill captures these incoming events based on configured global settings or specific subscriptions.
  3. Local processing tools like jq parse the event data to extract relevant metadata, severity levels, and payload information.
  4. The bridge formats the raw event data into the specific JSON schema required by the target service, such as Slack attachments or Discord embeds.
  5. A curl request transmits the formatted payload to the external HTTP webhook URL securely.

Pilot Webhook Bridge Setup

To use this Openclaw Skills utility, ensure the pilotctl daemon is running and the pilot-protocol skill is installed. You must also have curl and jq available on your system PATH.

# Start the pilotctl daemon
pilotctl daemon start

# Set a global webhook for all port 1002 events
pilotctl --json set-webhook <webhook-url>

# Verify configuration
pilotctl --json subscribe <source-hostname> <topic> --timeout 60

Pilot Webhook Bridge Data Schema & Taxonomy

The bridge processes JSON payloads conforming to the Pilot Protocol event structure. Below is how the data is typically organized for forwarding:

Field Type Description
topic String The event category or routing key (e.g., alerts.*)
data.message String The primary notification text or payload summary
data.severity String Maps to external alert levels (info, warning, critical, error)
source String The hostname or identifier of the originating agent

Pilot Webhook Bridge Advanced Features

  • Selective Topic Subscription: Use regex-based topic filtering to forward only high-priority event categories.
  • Dynamic Payload Transformation: Leverage jq integration to map protocol severity levels to service-specific UI elements like colors and icons.
  • Multi-Source Aggregation: Consolidate events from multiple distributed agents into a single centralized monitoring channel.
  • Bidirectional Sync Hooks: Enable external systems to trigger responses or state changes back into the agent network via the bridge.

SKILL.md


Loading

Related Openclaw Skills

METADATA

Github Stars: 0
forks: 0

Featured*