Generic Webhook Trigger
Any HTTP POST to /webhooks/{name} creates a generic webhook event where the event string is the path segment {name}.
# Fires on POST /webhooks/deployment
trigger:
webhook:
- deploymentGeneric webhooks have no signature verification. Use network-level controls (tunnel auth, IP allowlist) if the endpoint is public.
Example
trigger:
webhook:
- deploy-complete
agent: notifier
prompt: |
A deployment just completed. Summarize and post to Slack.
orchestrator: falseSee also
- Filters — narrow which events reach this pipeline
- Public Access — expose the daemon to receive webhooks

