AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified Apache-2.0 Self-run

Discord

skill-kubiyabot-skill-discord-skill · by kubiyabot

Discord server and bot management

No reviews yet
0 installs
36 views
0.0% view→install

Install

$ agentstack add skill-kubiyabot-skill-discord-skill

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-kubiyabot-skill-discord-skill)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
7mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Discord? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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 ID
  • content (required, string): Message content
  • embed (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) ID
  • type (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 ID
  • name (required, string): Thread name
  • message_id (optional, string): Message to create thread from
  • auto_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 ID
  • limit (optional, number): Number of messages (default: 50)
  • before (optional, string): Get messages before this ID
  • after (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 ID
  • limit (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 ID
  • user_id (required, string): User ID
  • role_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 ID
  • user_id (required, string): User ID
  • role_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 ID
  • message_id (required, string): Message ID
  • emoji (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.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.