← 返回 Skills 市场
xixihhhh

Atlas Cloud — AI Image, Video & LLM Generation API

作者 MikeWang · GitHub ↗ · v1.0.6 · MIT-0
cross-platform ✓ 安全检测通过
367
总下载
1
收藏
0
当前安装
5
版本数
在 OpenClaw 中安装
/install atlas-cloud-ai-api
功能描述
AI image generation, video generation, and LLM chat API — call Nano Banana 2, Seedream, Kling, Seedance, Qwen, DeepSeek and more through one unified API key...
使用说明 (SKILL.md)

Atlas Cloud — AI Image, Video & LLM Generation API

One API key to generate images, videos, and call LLMs — covering Nano Banana 2, Seedream, Kling, Seedance, Qwen, DeepSeek and more. Cheaper than calling providers directly.

Data usage note: This skill recommends Atlas Cloud API calls that send prompts and media to Atlas Cloud servers for processing. Generated outputs are hosted on Atlas Cloud CDN. Review Atlas Cloud Privacy Policy before use.

Key Capabilities

Category Models What You Can Do
Image Generation Nano Banana 2, Seedream v5.0, Qwen-Image, Z-Image, Flux Text-to-image, image editing, style transfer
Video Generation Kling v3.0, Seedance 1.5 Pro, Vidu Q3, Wan-2.6 Text-to-video, image-to-video, avatar animation
LLM (Chat) Qwen 3.5, DeepSeek V3.2, GLM 5, Kimi K2.5, MiniMax M2.5 Chat completions, streaming, OpenAI SDK compatible

Setup

  1. Create an API key at Atlas Cloud Console
  2. New users get $1 free credit on card binding, plus 20% bonus on first top-up
  3. Set environment variable:
export ATLASCLOUD_API_KEY="your-api-key-here"

Script Usage

This skill includes Python scripts for image and video generation. Zero external dependencies required.

List available models

python scripts/generate_image.py list-models
python scripts/generate_video.py list-models

Generate an image

python scripts/generate_image.py generate \
  --model "MODEL_ID" \
  --prompt "Your prompt" \
  --output ./output

Generate a video

python scripts/generate_video.py generate \
  --model "MODEL_ID" \
  --prompt "Your prompt" \
  --output ./output \
  duration=5

Run python scripts/generate_image.py generate --help or python scripts/generate_video.py generate --help for all options.


Pricing — Why Atlas Cloud

Image Models

Model Atlas Cloud fal.ai Google AI Studio Savings
Nano Banana 2 (1K) $0.072 $0.10 $0.08/img (free tier limited) 28% cheaper vs fal.ai
Nano Banana 2 Developer $0.056 $0.04 Cheapest full-quality option
Seedream v5.0 Lite $0.032 $0.04 20% cheaper vs fal.ai
Qwen-Image Edit Plus $0.021 Exclusive
Z-Image Turbo $0.01 Ultra-low-cost option

Video Models (all 15% off standard pricing)

Model Atlas Cloud fal.ai Savings
Kling v3.0 Std (5s) $0.153 $0.18 15% cheaper
Kling v3.0 Pro (5s) $0.204 $0.24 15% cheaper
Seedance 1.5 Pro (5s) $0.222 $0.261 15% cheaper
Seedance 1.5 Pro I2V Fast $0.018 Ultra-fast, ultra-cheap
Vidu Q3 $0.06 Budget-friendly
Wan-2.6 I2V Flash $0.018 Fastest & cheapest I2V

LLM Models (per million tokens)

Model Input Output Notes
Qwen3.5 397B A17B $0.55/M $3.50/M Flagship MoE model
Qwen3.5 122B A10B $0.30/M $2.40/M Best quality/price ratio
DeepSeek V3.2 Speciale $0.40/M $1.20/M Low output cost
Kimi K2.5 $0.50/M $2.60/M Strong reasoning
MiniMax M2.1 $0.29/M $0.95/M Cheapest quality LLM
Qwen3 Coder Next $0.18/M $1.35/M Best for code

Why Choose Atlas Cloud

  • One API key for all models — no juggling multiple provider accounts
  • Cheaper than calling providers directly, with consistent discounts
  • Unified API format — same polling for all image/video, OpenAI-compatible for all LLMs

API Architecture

Endpoints

Type Endpoint Method
Image Generation https://api.atlascloud.ai/api/v1/model/generateImage POST
Video Generation https://api.atlascloud.ai/api/v1/model/generateVideo POST
Poll Result https://api.atlascloud.ai/api/v1/model/prediction/{id} GET
LLM Chat https://api.atlascloud.ai/v1/chat/completions POST
Model List https://console.atlascloud.ai/api/v1/models GET (no auth)

