@acedatacloud/skills 2026.406.0 → 2026.406.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +50 -73
- package/package.json +1 -1
- package/skills/_shared/mcp-servers.md +1 -1
- package/skills/flux-image/SKILL.md +2 -2
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
|
|
11
11
|
[Agent Skills](https://agentskills.io/) for [AceDataCloud](https://platform.acedata.cloud) AI services — music, image, video generation, LLM chat, web search, and more.
|
|
12
12
|
|
|
13
|
-
Compatible with **
|
|
13
|
+
Compatible with **30+ AI coding agents** via the [agentskills.io](https://agentskills.io/) open standard: Claude Code, GitHub Copilot, Gemini CLI, OpenAI Codex, Cursor, Roo Code, Goose, and more.
|
|
14
14
|
|
|
15
15
|
## Available Skills (19)
|
|
16
16
|
|
|
@@ -83,70 +83,51 @@ npx @acedatacloud/skills install
|
|
|
83
83
|
|
|
84
84
|
### Claude Code
|
|
85
85
|
|
|
86
|
-
**Option A:
|
|
86
|
+
**Option A: Copy into your project (recommended)**
|
|
87
87
|
|
|
88
88
|
```bash
|
|
89
|
-
#
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
# Install skill bundles
|
|
93
|
-
/plugin install acedatacloud-ai-media@acedatacloud-skills # 13 media skills
|
|
94
|
-
/plugin install acedatacloud-ai-tools@acedatacloud-skills # 5 tool skills
|
|
89
|
+
# Copy skills into your project's .claude/skills/ directory
|
|
90
|
+
mkdir -p .claude/skills
|
|
91
|
+
cp -r Skills/skills/* .claude/skills/
|
|
95
92
|
```
|
|
96
93
|
|
|
97
|
-
|
|
94
|
+
Claude Code auto-discovers skills in `.claude/skills/` when working in that project.
|
|
98
95
|
|
|
99
|
-
**Option B:
|
|
96
|
+
**Option B: Plugin Marketplace**
|
|
100
97
|
|
|
101
98
|
```bash
|
|
102
|
-
#
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
# Add all skills at once
|
|
106
|
-
claude --add-dir ./Skills/skills
|
|
99
|
+
# Add the marketplace source
|
|
100
|
+
/plugin marketplace add AceDataCloud/Skills
|
|
107
101
|
|
|
108
|
-
#
|
|
109
|
-
|
|
110
|
-
|
|
102
|
+
# Install skill bundles
|
|
103
|
+
/plugin install acedatacloud-ai-media@acedatacloud-skills # 14 media skills
|
|
104
|
+
/plugin install acedatacloud-ai-tools@acedatacloud-skills # 5 tool skills
|
|
111
105
|
```
|
|
112
106
|
|
|
113
|
-
**Option C:
|
|
107
|
+
**Option C: Personal skills (available across all projects)**
|
|
114
108
|
|
|
115
109
|
```bash
|
|
116
|
-
# Copy
|
|
117
|
-
mkdir -p
|
|
118
|
-
cp -r Skills/skills/*
|
|
110
|
+
# Copy to your personal skills directory
|
|
111
|
+
mkdir -p ~/.claude/skills
|
|
112
|
+
cp -r Skills/skills/* ~/.claude/skills/
|
|
119
113
|
```
|
|
120
114
|
|
|
121
|
-
Then Claude Code auto-discovers them when working in that project.
|
|
122
|
-
|
|
123
115
|
### GitHub Copilot (VS Code)
|
|
124
116
|
|
|
125
|
-
|
|
117
|
+
GitHub Copilot auto-discovers skills from `.github/skills/`, `.claude/skills/`, and `.agents/skills/`:
|
|
126
118
|
|
|
127
119
|
```bash
|
|
128
|
-
# Option 1: .github/skills/ (GitHub Copilot native path)
|
|
129
|
-
mkdir -p .github/skills
|
|
130
|
-
cp -r Skills/skills/* .github/skills/
|
|
131
|
-
|
|
132
|
-
# Option 2: .agents/skills/ (agentskills.io standard path)
|
|
133
120
|
mkdir -p .agents/skills
|
|
134
121
|
cp -r Skills/skills/* .agents/skills/
|
|
135
122
|
```
|
|
136
123
|
|
|
137
|
-
GitHub Copilot in VS Code will auto-discover skills on file save and use them when relevant.
|
|
138
|
-
|
|
139
124
|
### Gemini CLI
|
|
140
125
|
|
|
141
|
-
Gemini CLI supports
|
|
126
|
+
Gemini CLI supports `.agents/skills/` (project) and `~/.agents/skills/` (personal):
|
|
142
127
|
|
|
143
128
|
```bash
|
|
144
|
-
# Copy into your project
|
|
145
129
|
mkdir -p .agents/skills
|
|
146
130
|
cp -r Skills/skills/* .agents/skills/
|
|
147
|
-
|
|
148
|
-
# Or point Gemini CLI to the skills directory
|
|
149
|
-
gemini --add-dir ./Skills/skills
|
|
150
131
|
```
|
|
151
132
|
|
|
152
133
|
### OpenAI Codex
|
|
@@ -176,8 +157,9 @@ OpenHands auto-discovers `SKILL.md` files in `.agents/skills/`.
|
|
|
176
157
|
|
|
177
158
|
### Roo Code
|
|
178
159
|
|
|
160
|
+
Roo Code supports `.agents/skills/` (cross-agent) and `.roo/skills/` (Roo-specific):
|
|
161
|
+
|
|
179
162
|
```bash
|
|
180
|
-
# Roo Code uses the agentskills.io standard path
|
|
181
163
|
mkdir -p .agents/skills
|
|
182
164
|
cp -r Skills/skills/* .agents/skills/
|
|
183
165
|
```
|
|
@@ -192,83 +174,78 @@ cp -r Skills/skills/* .agents/skills/
|
|
|
192
174
|
|
|
193
175
|
### Goose (Block)
|
|
194
176
|
|
|
177
|
+
Goose supports `.agents/skills/` (project) and `~/.agents/skills/` (personal):
|
|
178
|
+
|
|
195
179
|
```bash
|
|
196
|
-
# Goose follows the agentskills.io standard
|
|
197
180
|
mkdir -p .agents/skills
|
|
198
181
|
cp -r Skills/skills/* .agents/skills/
|
|
199
182
|
```
|
|
200
183
|
|
|
201
184
|
### Cursor
|
|
202
185
|
|
|
203
|
-
Cursor supports
|
|
186
|
+
Cursor supports the agentskills.io standard. You can also use `.cursor/rules/`:
|
|
204
187
|
|
|
205
188
|
```bash
|
|
206
|
-
#
|
|
189
|
+
# Option 1: agentskills.io path
|
|
190
|
+
mkdir -p .agents/skills
|
|
191
|
+
cp -r Skills/skills/* .agents/skills/
|
|
192
|
+
|
|
193
|
+
# Option 2: Cursor-native path
|
|
207
194
|
mkdir -p .cursor/rules
|
|
208
195
|
cp -r Skills/skills/*/*.md .cursor/rules/
|
|
209
196
|
```
|
|
210
197
|
|
|
211
|
-
Alternatively, Cursor can use `.agents/skills/` with newer versions.
|
|
212
|
-
|
|
213
198
|
### Windsurf
|
|
214
199
|
|
|
200
|
+
Windsurf uses `.windsurf/rules/` for custom instructions:
|
|
201
|
+
|
|
215
202
|
```bash
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
cp -r Skills/skills/* .agents/skills/
|
|
203
|
+
mkdir -p .windsurf/rules
|
|
204
|
+
cp -r Skills/skills/*/*.md .windsurf/rules/
|
|
219
205
|
```
|
|
220
206
|
|
|
221
207
|
### Cline
|
|
222
208
|
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
```bash
|
|
226
|
-
mkdir -p .agents/skills
|
|
227
|
-
cp -r Skills/skills/* .agents/skills/
|
|
228
|
-
```
|
|
229
|
-
|
|
230
|
-
Or add skills directly in Cline's settings:
|
|
209
|
+
Add skills as custom instructions in Cline:
|
|
231
210
|
|
|
232
211
|
1. Open Cline sidebar → Settings → Custom Instructions
|
|
233
212
|
2. Paste the content from any `SKILL.md` file
|
|
234
213
|
3. Cline will use the skill context in conversations
|
|
235
214
|
|
|
236
|
-
|
|
215
|
+
Or use `.clinerules` directory:
|
|
237
216
|
|
|
238
217
|
```bash
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
cp -r Skills/skills/* .agents/skills/
|
|
218
|
+
mkdir -p .clinerules
|
|
219
|
+
cp -r Skills/skills/*/*.md .clinerules/
|
|
242
220
|
```
|
|
243
221
|
|
|
244
|
-
|
|
222
|
+
### Continue.dev
|
|
223
|
+
|
|
224
|
+
Configure in `.continue/rules/`:
|
|
245
225
|
|
|
246
|
-
```
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
startUrl: "https://github.com/AceDataCloud/Skills"
|
|
226
|
+
```bash
|
|
227
|
+
mkdir -p .continue/rules
|
|
228
|
+
cp -r Skills/skills/*/*.md .continue/rules/
|
|
250
229
|
```
|
|
251
230
|
|
|
252
231
|
### Amazon Q Developer
|
|
253
232
|
|
|
233
|
+
Amazon Q uses `.amazonq/rules/`:
|
|
234
|
+
|
|
254
235
|
```bash
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
cp -r Skills/skills/* .agents/skills/
|
|
236
|
+
mkdir -p .amazonq/rules
|
|
237
|
+
cp -r Skills/skills/*/*.md .amazonq/rules/
|
|
258
238
|
```
|
|
259
239
|
|
|
260
|
-
Amazon Q Developer can reference skills from the workspace context.
|
|
261
|
-
|
|
262
240
|
### Zed
|
|
263
241
|
|
|
264
|
-
Zed
|
|
242
|
+
Zed reads the `.rules` file at the project root. Copy the skill content you need:
|
|
265
243
|
|
|
266
244
|
```bash
|
|
267
|
-
|
|
268
|
-
cp -r Skills/skills/* .agents/skills/
|
|
245
|
+
cat Skills/skills/suno-music/SKILL.md >> .rules
|
|
269
246
|
```
|
|
270
247
|
|
|
271
|
-
|
|
248
|
+
Zed also reads `AGENTS.md`, `.github/copilot-instructions.md`, and other agent instruction files as compatibility aliases.
|
|
272
249
|
|
|
273
250
|
### Any agentskills.io-compatible Agent
|
|
274
251
|
|
|
@@ -288,7 +265,7 @@ Skills provide **knowledge** (when to use, parameters, gotchas). MCP servers pro
|
|
|
288
265
|
| suno-music | [mcp-suno](https://pypi.org/project/mcp-suno/) | `pip install mcp-suno` | `https://suno.mcp.acedata.cloud/mcp` |
|
|
289
266
|
| midjourney-image | [mcp-midjourney](https://pypi.org/project/mcp-midjourney/) | `pip install mcp-midjourney` | `https://midjourney.mcp.acedata.cloud/mcp` |
|
|
290
267
|
| google-search | [mcp-serp](https://pypi.org/project/mcp-serp/) | `pip install mcp-serp` | `https://serp.mcp.acedata.cloud/mcp` |
|
|
291
|
-
| flux-image | [mcp-flux](https://pypi.org/project/mcp-flux/) | `pip install mcp-flux` | `https://flux.mcp.acedata.cloud/mcp` |
|
|
268
|
+
| flux-image | [mcp-flux-pro](https://pypi.org/project/mcp-flux-pro/) | `pip install mcp-flux-pro` | `https://flux.mcp.acedata.cloud/mcp` |
|
|
292
269
|
| luma-video | [mcp-luma](https://pypi.org/project/mcp-luma/) | `pip install mcp-luma` | `https://luma.mcp.acedata.cloud/mcp` |
|
|
293
270
|
| sora-video | [mcp-sora](https://pypi.org/project/mcp-sora/) | `pip install mcp-sora` | `https://sora.mcp.acedata.cloud/mcp` |
|
|
294
271
|
| veo-video | [mcp-veo](https://pypi.org/project/mcp-veo/) | `pip install mcp-veo` | `https://veo.mcp.acedata.cloud/mcp` |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acedatacloud/skills",
|
|
3
|
-
"version": "2026.406.
|
|
3
|
+
"version": "2026.406.1",
|
|
4
4
|
"description": "Agent Skills for AceDataCloud AI services — music, image, video generation, LLM chat, web search. Compatible with Claude Code, GitHub Copilot, Gemini CLI, OpenAI Codex, and 30+ AI coding agents.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agent-skills",
|
|
@@ -10,7 +10,7 @@ Each AceDataCloud service has a corresponding MCP server that provides tool-use
|
|
|
10
10
|
| producer-music | — | — |
|
|
11
11
|
| midjourney-image | `pip install mcp-midjourney` | `https://midjourney.mcp.acedata.cloud/mcp` |
|
|
12
12
|
| google-search | `pip install mcp-serp` | `https://serp.mcp.acedata.cloud/mcp` |
|
|
13
|
-
| flux-image | `pip install mcp-flux` | `https://flux.mcp.acedata.cloud/mcp` |
|
|
13
|
+
| flux-image | `pip install mcp-flux-pro` | `https://flux.mcp.acedata.cloud/mcp` |
|
|
14
14
|
| luma-video | `pip install mcp-luma` | `https://luma.mcp.acedata.cloud/mcp` |
|
|
15
15
|
| sora-video | `pip install mcp-sora` | `https://sora.mcp.acedata.cloud/mcp` |
|
|
16
16
|
| veo-video | `pip install mcp-veo` | `https://veo.mcp.acedata.cloud/mcp` |
|
|
@@ -5,7 +5,7 @@ license: Apache-2.0
|
|
|
5
5
|
metadata:
|
|
6
6
|
author: acedatacloud
|
|
7
7
|
version: "1.0"
|
|
8
|
-
compatibility: Requires ACEDATACLOUD_API_TOKEN environment variable. Optionally pair with mcp-flux for tool-use.
|
|
8
|
+
compatibility: Requires ACEDATACLOUD_API_TOKEN environment variable. Optionally pair with mcp-flux-pro for tool-use.
|
|
9
9
|
---
|
|
10
10
|
|
|
11
11
|
# Flux Image Generation
|
|
@@ -79,4 +79,4 @@ POST /flux/images
|
|
|
79
79
|
- Ultra model produces highest quality but is slowest — use dev for iteration, ultra for final output
|
|
80
80
|
- All generation is async — always set `"callback_url"` to get a `task_id` immediately, then poll `/flux/tasks`
|
|
81
81
|
|
|
82
|
-
> **MCP:** `pip install mcp-flux` | Hosted: `https://flux.mcp.acedata.cloud/mcp` | See [all MCP servers](../_shared/mcp-servers.md)
|
|
82
|
+
> **MCP:** `pip install mcp-flux-pro` | Hosted: `https://flux.mcp.acedata.cloud/mcp` | See [all MCP servers](../_shared/mcp-servers.md)
|