discord
11
总安装量
4
周安装量
#28115
全站排名
安装命令
npx skills add https://github.com/dtinth/agent-skills --skill discord
Agent 安装分布
claude-code
3
opencode
3
amp
2
gemini-cli
2
codex
2
Skill 文档
To send a message over Discord to the user, there is a script at ~/.local/bin/discord-curl that can be invoked to send a Discord message via a webhook.
The script is essentially implemented this way:
#!/bin/bash -e
curl -X POST "$@" <webhook_url>
Here are some examples:
# Send a message
~/.local/bin/discord-curl -F 'content=hello'
# Send a message with file
~/.local/bin/discord-curl -F 'content=hello' -F 'files[0]=@/etc/os-release'