🎯

discord

🎯Skill

from dtinth/agent-skills

VibeIndex|
What it does

Sends messages and files to a Discord channel via webhook, configured with a local URL file.

πŸ“¦

Part of

dtinth/agent-skills(4 items)

discord

Installation

πŸ“‹ No install commands found in docs. Showing default command. Check GitHub for actual instructions.
Quick InstallInstall with npx
npx skills add dtinth/agent-skills --skill discord
2Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

Use this skill to send a message over Discord to the operator

Overview

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)

```