Commit 7efbfc

2026-01-31 18:05:00 Thai Pangsakulyanont: -/-
/dev/null .. discord/SKILL.md
@@ 0,0 1,14 @@
+ ---
+ name: discord
+ description: Use this skill to send a message over Discord to the operator
+ ---
+
+ The webhook URL is in `~/.config/discord-agent/webhook-url.txt`
+
+ ```sh
+ # Send a message
+ curl -X POST -F 'content=hello' $(cat ~/.config/discord-agent/webhook-url.txt)
+
+ # Send a message with file
+ curl -X POST -F 'content=hello' -F 'files[0]=@/etc/os-release' $(cat ~/.config/discord-agent/webhook-url.txt)
+ ```
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9