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.