webhook-trigger

Installation
SKILL.md

Webhook Trigger

Send HTTP requests to any webhook or API endpoint.

POST JSON

curl -s -X POST "https://hooks.example.com/webhook" \
  -H "Content-Type: application/json" \
  -d '{"event":"deploy","status":"success"}' | jq .

POST with auth header

curl -s -X POST "https://api.example.com/notify" \
  -H "Authorization: Bearer $WEBHOOK_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"message":"Hello"}' | jq .
Related skills

More from thinkfleetai/thinkfleet-engine

Installs
1
First Seen
Mar 1, 2026