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…
Manage and update Discord channels via the Discord API. Use this skill when the user wants to modify channel properties, update names/topics, change permissions, or delete channels.
$ npx -y skills add evolution-foundation/evo-nexus --skill discord-manage-channel --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/discord-manage-channelContext preview
The summary Claude sees to decide when to auto-load this skill.
Manage and update Discord channels via the Discord API. Use this skill when the user wants to modify channel properties, update names/topics, change permissions, or delete channels.
name: discord-manage-channel description: Manage and update Discord channels via the Discord API. Use this skill when the user wants to modify channel properties, update names/topics, change permissions, or delete channels.
Manage and update Discord channels using the Discord API v10. This skill supports modifying channel properties including name, topic, position, permissions, and deleting channels.
Use this skill when the user wants to:
When the user requests to manage a Discord channel:
1. **Validate Requirements**
2. **Determine Operation Type**
3. **For Updates - Prepare Payload** Include only the fields you want to change:
4. **Make the API Request**
**Update Channel (PATCH):**
curl -X PATCH "https://discord.com/api/v10/channels/{CHANNEL_ID}" \
-H "Authorization: Bot ${DISCORD_BOT_TOKEN}" \
-H "Content-Type: application/json" \
-d '{
"name": "new-channel-name",
"topic": "New channel topic"
}'**Delete Channel (DELETE):**
curl -X DELETE "https://discord.com/api/v10/channels/{CHANNEL_ID}" \
-H "Authorization: Bot ${DISCORD_BOT_TOKEN}"5. **Handle Response**
6. **Report Results**
| Property | Type | Description | Validation | |----------|------|-------------|------------| | name | string | Channel name | 2-100 chars, lowercase, hyphens/underscores | | topic | string | Channel topic | Max 1024 characters | | position | integer | Sort position | Positive integer | | parent_id | snowflake | Category ID | Valid category ID or null | | nsfw | boolean | NSFW status | true or false | | permission_overwrites | array | Permission overrides | Array of permission objects |
| Property | Type | Description | Validation | |----------|------|-------------|------------| | name | string | Channel name | 2-100 chars | | position | integer | Sort position | Positive integer | | parent_id | snowflake | Category ID | Valid category ID or null | | user_limit | integer | Max users | 0-99 (0 = unlimited) | | bitrate | integer | Audio quality | 8000-96000 (higher for boosted) | | permission_overwrites | array | Permission overrides | Array of permission objects |
| Property | Type | Description | Validation | |----------|------|-------------|------------| | name | string | Category name | 2-100 chars | | position | integer | Sort position | Positive integer | | permission_overwrites | array | Permission overrides | Array of permission objects |
{
"name": "new-channel-name"
}{
"topic": "New channel description or topic"
}{
"parent_id": "123456789012345678"
}{
"parent_id": null
}{
"nsfw": true
}{
"user_limit": 10,
"bitrate": 64000
}{
"position": 5
}To update channel permissions:
{
"permission_overwrites": [
{
"id": "role_or_user_id",
"type": 0,
"allow": "1024",
"deny": "2048"
}
]
}Permission structure:
Common permission bits:
**IMPORTANT:** Channel deletion is permanent and cannot be undone.
Before deleting: 1. Confirm with user that deletion is intentional 2. Warn that all messages will be lost 3. Suggest archiving as alternative if applicable 4. Verify channel ID is correct
Delete command:
curl -X DELETE "https://discord.com/api/v10/channels/{CHANNEL_ID}" \
-H "AuthoriGenerate 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,…