ai-image-creator
Generate PNG images using AI (multiple models via OpenRouter including Gemini, FLUX.2, Riverflow, SeedDream, GPT-5 Image, proxied through Cloudflare AI Gateway…
Send messages to Discord channels via the Discord API. Use this skill when the user wants to send text messages, notifications, or formatted content to a Discord channel.
$ npx -y skills add evolution-foundation/evo-nexus --skill discord-send-message --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/discord-send-messageContext preview
The summary Claude sees to decide when to auto-load this skill.
Send messages to Discord channels via the Discord API. Use this skill when the user wants to send text messages, notifications, or formatted content to a Discord channel.
name: discord-send-message description: Send messages to Discord channels via the Discord API. Use this skill when the user wants to send text messages, notifications, or formatted content to a Discord channel.
Send messages to Discord channels using the Discord API v10. This skill supports plain text messages, formatted markdown content, and embeds.
Use this skill when the user wants to:
When the user requests to send a Discord message:
1. **Validate Requirements**
2. **Prepare the Message**
3. **Make the API Request** Use the following curl command structure:
curl -X POST "https://discord.com/api/v10/channels/{CHANNEL_ID}/messages" \
-H "Authorization: Bot ${DISCORD_BOT_TOKEN}" \
-H "Content-Type: application/json" \
-d '{"content": "Your message here"}'Replace:
4. **Handle Response**
5. **Report Results**
{
"content": "Hello from Claude Code!"
}{
"content": "**Bold text** *Italic text* `code` [Link](https://example.com)"
}{
"embeds": [{
"title": "Notification",
"description": "This is an embed message",
"color": 3447003,
"fields": [
{
"name": "Field Name",
"value": "Field Value",
"inline": false
}
]
}]
}{
"content": "Check out this embed:",
"embeds": [{
"title": "Title",
"description": "Description"
}]
}Before sending:
**401 Unauthorized**
**403 Forbidden**
**404 Not Found**
**400 Bad Request**
See `examples.md` for detailed usage scenarios.
Generate PNG images using AI (multiple models via OpenRouter including Gemini, FLUX.2, Riverflow, SeedDream, GPT-5 Image, proxied through Cloudflare AI Gateway…
Create a new custom agent for the workspace. Guides the user through defining agent name, domain, personality, skills, model, and memory folder. Use when the…
Create a new slash command for Claude Code. Guides the user through defining the command name, what it does, and generates the markdown file in…
Create a Mission, Project, or Goal (Mission → Project → Goal → Task hierarchy) in EvoNexus. Guides the user through picking a mission, choosing or creating a…
Create a new heartbeat (proactive agent scheduled with a decision prompt) for EvoNexus. Guides the user through picking an agent, setting interval, wake…
Create a new custom integration (API/service wrapper) for the workspace. Guides the user through defining the integration's slug, display name, description,…