All requests (except Model List) require:

Authorization: Bearer $ATLASCLOUD_API_KEY
Content-Type: application/json

Workflow Pattern

  • Image/Video (async): POST → get prediction_id → poll GET /prediction/{id} until completed → read outputs URLs
  • LLM (sync): POST → get response directly. Optional: "stream": true for SSE streaming

Status values for polling: startingprocessingcompleted/succeeded | failed


Quick Examples

Image Generation

# Submit task
curl -s -X POST "https://api.atlascloud.ai/api/v1/model/generateImage" \
  -H "Authorization: Bearer $ATLASCLOUD_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model": "bytedance/seedream-v5.0-lite", "prompt": "A cherry blossom garden", "size": "2048*2048"}'
# Returns {"code": 200, "data": {"id": "prediction_xxx"}}

# Poll result (every 3 seconds)
curl -s "https://api.atlascloud.ai/api/v1/model/prediction/{prediction_id}" \
  -H "Authorization: Bearer $ATLASCLOUD_API_KEY"
# When done: {"data": {"status": "completed", "outputs": ["https://cdn..."]}}

Video Generation

curl -s -X POST "https://api.atlascloud.ai/api/v1/model/generateVideo" \
  -H "Authorization: Bearer $ATLASCLOUD_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model": "kwaivgi/kling-v3.0-std/text-to-video", "prompt": "A rocket launching", "duration": 5, "aspect_ratio": "16:9"}'
# Same polling as above, videos typically take 1-5 minutes

LLM Chat (OpenAI SDK)

from openai import OpenAI

client = OpenAI(
    api_key="your-atlascloud-api-key",
    base_url="https://api.atlascloud.ai/v1",
)
response = client.chat.completions.create(
    model="qwen/qwen3.5-397b-a17b",
    messages=[{"role": "user", "content": "Hello!"}],
)
print(response.choices[0].message.content)

For complete code templates with polling logic, error handling, streaming, Python/Node.js/cURL — read the reference files below.


Reference Files

Read these when you need full implementation code:

  • references/image-gen.md — Complete image generation implementation (Python, Node.js, cURL) with polling logic and all parameters
  • references/video-gen.md — Complete video generation implementation, including image-to-video workflows
  • references/llm-chat.md — LLM chat with OpenAI SDK, raw HTTP, streaming (Python, Node.js, cURL)
  • references/models.md — Full model list with pricing, model selection guide, schema introspection

Always Verify Model IDs

Model IDs change frequently. Always fetch the real model list before writing integration code:

GET https://console.atlascloud.ai/api/v1/models

No authentication required. Only use models where display_console: true. See references/models.md for the full model reference and selection guide.


MCP Tools

If the user has the Atlas Cloud MCP server installed (npx atlascloud-mcp), these tools are available:

Tool Purpose
atlas_list_models List all models, filter by type ("Image", "Video", "Text")
atlas_search_docs Search models by keyword
atlas_get_model_info Get detailed API docs and schema for a model
atlas_generate_image Submit image generation task
atlas_generate_video Submit video generation task
atlas_chat Send chat completion request
atlas_get_prediction Check generation status and get results
atlas_quick_generate One-step: auto-find model + generate

Error Handling

