Install
$ agentstack add skill-kubiyabot-skill-discord-skill ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Discord Skill
Send messages, manage channels, and interact with Discord servers through the API.
Installation
skill install ./examples/wasm-skills/discord-skill
Configuration
skill config discord --set DISCORD_BOT_TOKEN=your_bot_token
Tools
send-message
Send a message to a channel.
Parameters:
channel_id(required, string): Channel IDcontent(required, string): Message contentembed(optional, json): Rich embed object
Example:
skill run discord send-message --channel_id 123456789012345678 --content "Hello!"
get-channel
Get information about a channel.
Parameters:
channel_id(required, string): Channel ID
Example:
skill run discord get-channel --channel_id 123456789012345678
list-channels
List channels in a server.
Parameters:
guild_id(required, string): Server (guild) IDtype(optional, string): Filter by type: text, voice, category
Example:
skill run discord list-channels --guild_id 987654321098765432
create-thread
Create a thread from a message or in a channel.
Parameters:
channel_id(required, string): Parent channel IDname(required, string): Thread namemessage_id(optional, string): Message to create thread fromauto_archive_duration(optional, number): Minutes until auto-archive
Example:
skill run discord create-thread --channel_id 123456789 --name "Discussion"
get-messages
Get recent messages from a channel.
Parameters:
channel_id(required, string): Channel IDlimit(optional, number): Number of messages (default: 50)before(optional, string): Get messages before this IDafter(optional, string): Get messages after this ID
Example:
skill run discord get-messages --channel_id 123456789 --limit 20
list-members
List members in a server.
Parameters:
guild_id(required, string): Server IDlimit(optional, number): Number of members (default: 100)
Example:
skill run discord list-members --guild_id 987654321098765432
add-role
Add a role to a member.
Parameters:
guild_id(required, string): Server IDuser_id(required, string): User IDrole_id(required, string): Role ID
Example:
skill run discord add-role --guild_id 987654321 --user_id 111222333 --role_id 444555666
remove-role
Remove a role from a member.
Parameters:
guild_id(required, string): Server IDuser_id(required, string): User IDrole_id(required, string): Role ID
Example:
skill run discord remove-role --guild_id 987654321 --user_id 111222333 --role_id 444555666
add-reaction
Add a reaction to a message.
Parameters:
channel_id(required, string): Channel IDmessage_id(required, string): Message IDemoji(required, string): Emoji (unicode or custom format)
Example:
skill run discord add-reaction --channel_id 123456789 --message_id 111222333 --emoji "👍"
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: kubiyabot
- Source: kubiyabot/skill
- License: Apache-2.0
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.