@acedatacloud/skills 2026.406.1 → 2026.406.3

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 CHANGED
@@ -64,196 +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 (npm)
67
+ ## Quick Install
68
68
 
69
- ```bash
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
- # Copy all skills into your project
74
- npx @acedatacloud/skills install # .agents/skills/ (universal)
75
- npx @acedatacloud/skills install --target .claude/skills # .claude/skills/ (Claude Code)
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
- # Or use npx directly (no install needed)
79
- npx @acedatacloud/skills install
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: Copy into your project (recommended)**
85
+ **Option A: `skills` CLI (recommended)**
87
86
 
88
87
  ```bash
89
- # Copy skills into your project's .claude/skills/ directory
90
- mkdir -p .claude/skills
91
- cp -r Skills/skills/* .claude/skills/
88
+ # Install all skills for Claude Code
89
+ npx skills add acedatacloud/skills --skill '*' -a claude-code --yes
90
+
91
+ # Install specific skills
92
+ npx skills add acedatacloud/skills --skill suno-music -a claude-code --yes
92
93
  ```
93
94
 
94
- Claude Code auto-discovers skills in `.claude/skills/` when working in that project.
95
+ Skills are symlinked into `.claude/skills/` and auto-discovered by Claude Code.
95
96
 
96
97
  **Option B: Plugin Marketplace**
97
98
 
98
- ```bash
99
- # Add the marketplace source
100
- /plugin marketplace add AceDataCloud/Skills
101
-
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
105
99
  ```
106
-
107
- **Option C: Personal skills (available across all projects)**
108
-
109
- ```bash
110
- # Copy to your personal skills directory
111
- mkdir -p ~/.claude/skills
112
- cp -r Skills/skills/* ~/.claude/skills/
100
+ /plugin marketplace add acedatacloud/skills
101
+ /plugin install acedatacloud-ai-media@acedatacloud-skills
102
+ /plugin install acedatacloud-ai-tools@acedatacloud-skills
113
103
  ```
114
104
 
115
- ### GitHub Copilot (VS Code)
116
-
117
- GitHub Copilot auto-discovers skills from `.github/skills/`, `.claude/skills/`, and `.agents/skills/`:
105
+ **Option C: npm package**
118
106
 
119
107
  ```bash
120
- mkdir -p .agents/skills
121
- cp -r Skills/skills/* .agents/skills/
108
+ npx @acedatacloud/skills install --target .claude/skills
122
109
  ```
123
110
 
124
- ### Gemini CLI
125
-
126
- Gemini CLI supports `.agents/skills/` (project) and `~/.agents/skills/` (personal):
111
+ **Option D: Manual copy**
127
112
 
128
113
  ```bash
129
- mkdir -p .agents/skills
130
- cp -r Skills/skills/* .agents/skills/
114
+ git clone https://github.com/AceDataCloud/Skills.git
115
+ cp -r Skills/skills/* .claude/skills/
131
116
  ```
132
117
 
133
- ### OpenAI Codex
134
-
135
- Codex supports the agentskills.io standard via `.agents/skills/` and `AGENTS.md`:
118
+ ### GitHub Copilot
136
119
 
137
120
  ```bash
138
- # Copy skills into your project
139
- mkdir -p .agents/skills
140
- cp -r Skills/skills/* .agents/skills/
141
-
142
- # AGENTS.md is already included in this repo for Codex discovery
143
- cp Skills/AGENTS.md .
121
+ npx skills add acedatacloud/skills --skill '*' -a github-copilot --yes
144
122
  ```
145
123
 
146
- Codex auto-discovers skills from `.agents/skills/` and reads `AGENTS.md` for context.
147
-
148
- ### OpenHands / OpenDevin
124
+ ### Gemini CLI
149
125
 
150
126
  ```bash
151
- # Copy skills into your workspace
152
- mkdir -p .agents/skills
153
- cp -r Skills/skills/* .agents/skills/
127
+ npx skills add acedatacloud/skills --skill '*' -a gemini-cli --yes
154
128
  ```
155
129
 
156
- OpenHands auto-discovers `SKILL.md` files in `.agents/skills/`.
157
-
158
- ### Roo Code
159
-
160
- Roo Code supports `.agents/skills/` (cross-agent) and `.roo/skills/` (Roo-specific):
130
+ ### OpenAI Codex
161
131
 
162
132
  ```bash
163
- mkdir -p .agents/skills
164
- cp -r Skills/skills/* .agents/skills/
133
+ npx skills add acedatacloud/skills --skill '*' -a codex --yes
165
134
  ```
166
135
 
167
- ### TRAE (ByteDance)
136
+ ### Cursor
168
137
 
169
138
  ```bash
170
- # TRAE supports .agents/skills/ directory
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
- ### Goose (Block)
176
-
177
- Goose supports `.agents/skills/` (project) and `~/.agents/skills/` (personal):
142
+ ### Roo Code
178
143
 
179
144
  ```bash
180
- mkdir -p .agents/skills
181
- cp -r Skills/skills/* .agents/skills/
145
+ npx skills add acedatacloud/skills --skill '*' -a roo --yes
182
146
  ```
183
147
 
184
- ### Cursor
185
-
186
- Cursor supports the agentskills.io standard. You can also use `.cursor/rules/`:
148
+ ### Goose
187
149
 
188
150
  ```bash
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
194
- mkdir -p .cursor/rules
195
- cp -r Skills/skills/*/*.md .cursor/rules/
151
+ npx skills add acedatacloud/skills --skill '*' -a goose --yes
196
152
  ```
197
153
 
198
154
  ### Windsurf
199
155
 
200
- Windsurf uses `.windsurf/rules/` for custom instructions:
201
-
202
156
  ```bash