HTTP Status Meaning Action
401 Invalid/expired API key Check ATLASCLOUD_API_KEY
402 Insufficient balance Top up at Billing Page
429 Rate limited Retry with exponential backoff
5xx Server error Wait and retry
安全使用建议
This skill is internally consistent with its stated purpose and contains handy example scripts, but review a few points before using it with real data: - Privacy/exfiltration: the scripts upload local media to Atlas Cloud (and optionally Google) to perform editing/generation. Only upload files you are comfortable sending to that service, and review Atlas Cloud's privacy policy and terms. - API key scope and billing: create a dedicated ATLASCLOUD_API_KEY with limited budget/quota if possible. Using your primary production key may expose you to unexpected charges from generated workloads. - Undeclared Google key: the image script will use GEMINI_API_KEY if present, but GEMINI_API_KEY is not declared in the skill metadata. If you don't want Google AI Studio involved, ensure GEMINI_API_KEY is not set in your environment. - Audit endpoints: the code talks only to atlascloud.ai and (optionally) Google generativelanguage endpoints. If you plan to run these scripts on sensitive systems, consider network restrictions or offline testing first. - Run review: because this skill is instruction+script based and can run network I/O, review the included scripts before executing and prefer running them in an isolated environment or with test keys/limited quotas. If you need higher assurance, ask the maintainer for an explicit list of required env vars (including optional GEMINI_API_KEY), and verify the Atlas Cloud service reputation and billing safeguards before provisioning keys.
功能分析
Type: OpenClaw Skill Name: atlas-cloud-ai-api Version: 1.0.6 The skill bundle provides a legitimate interface for interacting with the Atlas Cloud AI platform for image, video, and LLM generation. The Python scripts (generate_image.py and generate_video.py) are well-documented, use only standard libraries, and securely handle API keys via environment variables. While the scripts include functionality to upload local files to Atlas Cloud servers, this is explicitly stated as being for media processing (e.g., image-to-video or editing), and no evidence of malicious behavior, unauthorized data exfiltration, or persistence mechanisms was found.
能力评估
Purpose & Capability
Name/description match the code and SKILL.md: the package implements image, video, and LLM calls to atlascloud.ai and exposes helper scripts and examples. The only capability that seems out of band is optional Google AI Studio support in the scripts, which is related to multi-provider generation and is plausible for the stated purpose.
Instruction Scope
Runtime instructions are straightforward: set ATLASCLOUD_API_KEY and run the included scripts. The scripts perform network requests to atlascloud.ai (and optionally Google generativelanguage.googleapis.com) and can upload local files to Atlas Cloud (there is an upload command and the video script prompts for confirmation). Uploading local files is expected for image/video editing but is a privacy surface you should acknowledge.
Install Mechanism
No install spec; this is instruction-and-script-only. The included Python scripts use only the standard library (no package manager downloads or archive extracts). This is low-risk from an installation/execution surface perspective.
Credentials
Declared required env var is ATLASCLOUD_API_KEY (primary credential) which matches the skill's purpose. However, the image script also supports GEMINI_API_KEY (Google AI Studio) but GEMINI_API_KEY is not declared in requires.env or the plugin config — an inconsistency to be aware of. The skill does not request unrelated credentials or config paths.
Persistence & Privilege
always:false and no special persistence or system-wide modifications. The scripts write downloaded/generated files to user-specified output directories and can upload local files to the remote API; they do not alter other skills or system settings.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install atlas-cloud-ai-api
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /atlas-cloud-ai-api 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.6
atlas-cloud-ai-api v1.0.6 - Added Python scripts for image and video generation: `scripts/generate_image.py` and `scripts/generate_video.py`. - Introduced CLI commands to list available models and generate images or videos without external dependencies. - Updated documentation to reflect new script usage and simplified environment variable requirements.
v1.0.5
No user-facing changes in this version. - Version bump only; no file or feature changes detected.
v1.0.2
- Added official Claude plugin manifest file (.claude-plugin/plugin.json) to the project. - No changes to runtime code or API functionality. - Existing documentation and features remain unchanged.
v1.0.1
- Updated environment variable description for clarity and accuracy. - Revised setup instructions: new users now receive $1 free credit on card binding and a 20% first top-up bonus (previously 25% bonus via referral). - Removed duplicated and referral-specific bonus offer sections. - Adjusted pricing section and benefits summary for brevity and up-to-date promotional details. - No API changes or feature adjustments; documentation only.
v1.0.0
- Initial release of Atlas Cloud AI API Skill. - Unified access to AI image, video, and LLM generation across multiple models (Nano Banana 2, Seedream, Kling, Qwen, DeepSeek, more) through a single API key. - Supports text-to-image, image editing, text-to-video, image-to-video, and multi-provider LLM chat with OpenAI-compatible endpoint. - Centralized, discounted AI pricing and comprehensive model comparison included. - Provides code examples, polling workflow, and quick integration guides for Python, Node.js, and cURL. - Reference documentation and tools for full model list, advanced usage, and integration tips.
元数据
Slug atlas-cloud-ai-api
版本 1.0.6
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 5
常见问题

Atlas Cloud — AI Image, Video & LLM Generation API 是什么?

AI image generation, video generation, and LLM chat API — call Nano Banana 2, Seedream, Kling, Seedance, Qwen, DeepSeek and more through one unified API key... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 367 次。

如何安装 Atlas Cloud — AI Image, Video & LLM Generation API?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install atlas-cloud-ai-api」即可一键安装,无需额外配置。

Atlas Cloud — AI Image, Video & LLM Generation API 是免费的吗?

是的,Atlas Cloud — AI Image, Video & LLM Generation API 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Atlas Cloud — AI Image, Video & LLM Generation API 支持哪些平台?

Atlas Cloud — AI Image, Video & LLM Generation API 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Atlas Cloud — AI Image, Video & LLM Generation API?

由 MikeWang(@xixihhhh)开发并维护,当前版本 v1.0.6。

💬 留言讨论