webhook-trigger
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 .
GET with query params
curl -s "https://api.example.com/status?service=web" \
-H "Authorization: Bearer $API_TOKEN" | jq .
Slack incoming webhook
curl -s -X POST "$SLACK_WEBHOOK_URL" \
-H "Content-Type: application/json" \
-d '{"text":"Deployment complete :rocket:"}'
Discord webhook
curl -s -X POST "$DISCORD_WEBHOOK_URL" \
-H "Content-Type: application/json" \
-d '{"content":"Build succeeded!"}'
Notes
- Always show the user the URL and payload before sending.
- Use
jqto format JSON responses. - For retries:
curl --retry 3 --retry-delay 2.
Weekly Installs
1
Repository
thinkfleetai/th…t-engineFirst Seen
Mar 1, 2026
Security Audits
Installed on
amp1
cline1
opencode1
cursor1
kimi-cli1
codex1