Agent Skills for AceDataCloud AI services — music, image, video generation, LLM chat, web search, and more.
Compatible with 30+ AI coding agents via the agentskills.io open standard: Claude Code, GitHub Copilot, Gemini CLI, OpenAI Codex, Cursor, Roo Code, Goose, and more.
| Skill | Description |
|---|---|
| suno-music | Generate AI music, lyrics, covers, and vocal extraction with Suno |
| producer-music | Generate music, covers, extend tracks, swap vocals with Producer |
| fish-audio | Text-to-speech and voice synthesis with Fish Audio |
| Skill | Description |
|---|---|
| midjourney-image | Generate, edit, blend, describe, and upscale images with Midjourney |
| flux-image | Generate and edit images with Flux (Black Forest Labs) |
| seedream-image | Generate and edit images with ByteDance Seedream |
| nano-banana-image | Generate and edit images with Google Gemini (NanoBanana) |
| Skill | Description |
|---|---|
| luma-video | Generate videos with Luma Dream Machine |
| sora-video | Generate videos with OpenAI Sora |
| veo-video | Generate videos with Google Veo (native audio) |
| kling-video | Generate videos with Kuaishou Kling (motion control) |
| hailuo-video | Generate videos with Hailuo / MiniMax |
| seedance-video | Generate dance/motion videos with ByteDance Seedance |
| Skill | Description |
|---|---|
| ai-chat | Unified LLM gateway — GPT, Claude, Gemini, DeepSeek, Grok (50+ models) |
| google-search | Search the web, images, news, maps, places, and videos via Google |
| face-transform | Face analysis, beautification, age/gender transform, swap, cartoon |
| short-url | Create and manage short URLs |
| acedatacloud-api | API usage guide — authentication, SDKs, error handling |
Get your API token at platform.acedata.cloud:
- Register an account
- Browse and subscribe to a service (most have free quota)
- Create an API credential (token)
export ACEDATACLOUD_API_TOKEN="your-token-here"One command to install skills into your project — works with all agents:
# Install all skills (for any agentskills.io-compatible agent)
npx skills add acedatacloud/skills --skill '*' --yes
# Install specific skills only
npx skills add acedatacloud/skills --skill suno-music --skill midjourney-image --yesThe skills CLI auto-detects your agent and installs to the correct path.
Option A: skills CLI (recommended)
# Install all skills for Claude Code
npx skills add acedatacloud/skills --skill '*' -a claude-code --yes
# Install specific skills
npx skills add acedatacloud/skills --skill suno-music -a claude-code --yesSkills are symlinked into .claude/skills/ and auto-discovered by Claude Code.
Option B: Plugin Marketplace
/plugin marketplace add acedatacloud/skills
/plugin install acedatacloud-ai-media@acedatacloud-skills
/plugin install acedatacloud-ai-tools@acedatacloud-skills
Option C: npm package
npx @acedatacloud/skills install --target .claude/skillsOption D: Manual copy
git clone https://github.com/AceDataCloud/Skills.git
cp -r Skills/skills/* .claude/skills/npx skills add acedatacloud/skills --skill '*' -a github-copilot --yesnpx skills add acedatacloud/skills --skill '*' -a gemini-cli --yesnpx skills add acedatacloud/skills --skill '*' -a codex --yesnpx skills add acedatacloud/skills --skill '*' -a cursor --yesnpx skills add acedatacloud/skills --skill '*' -a roo --yesnpx skills add acedatacloud/skills --skill '*' -a goose --yesnpx skills add acedatacloud/skills --skill '*' -a windsurf --yesnpx skills add acedatacloud/skills --skill '*' -a cline --yesThe skills CLI supports 40+ agents. Use npx skills add --help to see all options, or install to the universal .agents/skills/ path:
npx skills add acedatacloud/skills --skill '*' --yesSkills provide knowledge (when to use, parameters, gotchas). MCP servers provide tools (executable functions the agent can call). Together they give the best experience.
| Skill | MCP Server | Install | Hosted Endpoint |
|---|---|---|---|
| suno-music | mcp-suno | pip install mcp-suno |
https://suno.mcp.acedata.cloud/mcp |
| midjourney-image | mcp-midjourney | pip install mcp-midjourney |
https://midjourney.mcp.acedata.cloud/mcp |
| google-search | mcp-serp | pip install mcp-serp |
https://serp.mcp.acedata.cloud/mcp |
| flux-image | mcp-flux-pro | pip install mcp-flux-pro |
https://flux.mcp.acedata.cloud/mcp |
| luma-video | mcp-luma | pip install mcp-luma |
https://luma.mcp.acedata.cloud/mcp |
| sora-video | mcp-sora | pip install mcp-sora |
https://sora.mcp.acedata.cloud/mcp |
| veo-video | mcp-veo | pip install mcp-veo |
https://veo.mcp.acedata.cloud/mcp |
| seedream-image | mcp-seedream | pip install mcp-seedream |
https://seedream.mcp.acedata.cloud/mcp |
| seedance-video | mcp-seedance | pip install mcp-seedance |
https://seedance.mcp.acedata.cloud/mcp |
| nano-banana-image | mcp-nano-banana | pip install mcp-nano-banana |
https://nano-banana.mcp.acedata.cloud/mcp |
| short-url | mcp-shorturl | pip install mcp-shorturl |
https://short-url.mcp.acedata.cloud/mcp |
| wan-video | mcp-wan | pip install mcp-wan |
https://wan.mcp.acedata.cloud/mcp |
Using hosted MCP endpoints (no local install needed):
{
"mcpServers": {
"suno": {
"url": "https://suno.mcp.acedata.cloud/mcp",
"headers": {
"Authorization": "Bearer YOUR_TOKEN"
}
}
}
}Ask your AI agent:
"Generate a lo-fi hip hop track with rain sounds using Suno"
The agent will:
- Read the
suno-musicskill to understand the API - Call the Suno MCP server (if configured) or guide you through the API call
- Handle task polling until the music is ready
- Return the audio URL
We welcome contributions! To add a new skill:
- Create a directory under
skills/matching the skill name - Add a
SKILL.mdfollowing the Agent Skills specification - Use the template as a starting point
- Reference shared files (
../_shared/authentication.md,../_shared/async-tasks.md,../_shared/mcp-servers.md) instead of duplicating common sections - Submit a pull request — CI will validate your skill format
Note: .agents/skills/ and .github/skills/ are symlinks to skills/ — do not modify files via those paths.