203
- mkdir -p .windsurf/rules
204
- cp -r Skills/skills/*/*.md .windsurf/rules/
157
+ npx skills add acedatacloud/skills --skill '*' -a windsurf --yes
205
158
  ```
206
159
 
207
160
  ### Cline
208
161
 
209
- Add skills as custom instructions in Cline:
210
-
211
- 1. Open Cline sidebar → Settings → Custom Instructions
212
- 2. Paste the content from any `SKILL.md` file
213
- 3. Cline will use the skill context in conversations
214
-
215
- Or use `.clinerules` directory:
216
-
217
- ```bash
218
- mkdir -p .clinerules
219
- cp -r Skills/skills/*/*.md .clinerules/
220
- ```
221
-
222
- ### Continue.dev
223
-
224
- Configure in `.continue/rules/`:
225
-
226
162
  ```bash
227
- mkdir -p .continue/rules
228
- cp -r Skills/skills/*/*.md .continue/rules/
163
+ npx skills add acedatacloud/skills --skill '*' -a cline --yes
229
164
  ```
230
165
 
231
- ### Amazon Q Developer
166
+ ### Other Agents
232
167
 
233
- Amazon Q uses `.amazonq/rules/`:
168
+ The `skills` CLI supports 40+ agents. Use `npx skills add --help` to see all options, or install to the universal `.agents/skills/` path:
234
169
 
235
170
  ```bash
236
- mkdir -p .amazonq/rules
237
- cp -r Skills/skills/*/*.md .amazonq/rules/
238
- ```
239
-
240
- ### Zed
241
-
242
- Zed reads the `.rules` file at the project root. Copy the skill content you need:
243
-
244
- ```bash
245
- cat Skills/skills/suno-music/SKILL.md >> .rules
246
- ```
247
-
248
- Zed also reads `AGENTS.md`, `.github/copilot-instructions.md`, and other agent instruction files as compatibility aliases.
249
-
250
- ### Any agentskills.io-compatible Agent
251
-
252
- The universal pattern works with all compatible agents:
253
-
254
- ```bash
255
- git clone https://github.com/AceDataCloud/Skills.git
256
- # Then point your agent to ./Skills/skills/
171
+ npx skills add acedatacloud/skills --skill '*' --yes
257
172
  ```
258
173
 
259
174
  ## Pairing Skills with MCP Servers
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acedatacloud/skills",
3
- "version": "2026.406.1",
3
+ "version": "2026.406.3",
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",
@@ -2,17 +2,29 @@
2
2
 
3
3
  All AceDataCloud APIs use Bearer token authentication.
4
4
 
5
+ ## Get Your Token
6
+
7
+ 1. Register at [platform.acedata.cloud](https://platform.acedata.cloud)
8
+ 2. Subscribe to a service (most include free quota)
9
+ 3. Go to your service's **Credentials** page and create an API token
10
+
5
11
  ## Setup
6
12
 
13
+ Create a `.env` file in your project root:
14
+
7
15
  ```bash
8
- export ACEDATACLOUD_API_TOKEN="your-token-here"
16
+ ACEDATACLOUD_API_TOKEN=your_token_here
9
17
  ```
10
18
 
11
- Get your token at [platform.acedata.cloud](https://platform.acedata.cloud):
19
+ Then load it before making API calls:
12
20
 
13
- 1. Register an account
14
- 2. Browse and subscribe to a service (most include free quota)
15
- 3. Create an API credential (token)
21
+ ```bash
22
+ source .env
23
+ ```
24
+
25
+ > **Agent usage:** If you're running skills through Claude Code or another AI agent, the agent will automatically `source .env` from the project root before calling any API.
26
+
27
+ > **Important:** Add `.env` to your `.gitignore` — never commit tokens to version control.
16
28
 
17
29
  ## Usage
18
30
 
@@ -23,9 +35,14 @@ curl -X POST https://api.acedata.cloud/<endpoint> \
23
35
  -d '{ ... }'
24
36
  ```
25
37
 
26
- ### Token Types
38
+ ## Token Types
39
+
40
+ | Type | Scope | Use Case |
41
+ |------|-------|----------|
42
+ | **Service Token** | Single service | Default. Created per-subscription |
43
+ | **Global Token** | All services | Create from the platform's global credentials page |
44
+
45
+ ## Gotchas
27
46
 
