@acedatacloud/skills 2026.406.0 → 2026.406.2
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 +42 -150
- 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
|
|
|
@@ -64,219 +64,111 @@ Get your API token at [platform.acedata.cloud](https://platform.acedata.cloud):
|
|
|
64
64
|
export ACEDATACLOUD_API_TOKEN="your-token-here"
|
|
65
65
|
```
|
|
66
66
|
|
|
67
|
-
## Quick Install
|
|
67
|
+
## Quick Install
|
|
68
68
|
|
|
69
|
-
|
|
70
|
-
# Install globally
|
|
71
|
-
npm install -g @acedatacloud/skills
|
|
69
|
+
**One command** to install skills into your project — works with all agents:
|
|
72
70
|
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
npx
|
|
76
|
-
npx @acedatacloud/skills install --target .github/skills # → .github/skills/ (GitHub Copilot)
|
|
71
|
+
```bash
|
|
72
|
+
# Install all skills (for any agentskills.io-compatible agent)
|
|
73
|
+
npx skills add AceDataCloud/Skills --skill '*' --yes
|
|
77
74
|
|
|
78
|
-
#
|
|
79
|
-
npx
|
|
75
|
+
# Install specific skills only
|
|
76
|
+
npx skills add AceDataCloud/Skills --skill suno-music --skill midjourney-image --yes
|
|
80
77
|
```
|
|
81
78
|
|
|
79
|
+
The [`skills` CLI](https://github.com/vercel-labs/skills) auto-detects your agent and installs to the correct path.
|
|
80
|
+
|
|
82
81
|
## Usage by Platform
|
|
83
82
|
|
|
84
83
|
### Claude Code
|
|
85
84
|
|
|
86
|
-
**Option A:
|
|
85
|
+
**Option A: `skills` CLI (recommended)**
|
|
87
86
|
|
|
88
87
|
```bash
|
|
89
|
-
#
|
|
90
|
-
|
|
88
|
+
# Install all skills for Claude Code
|
|
89
|
+
npx skills add AceDataCloud/Skills --skill '*' -a claude-code --yes
|
|
91
90
|
|
|
92
|
-
# Install
|
|
93
|
-
/
|
|
94
|
-
/plugin install acedatacloud-ai-tools@acedatacloud-skills # 5 tool skills
|
|
91
|
+
# Install specific skills
|
|
92
|
+
npx skills add AceDataCloud/Skills --skill suno-music -a claude-code --yes
|
|
95
93
|
```
|
|
96
94
|
|
|
97
|
-
|
|
95
|
+
Skills are symlinked into `.claude/skills/` and auto-discovered by Claude Code.
|
|
98
96
|
|
|
99
|
-
**Option B:
|
|
97
|
+
**Option B: Plugin Marketplace**
|
|
100
98
|
|
|
101
|
-
```
|
|
102
|
-
|
|
103
|
-
|
|
99
|
+
```
|
|
100
|
+
/plugin marketplace add AceDataCloud/Skills
|
|
101
|
+
/plugin install acedatacloud-ai-media@acedatacloud-skills
|
|
102
|
+
/plugin install acedatacloud-ai-tools@acedatacloud-skills
|
|
103
|
+
```
|
|
104
104
|
|
|
105
|
-
|
|
106
|
-
claude --add-dir ./Skills/skills
|
|
105
|
+
**Option C: npm package**
|
|
107
106
|
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
claude --add-dir ./Skills/skills/midjourney-image
|
|
107
|
+
```bash
|
|
108
|
+
npx @acedatacloud/skills install --target .claude/skills
|
|
111
109
|
```
|
|
112
110
|
|
|
113
|
-
**Option
|
|
111
|
+
**Option D: Manual copy**
|
|
114
112
|
|
|
115
113
|
```bash
|
|
116
|
-
|
|
117
|
-
mkdir -p .claude/skills
|
|
114
|
+
git clone https://github.com/AceDataCloud/Skills.git
|
|
118
115
|
cp -r Skills/skills/* .claude/skills/
|
|
119
116
|
```
|
|
120
117
|
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
### GitHub Copilot (VS Code)
|
|
124
|
-
|
|
125
|
-
Copy skills into your project under `.github/skills/` or `.agents/skills/`:
|
|
118
|
+
### GitHub Copilot
|
|
126
119
|
|
|
127
120
|
```bash
|
|
128
|
-
|
|
129
|
-
mkdir -p .github/skills
|
|
130
|
-
cp -r Skills/skills/* .github/skills/
|
|
131
|
-
|
|
132
|
-
# Option 2: .agents/skills/ (agentskills.io standard path)
|
|
133
|
-
mkdir -p .agents/skills
|
|
134
|
-
cp -r Skills/skills/* .agents/skills/
|
|
121
|
+
npx skills add AceDataCloud/Skills --skill '*' -a github-copilot --yes
|
|
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 the agentskills.io format via `.agents/skills/`:
|
|
142
|
-
|
|
143
126
|
```bash
|
|
144
|
-
|
|
145
|
-
mkdir -p .agents/skills
|
|
146
|
-
cp -r Skills/skills/* .agents/skills/
|
|
147
|
-
|
|
148
|
-
# Or point Gemini CLI to the skills directory
|
|
149
|
-
gemini --add-dir ./Skills/skills
|
|
127
|
+
npx skills add AceDataCloud/Skills --skill '*' -a gemini-cli --yes
|
|
150
128
|
```
|
|
151
129
|
|
|
152
130
|
### OpenAI Codex
|
|
153
131
|
|
|
154
|
-
Codex supports the agentskills.io standard via `.agents/skills/` and `AGENTS.md`:
|
|
155
|
-
|
|
156
132
|
```bash
|
|
157
|
-
|
|
158
|
-
mkdir -p .agents/skills
|
|
159
|
-
cp -r Skills/skills/* .agents/skills/
|
|
160
|
-
|
|
161
|
-
# AGENTS.md is already included in this repo for Codex discovery
|
|
162
|
-
cp Skills/AGENTS.md .
|
|
133
|
+
npx skills add AceDataCloud/Skills --skill '*' -a codex --yes
|
|
163
134
|
```
|
|
164
135
|
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
### OpenHands / OpenDevin
|
|
136
|
+
### Cursor
|
|
168
137
|
|
|
169
138
|
```bash
|
|
170
|
-
|
|
171
|
-
mkdir -p .agents/skills
|
|
172
|
-
cp -r Skills/skills/* .agents/skills/
|
|
139
|
+
npx skills add AceDataCloud/Skills --skill '*' -a cursor --yes
|
|
173
140
|
```
|
|
174
141
|
|
|
175
|
-
OpenHands auto-discovers `SKILL.md` files in `.agents/skills/`.
|
|
176
|
-
|
|
177
142
|
### Roo Code
|
|
178
143
|
|
|
179
144
|
```bash
|
|
180
|
-
|
|
181
|
-
mkdir -p .agents/skills
|
|
182
|
-
cp -r Skills/skills/* .agents/skills/
|
|
145
|
+
npx skills add AceDataCloud/Skills --skill '*' -a roo --yes
|
|
183
146
|
```
|
|
184
147
|
|
|
185
|
-
###
|
|
148
|
+
### Goose
|
|
186
149
|
|
|
187
150
|
```bash
|
|
188
|
-
|
|
189
|
-
mkdir -p .agents/skills
|
|
190
|
-
cp -r Skills/skills/* .agents/skills/
|
|
151
|
+
npx skills add AceDataCloud/Skills --skill '*' -a goose --yes
|
|
191
152
|
```
|
|
192
153
|
|
|
193
|
-
### Goose (Block)
|
|
194
|
-
|
|
195
|
-
```bash
|
|
196
|
-
# Goose follows the agentskills.io standard
|
|
197
|
-
mkdir -p .agents/skills
|
|
198
|
-
cp -r Skills/skills/* .agents/skills/
|
|
199
|
-
```
|
|
200
|
-
|
|
201
|
-
### Cursor
|
|
202
|
-
|
|
203
|
-
Cursor supports skills via the `.cursor/rules/` directory:
|
|
204
|
-
|
|
205
|
-
```bash
|
|
206
|
-
# Copy skills into your project
|
|
207
|
-
mkdir -p .cursor/rules
|
|
208
|
-
cp -r Skills/skills/*/*.md .cursor/rules/
|
|
209
|
-
```
|
|
210
|
-
|
|
211
|
-
Alternatively, Cursor can use `.agents/skills/` with newer versions.
|
|
212
|
-
|
|
213
154
|
### Windsurf
|
|
214
155
|
|
|
215
156
|
```bash
|
|
216
|
-
|
|
217
|
-
mkdir -p .agents/skills
|
|
218
|
-
cp -r Skills/skills/* .agents/skills/
|
|
157
|
+
npx skills add AceDataCloud/Skills --skill '*' -a windsurf --yes
|
|
219
158
|
```
|
|
220
159
|
|
|
221
160
|
### Cline
|
|
222
161
|
|
|
223
|
-
Cline supports custom instructions and can load skills from `.agents/skills/`:
|
|
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:
|
|
231
|
-
|
|
232
|
-
1. Open Cline sidebar → Settings → Custom Instructions
|
|
233
|
-
2. Paste the content from any `SKILL.md` file
|
|
234
|
-
3. Cline will use the skill context in conversations
|
|
235
|
-
|
|
236
|
-
### Continue.dev
|
|
237
|
-
|
|
238
162
|
```bash
|
|
239
|
-
|
|
240
|
-
mkdir -p .agents/skills
|
|
241
|
-
cp -r Skills/skills/* .agents/skills/
|
|
163
|
+
npx skills add AceDataCloud/Skills --skill '*' -a cline --yes
|
|
242
164
|
```
|
|
243
165
|
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
```yaml
|
|
247
|
-
docs:
|
|
248
|
-
- title: "AceDataCloud Skills"
|
|
249
|
-
startUrl: "https://github.com/AceDataCloud/Skills"
|
|
250
|
-
```
|
|
166
|
+
### Other Agents
|
|
251
167
|
|
|
252
|
-
|
|
168
|
+
The `skills` CLI supports 40+ agents. Use `npx skills add --help` to see all options, or install to the universal `.agents/skills/` path:
|
|
253
169
|
|
|
254
170
|
```bash
|
|
255
|
-
|
|
256
|
-
mkdir -p .agents/skills
|
|
257
|
-
cp -r Skills/skills/* .agents/skills/
|
|
258
|
-
```
|
|
259
|
-
|
|
260
|
-
Amazon Q Developer can reference skills from the workspace context.
|
|
261
|
-
|
|
262
|
-
### Zed
|
|
263
|
-
|
|
264
|
-
Zed AI assistant can use context from workspace files:
|
|
265
|
-
|
|
266
|
-
```bash
|
|
267
|
-
mkdir -p .agents/skills
|
|
268
|
-
cp -r Skills/skills/* .agents/skills/
|
|
269
|
-
```
|
|
270
|
-
|
|
271
|
-
Skills are automatically picked up as workspace context.
|
|
272
|
-
|
|
273
|
-
### Any agentskills.io-compatible Agent
|
|
274
|
-
|
|
275
|
-
The universal pattern works with all compatible agents:
|
|
276
|
-
|
|
277
|
-
```bash
|
|
278
|
-
git clone https://github.com/AceDataCloud/Skills.git
|
|
279
|
-
# Then point your agent to ./Skills/skills/
|
|
171
|
+
npx skills add AceDataCloud/Skills --skill '*' --yes
|
|
280
172
|
```
|
|
281
173
|
|
|
282
174
|
## Pairing Skills with MCP Servers
|
|
@@ -288,7 +180,7 @@ Skills provide **knowledge** (when to use, parameters, gotchas). MCP servers pro
|
|
|
288
180
|
| suno-music | [mcp-suno](https://pypi.org/project/mcp-suno/) | `pip install mcp-suno` | `https://suno.mcp.acedata.cloud/mcp` |
|
|
289
181
|
| midjourney-image | [mcp-midjourney](https://pypi.org/project/mcp-midjourney/) | `pip install mcp-midjourney` | `https://midjourney.mcp.acedata.cloud/mcp` |
|
|
290
182
|
| 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` |
|
|
183
|
+
| flux-image | [mcp-flux-pro](https://pypi.org/project/mcp-flux-pro/) | `pip install mcp-flux-pro` | `https://flux.mcp.acedata.cloud/mcp` |
|
|
292
184
|
| luma-video | [mcp-luma](https://pypi.org/project/mcp-luma/) | `pip install mcp-luma` | `https://luma.mcp.acedata.cloud/mcp` |
|
|
293
185
|
| sora-video | [mcp-sora](https://pypi.org/project/mcp-sora/) | `pip install mcp-sora` | `https://sora.mcp.acedata.cloud/mcp` |
|
|
294
186
|
| 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.2",
|
|
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)
|