@acedatacloud/skills 2026.505.0 → 2026.516.0
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/AGENTS.md +1 -1
- package/README.md +1 -1
- package/package.json +1 -1
- package/skills/acedatacloud-api/SKILL.md +1 -1
- package/skills/ai-chat/SKILL.md +1 -10
package/AGENTS.md
CHANGED
|
@@ -27,7 +27,7 @@ Skills are located in the `skills/` directory (also mirrored to `.agents/skills/
|
|
|
27
27
|
- **wan-video** — Generate videos with Alibaba Wan
|
|
28
28
|
|
|
29
29
|
### AI Chat & Tools
|
|
30
|
-
- **ai-chat** — Unified LLM gateway — GPT, Claude, Gemini,
|
|
30
|
+
- **ai-chat** — Unified LLM gateway — GPT, Claude, Gemini, Kimi, Grok (50+ models)
|
|
31
31
|
- **google-search** — Search the web, images, news, maps, places, and videos via Google
|
|
32
32
|
- **face-transform** — Face analysis, beautification, age/gender transform, swap, cartoon
|
|
33
33
|
- **short-url** — Create and manage short URLs
|
package/README.md
CHANGED
|
@@ -46,7 +46,7 @@ Compatible with **30+ AI coding agents** via the [agentskills.io](https://agents
|
|
|
46
46
|
|
|
47
47
|
| Skill | Description |
|
|
48
48
|
|-------|-------------|
|
|
49
|
-
| [ai-chat](skills/ai-chat/) | Unified LLM gateway — GPT, Claude, Gemini,
|
|
49
|
+
| [ai-chat](skills/ai-chat/) | Unified LLM gateway — GPT, Claude, Gemini, Kimi, Grok (50+ models) |
|
|
50
50
|
| [google-search](skills/google-search/) | Search the web, images, news, maps, places, and videos via Google |
|
|
51
51
|
| [face-transform](skills/face-transform/) | Face analysis, beautification, age/gender transform, swap, cartoon |
|
|
52
52
|
| [short-url](skills/short-url/) | Create and manage short URLs |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acedatacloud/skills",
|
|
3
|
-
"version": "2026.
|
|
3
|
+
"version": "2026.516.0",
|
|
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",
|
|
@@ -111,7 +111,7 @@ Error response format:
|
|
|
111
111
|
|
|
112
112
|
| Category | Services | Base Path |
|
|
113
113
|
|----------|----------|-----------|
|
|
114
|
-
| **AI Chat** | GPT, Claude, Gemini,
|
|
114
|
+
| **AI Chat** | GPT, Claude, Gemini, Kimi, Grok | `/v1/chat/completions` |
|
|
115
115
|
| **Image Gen** | Midjourney, Flux, Seedream, NanoBanana | `/midjourney/*`, `/flux/*`, etc. |
|
|
116
116
|
| **Video Gen** | Luma, Sora, Veo, Kling, Hailuo, Seedance, Wan | `/luma/*`, `/sora/*`, etc. |
|
|
117
117
|
| **Music Gen** | Suno, Producer, Fish Audio | `/suno/*`, `/producer/*`, `/fish/*` |
|
package/skills/ai-chat/SKILL.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: ai-chat
|
|
3
|
-
description: Access 50+ LLM models through a unified OpenAI-compatible API via AceDataCloud. Use when you need chat completions from GPT, Claude, Gemini,
|
|
3
|
+
description: Access 50+ LLM models through a unified OpenAI-compatible API via AceDataCloud. Use when you need chat completions from GPT, Claude, Gemini, Kimi, Grok, or other models through a single endpoint. Supports streaming, function calling, and vision.
|
|
4
4
|
license: Apache-2.0
|
|
5
5
|
metadata:
|
|
6
6
|
author: acedatacloud
|
|
@@ -78,15 +78,6 @@ print(response.choices[0].message.content)
|
|
|
78
78
|
| `gemini-1.5-pro` | Long context, complex tasks |
|
|
79
79
|
| `gemini-1.5-flash` | Fast, efficient |
|
|
80
80
|
|
|
81
|
-
### DeepSeek
|
|
82
|
-
|
|
83
|
-
| Model | Best For |
|
|
84
|
-
|-------|----------|
|
|
85
|
-
| `deepseek-r1` | Deep reasoning |
|
|
86
|
-
| `deepseek-r1-0528` | Latest reasoning |
|
|
87
|
-
| `deepseek-v3` | General-purpose |
|
|
88
|
-
| `deepseek-v3-250324` | Latest general |
|
|
89
|
-
|
|
90
81
|
### xAI Grok
|
|
91
82
|
|
|
92
83
|
| Model | Best For |
|