discord-webhook
Installation
SKILL.md
How to Use
All examples below assume you have DISCORD_WEBHOOK_URL set.
1. Send Simple Message
Write to /tmp/discord_webhook_request.json:
{
"content": "Hello from webhook!"
}
Then run:
curl -s -X POST "$DISCORD_WEBHOOK_URL" -H "Content-Type: application/json" -d @/tmp/discord_webhook_request.json