skills/discord-adv/SKILL.md
Advanced Discord server management via Discord API v10: send embeds, create channels, manage roles, moderation. Use when managing Discord server structure, sending rich embedded messages, or moderating users. Requires DISCORD_BOT_TOKEN.
npx skillsauth add openxjarvis/openclaw-python discord-advInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Advanced Discord operations including server management, roles, channels, and moderation.
Base URL: https://discord.com/api/v10/
POST https://discord.com/api/v10/channels/{channel_id}/messages
Headers:
Authorization: Bot {DISCORD_BOT_TOKEN}
Body: {
"content": "Message text",
"embeds": [...]
}
POST https://discord.com/api/v10/guilds/{guild_id}/channels
Body: {
"name": "channel-name",
"type": 0
}
PUT https://discord.com/api/v10/guilds/{guild_id}/members/{user_id}/roles/{role_id}
embed = {
"title": "Embed Title",
"description": "Embed description",
"color": 3447003, # Blue
"fields": [
{"name": "Field 1", "value": "Value 1", "inline": True}
],
"footer": {"text": "Footer text"},
"timestamp": "2026-01-27T00:00:00Z"
}
User: "Send an embed to #announcements"
User: "Create a new voice channel"
User: "Add moderator role to user"
export DISCORD_BOT_TOKEN="Bot ..."
Get token from: https://discord.com/developers/applications
Bot needs appropriate permissions:
tools
A CLI tool for making authenticated requests to the X (Twitter) API. Use this skill when you need to post tweets, reply, quote, search, read posts, manage followers, send DMs, upload media, or interact with any X API v2 endpoint.
development
Spreadsheet operations: open, read, edit, create .xlsx/.xlsm/.csv/.tsv files. Use for financial models, data tables, formula-based spreadsheets, data cleaning, charting, or any Excel file task. Triggers on: any .xlsx/.csv filename, 'spreadsheet', 'Excel', 'workbook'. Use openpyxl for formulas/formatting, pandas for data analysis.
development
Test local web applications using Playwright. Use when: testing a running web app, checking UI behavior, automating browser interactions, verifying HTML artifacts, or doing visual regression checks.
tools
Search the web for information and fetch URL content. Use when user asks to search for recent information, look up websites, fetch web page content, or find online resources. No external tools required — uses built-in web_search and web_fetch capabilities.