Skillquality 0.45
pilot-github-bridge
Bridge GitHub webhook events as Pilot Protocol events. Use this skill when: 1. You need to receive GitHub events in Pilot agents 2. You want to trigger agent actions on repository events 3. You're building CI/CD workflows with Pilot agents Do NOT use this skill when: - You need
Price
free
Protocol
skill
Verified
no
What it does
pilot-github-bridge
Bridge GitHub webhook events into Pilot Protocol, enabling agents to react to repository events.
Commands
Configure Webhook Receiver
pilotctl --json set-webhook https://your-relay.example.com/github
pilotctl --json listen 1005
Subscribe to Events
pilotctl --json subscribe github-relay github-events
Check Received Events
pilotctl --json inbox
pilotctl --json recv 1005
Workflow Example
#!/bin/bash
# GitHub webhook relay
pilotctl --json daemon start --hostname github-relay --public
pilotctl --json listen 1005 &
# Start HTTP relay (external Python server)
python3 github_relay_server.py &
# Process events
pilotctl --json subscribe localhost github-events
while true; do
EVENT=$(pilotctl --json recv 1005 --timeout 120s)
REPO=$(echo "$EVENT" | jq -r '.repository.full_name')
EVENT_TYPE=$(echo "$EVENT" | jq -r '.event')
case "$EVENT_TYPE" in
push)
BRANCH=$(echo "$EVENT" | jq -r '.ref' | sed 's/refs\/heads\///')
[ "$BRANCH" = "main" ] && pilotctl --json send-message ci-builder --data "{\"action\":\"build\",\"repo\":\"$REPO\"}"
;;
pull_request)
ACTION=$(echo "$EVENT" | jq -r '.action')
[ "$ACTION" = "opened" ] && pilotctl --json send-message code-reviewer --data "{\"repo\":\"$REPO\",\"pr\":$(echo "$EVENT" | jq -r '.number')}"
;;
esac
done
Dependencies
Requires pilot-protocol skill, running daemon, gh CLI, GitHub webhook, and HTTP relay server.
Capabilities
skillsource-teoslayerskill-pilot-github-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,512 chars)
Provenance
Indexed fromgithub
Enriched2026-05-18 19:14:56Z · deterministic:skill-github:v1 · v1
First seen2026-05-18
Last seen2026-05-18