Atlas Cloud AI
Generate images and videos using Atlas Cloud's AI models (Kling for video, Nano Banana for images).
Setup
The API key is stored in your secrets as ATLASCLOUD_API_KEY. The skill reads it automatically.
Scripts
Text-to-Video
Generate video from a text prompt using Kling v3.0 Pro.
bun Skills/Community/atlas-cloud/scripts/video.ts --prompt "A minimal cube rotating in dark space" --aspect-ratio "16:9" --duration 5
Options:
| Flag | Description | Default |
|---|---|---|
--prompt |
Video description (required) | - |
--aspect-ratio |
16:9, 9:16, 1:1 | 16:9 |
--duration |
5 or 10 seconds | 5 |
--cfg-scale |
Creativity 0-1 | 0.5 |
--negative-prompt |
Things to avoid | - |
--no-sound |
Disable audio | false |
Image-to-Video
Generate video from an input image.
bun Skills/Community/atlas-cloud/scripts/image-to-video.ts --image "https://example.com/image.jpg" --prompt "Camera pans left"
Options:
| Flag | Description | Default |
|---|---|---|
--image |
Input image URL (required) | - |
--end-image |
End frame image URL | - |
--prompt |
Video description | - |
--aspect-ratio |
16:9, 9:16, 1:1 | 16:9 |
--duration |
5 or 10 seconds | 5 |
--cfg-scale |
Creativity 0-1 | 0.5 |
--negative-prompt |
Things to avoid | - |
--no-sound |
Disable audio | false |
Text-to-Image
Generate images using Google's Nano Banana 2 model.
bun Skills/Community/atlas-cloud/scripts/text-to-image.ts --prompt "cyberpunk city at night" --aspect-ratio "16:9" --resolution "2k"
Options:
| Flag | Description | Default |
|---|---|---|
--prompt |
Image description (required) | - |
--aspect-ratio |
16:9, 9:16, 1:1 | 16:9 |
--resolution |
2k, 4k, 1k | 2k |
--negative-prompt |
Things to avoid | - |
Image Edit
Edit images using Nano Banana 2 developer model.
bun Skills/Community/atlas-cloud/scripts/image-edit.ts --image "https://example.com/image.jpg" --prompt "Transform into 3D"
Options:
| Flag | Description | Default |
|---|---|---|
--image |
Input image URL (required) | - |
--prompt |
Edit description (required) | - |
--aspect-ratio |
16:9, 9:16, 1:1 | 16:9 |
--resolution |
2k, 4k, 1k | 2k |
Output
All scripts save the result URL to a file:
- Video:
atlas-last-video.txt - Image:
atlas-last-image.txt