28
- | Type | Scope |
29
- |------|-------|
30
- | **Service Token** | Access to one subscribed service only |
31
- | **Global Token** | Access to all subscribed services |
47
+ - Tokens are **service-scoped** by default — if you get a 401 on a different service, create a global token or a token for that specific service
48
+ - Tokens do not expire, but can be revoked from the platform
@@ -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. Works as a drop-in replacement for the OpenAI SDK.
8
+ compatibility: Requires ACEDATACLOUD_API_TOKEN in .env file (see _shared/authentication.md). Works as a drop-in replacement for the OpenAI SDK.
9
9
  ---
10
10
 
11
11
  # AI Chat — Unified LLM Gateway
@@ -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.
8
+ compatibility: Requires ACEDATACLOUD_API_TOKEN in .env file (see _shared/authentication.md).
9
9
  ---
10
10
 
11
11
  # Face Transform
@@ -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.
8
+ compatibility: Requires ACEDATACLOUD_API_TOKEN in .env file (see _shared/authentication.md).
9
9
  ---
10
10
 
11
11
  # Fish Audio — Voice & Audio Synthesis
@@ -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-pro for tool-use.
8
+ compatibility: Requires ACEDATACLOUD_API_TOKEN in .env file (see _shared/authentication.md). Optionally pair with mcp-flux-pro for tool-use.
9
9
  ---
10
10
 
11
11
  # Flux Image Generation
@@ -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-serp for tool-use.
8
+ compatibility: Requires ACEDATACLOUD_API_TOKEN in .env file (see _shared/authentication.md). Optionally pair with mcp-serp for tool-use.
9
9
  ---
10
10
 
11
11
  # Google Search (SERP)
@@ -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.
8
+ compatibility: Requires ACEDATACLOUD_API_TOKEN in .env file (see _shared/authentication.md).
9
9
  ---
10
10
 
11
11
  # Hailuo Video Generation
@@ -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.
8
+ compatibility: Requires ACEDATACLOUD_API_TOKEN in .env file (see _shared/authentication.md).
9
9
  ---
10
10
 
11
11
  # Kling Video Generation
@@ -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-luma for tool-use.
8
+ compatibility: Requires ACEDATACLOUD_API_TOKEN in .env file (see _shared/authentication.md). Optionally pair with mcp-luma for tool-use.
9
9
  ---
10
10
 
11
11
  # Luma Video Generation
@@ -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-midjourney for tool-use.
8
+ compatibility: Requires ACEDATACLOUD_API_TOKEN in .env file (see _shared/authentication.md). Optionally pair with mcp-midjourney for tool-use.
9
9
  ---
10
10
 
11
11
  # Midjourney Image Generation
@@ -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-nano-banana for tool-use.
8
+ compatibility: Requires ACEDATACLOUD_API_TOKEN in .env file (see _shared/authentication.md). Optionally pair with mcp-nano-banana for tool-use.
9
9
  ---
10
10
 
11
11
  # NanoBanana Image Generation
@@ -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.
8
+ compatibility: Requires ACEDATACLOUD_API_TOKEN in .env file (see _shared/authentication.md).
9
9
  ---
10
10
 
11
11
  # Producer Music Generation
@@ -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-seedance for tool-use.
8
+ compatibility: Requires ACEDATACLOUD_API_TOKEN in .env file (see _shared/authentication.md). Optionally pair with mcp-seedance for tool-use.
9
9
  ---
10
10
 
11
11
  # Seedance Video Generation
@@ -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-seedream for tool-use.
8
+ compatibility: Requires ACEDATACLOUD_API_TOKEN in .env file (see _shared/authentication.md). Optionally pair with mcp-seedream for tool-use.
9
9
  ---
10
10
 
11
11
  # Seedream Image Generation
@@ -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-short-url for tool-use.
8
+ compatibility: Requires ACEDATACLOUD_API_TOKEN in .env file (see _shared/authentication.md). Optionally pair with mcp-short-url for tool-use.
9
9
  ---
10
10
 
11
11
  # Short URL Service
@@ -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-sora for tool-use.
8
+ compatibility: Requires ACEDATACLOUD_API_TOKEN in .env file (see _shared/authentication.md). Optionally pair with mcp-sora for tool-use.
9
9
  ---
10
10
 
11
11
  # Sora Video Generation
@@ -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-suno for tool-use.
8
+ compatibility: Requires ACEDATACLOUD_API_TOKEN in .env file (see _shared/authentication.md). Optionally pair with mcp-suno for tool-use.
9
9
  ---
10
10
 
11
11
  # Suno Music Generation
@@ -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-veo for tool-use.
8
+ compatibility: Requires ACEDATACLOUD_API_TOKEN in .env file (see _shared/authentication.md). Optionally pair with mcp-veo for tool-use.
9
9
  ---
10
10
 
11
11
  # Veo Video Generation
@@ -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-wan for tool-use.
8
+ compatibility: Requires ACEDATACLOUD_API_TOKEN in .env file (see _shared/authentication.md). Optionally pair with mcp-wan for tool-use.
9
9
  ---
10
10
 
11
11
  # Wan Video Generation