{"id":"atlas-cloud-media","name":"atlas-cloud-media","summary":"Atlas Cloudの画像および動画モデルを発見し、そのライブスキーマを検査し、限定GETポーリングで確認済みのメディア生成リクエストを1件提出します。","body":"# Atlas Cloud Media\n\nUse the bundled scripts/atlas_media.py CLI to discover current Atlas Cloud\nmodels, inspect a model's live request schema, and run asynchronous image or\nvideo generation.\n\n## When to Use This Skill\n\n- The user wants to find an available Atlas Cloud image or video model.\n- An integration needs the current model ID, input fields, endpoint, or price.\n- The user wants one explicitly confirmed media generation request.\n- An asynchronous Atlas Cloud task needs bounded status polling.\n\n## Setup\n\nSet the API key in the environment. Never pass it as a CLI argument or commit it\nto a repository.\n\n~~~bash\nexport ATLASCLOUD_API_KEY=\"your-api-key\"\n~~~\n\nATLASCLOUD_BASE_URL may point to a compatible deployment. It defaults to\nhttps://api.atlascloud.ai.\n\n## Workflow\n\n### 1. Discover current models\n\n~~~bash\npython3 scripts/atlas_media.py models --type Image --query flux\npython3 scripts/atlas_media.py models --type Video --query seedance\n~~~\n\nTreat model availability and prices as live data. Run discovery immediately\nbefore choosing a model.\n\n### 2. Inspect the exact schema\n\n~~~bash\npython3 scripts/atlas_media.py describe black-forest-labs/flux-schnell\n~~~\n\nThe command resolves the model's current schema URL and reports the required\nfields, property definitions, submission endpoint, result endpoint, and catalog\nprice data. Build the payload from this output instead of copying an old\nexample.\n\n### 3. Prepare parameters in a file\n\n~~~json\n{\n  \"prompt\": \"A clean product photograph on a neutral background\",\n  \"size\": \"1024*1024\",\n  \"num_images\": 1\n}\n~~~\n\nDo not include model; the CLI inserts the selected model ID after validation.\n\n### 4. Confirm cost and generate once\n\n~~~bash\npython3 scripts/atlas_media.py generate \\\n  black-forest-labs/flux-schnell \\\n  --params-file request.json \\\n  --confirm-paid\n~~~\n\nThe --confirm-paid flag is mandatory. The CLI sends exactly one generation POST\nand does not retry it. It polls only the schema-defined GET result endpoint,\nwith a fixed interval and maximum poll count.\n\nUse stdin when a temporary file is unnecessary:\n\n~~~bash\nprintf '%s' '{\"prompt\":\"A geometric app icon\"}' | \\\n  python3 scripts/atlas_media.py generate \\\n    black-forest-labs/flux-schnell \\\n    --params-file - \\\n    --confirm-paid\n~~~\n\n## Safety Rules\n\n- Keep ATLASCLOUD_API_KEY server-side and out of logs, prompts, screenshots,\n  browser code, mobile apps, and committed files.\n- Never retry a generation POST automatically. If submission fails, report the\n  error and require a new explicit confirmation before another paid request.\n- Poll only with GET and stop at --max-polls.\n- Validate the live schema again when changing models.\n- Download returned media URLs before they expire when persistent storage is\n  required.\n- Require human review for sensitive, regulated, or high-impact content.\n\n## Output\n\nCommands write structured JSON to stdout. Successful generation output includes\nthe prediction ID, final status, generated URLs, model ID, and the endpoints\nresolved from the live schema.","author":"@davepoon","ownerProfile":null,"authorContacts":null,"sourceUrl":"https://github.com/davepoon/buildwithclaude/tree/main/plugins/all-skills/skills/atlas-cloud-media","license":"MIT","category":"media-content","lang":"en","tokens":677,"stars":0,"calls30d":2,"claimed":false,"visibility":"public","origin":"crawler","version":"0.1.0","createdAt":"2026-08-22","updatedAt":"2026-08-22","files":[{"path":"scripts/atlas_media.py","size":13874,"sha256":"4aa3ff738ae6ca2df78efa86957f45a44d983349e83078de5ebd5d99296e58e4"},{"path":"tests/test_atlas_media.py","size":4031,"sha256":"4e34ef739df758d38aeccc0f113353c54eb5fc1438834827958fe69cda883674"}],"requires":{"mcp":[],"tools":["Bash(python3 *)"]},"safety":{"flags":[{"code":"net.endpoints","kind":"exfiltration","excerpt":"api.atlascloud.ai, api.example, cdn.example, schemas.example","message":"bundled scripts reach 4 external host(s)","severity":"warn"}],"scannedAt":"2026-08-22","hasScripts":true,"networkEndpoints":["api.atlascloud.ai","api.example","cdn.example","schemas.example"]}}