atlas-cloud-media

Discover Atlas Cloud image and video models and submit one confirmed media generation request.

3.4k|487|Updated Jul 25, 2025
One-click install
npx skills add https://github.com/davepoon/buildwithclaude --skill atlas-cloud-media
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: atlas-cloud-media
Source: https://github.com/davepoon/buildwithclaude/tree/main/plugins/all-skills/skills/atlas-cloud-media
Command: npx skills add https://github.com/davepoon/buildwithclaude --skill atlas-cloud-media

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

Integrating with Atlas Cloud media APIs is error-prone when model IDs, input schemas, and prices change over time, and hard-coded parameters lead to failed or unexpected paid generation requests. This Skill queries the live model catalog and schema before submitting anything, so requests always match the current API contract.

Core Features & Use Cases

  • Live Model Discovery: List and filter current Atlas Cloud image and video models by type and query, with live pricing data.
  • Schema Inspection: Resolve a model's live schema URL to see required fields, property definitions, submission endpoint, and result endpoint before building a payload.
  • Confirmed Single Generation: Submit exactly one paid generation POST with a mandatory --confirm-paid flag, then poll the schema-defined GET result endpoint with bounded retries.
  • Use Case: A developer integrating AI image generation into an app runs the models command to find a current Flux model, inspects its schema, validates parameters against it, and submits one confirmed generation request without hard-coding stale model parameters.

Quick Start

Ask the assistant to list available Atlas Cloud image models matching "flux", describe the chosen model's schema, and generate one image from a JSON parameters file after confirming the price.

Frequently Asked Questions about atlas-cloud-media

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I generate an image with the Atlas Cloud API?

Set ATLASCLOUD_API_KEY in the environment, list models with the models command, inspect the chosen model with describe, then run generate with a JSON params file and the --confirm-paid flag. The CLI submits one POST and polls the result endpoint until completion.

How do I find current Atlas Cloud image and video models?

Run the models command with optional --type Image or --type Video filters and a --query string to search the live catalog. Results include the model ID, type, price, and schema URL, reflecting current availability rather than cached data.

Does the Atlas Cloud CLI retry failed generation requests?

No, the generation POST is deliberately attempted exactly once and HTTP failures propagate as errors. A new explicit confirmation is required before submitting another paid request, preventing accidental duplicate charges.

What parameters does an Atlas Cloud model require?

Run the describe command with the model ID to resolve its live schema. The output lists required fields, property definitions with types and constraints, the submission endpoint, and the result endpoint, so payloads are built from current schema data.

Why does Atlas Cloud generation polling stop with a timeout error?

Polling stops after the configured maximum poll count, defaulting to 100 GET requests at a fixed interval. If the task has not reached a success or failure status by then, a TimeoutError is raised; increase --max-polls or --poll-interval for longer-running video tasks.