atlas-cloud-media

atlas-cloud-media is a skill for Claude Code from iradoweck/antigravity-awesome-skills. It costs 25 tokens per session (2,671 once invoked), scanned D, a copy of atlas-cloud-media, MIT.

Instructions for sending image or video generation requests to Atlas Cloud, an external media service, through its asynchronous API. It covers choosing a model, checking request parameters, polling for completion, and retrieving results safely.

In plain words
What is it for?
Use it when a workflow must generate images or videos with Atlas Cloud and needs model discovery, schema checks, task submission, status polling, and output retrieval.
Why use it?
It helps avoid invalid requests, unsafe credential handling, and unapproved paid submissions. It also gives long-running media jobs a defined way to be tracked and collected.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions Codex.

Part of the agentic-awesome-skills plugin — 196 skills shipped together

Good fit Use it when a workflow must generate images or videos with Atlas Cloud and needs model discovery, schema checks, task submission, status polling, and output retrieval.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/iradoweck/antigravity-awesome-skills/atlas-cloud-media
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add iradoweck/antigravity-awesome-skills --skill atlas-cloud-media
Clone the repo
git clone --depth 1 https://github.com/iradoweck/antigravity-awesome-skills

Made for: Claude Code.

Or install agentic-awesome-skills, the plugin that ships this one along with the rest of its 196 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for atlas-cloud-media

README.md
[![agentmods](https://agentmods.dev/badge/skills/iradoweck/antigravity-awesome-skills/atlas-cloud-media/github.svg)](https://agentmods.dev/skills/iradoweck/antigravity-awesome-skills/atlas-cloud-media)
Your own site
<a href="https://agentmods.dev/skills/iradoweck/antigravity-awesome-skills/atlas-cloud-media"><img src="https://agentmods.dev/badge/skills/iradoweck/antigravity-awesome-skills/atlas-cloud-media/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for atlas-cloud-media

Your own site · 80×15
<a href="https://agentmods.dev/skills/iradoweck/antigravity-awesome-skills/atlas-cloud-media"><img src="https://agentmods.dev/badge/skills/iradoweck/antigravity-awesome-skills/atlas-cloud-media.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 25 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,671 The whole file, excluding the scripts and references it only reads on demand.
Security scan D 3 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 100% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00025 $0.02671
Opus 5 $0.00013 $0.01336
Sonnet 5 $0.00005 $0.00534
Haiku 4.5 $0.00003 $0.00267

Measured 8d ago against content hash ad17fcbffcc3, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade D, and why

atlas-cloud-media scanned grade D with 3 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

author: binyangzhu000-sudo tags: [atlas-cloud, image-generation, video-generation, media-api]

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

trap 'rm -rf -- "$atlas_tmp_dir"' EXIT

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl --fail --silent --show-error \
Origin

This is a copy

100% identical to atlas-cloud-media — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

plugins/agentic-awesome-skills-claude/skills/atlas-cloud-media/SKILL.md · 292 lines

How it starts

The opening of the file, as written. The whole thing — 292 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Atlas Cloud Media

Overview

Use Atlas Cloud's asynchronous media API to generate images or videos. This source-only skill describes model discovery, schema validation, task submission, bounded polling, and safe output retrieval; it does not bundle an SDK, executable, or hosted runtime.

When to Use This Skill

  • Use when the user explicitly asks to generate an image or video with Atlas Cloud.
  • Use when an existing workflow needs an Atlas Cloud image or video generation request and can make HTTPS calls.
  • Use when model-specific parameters must be discovered before submission.
  • Do not use this skill for OpenAI-compatible text chat; that API has a different base URL and contract.

Preconditions

  1. Confirm the user is authorized to send the prompt and any reference media to a third-party service.
  2. Explain that generation is paid and obtain approval before submitting a billable request.
  3. Require ATLASCLOUD_API_KEY to be present in the environment. Never ask the user to paste it into chat, source files, command history, or logs.
  4. Confirm the output directory and whether the user wants image generation, video generation, or both.

API Contract

Operation Method and endpoint
List models GET https://api.atlascloud.ai/api/v1/models
Generate image POST https://api.atlascloud.ai/api/v1/model/generateImage
Generate video POST https://api.atlascloud.ai/api/v1/model/generateVideo
Poll task GET https://api.atlascloud.ai/api/v1/model/prediction/{id}

Generation and polling requests use these headers:

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

The model catalog is public. Each catalog entry includes a schema URL; fetch that schema and validate parameters against it before sending a paid request. Do not guess parameters from another model, because names such as size, ratio, aspect_ratio, image, and image_url are model-specific.

Workflow

Read the full file on GitHub · 292 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 292 lines · 25 tokens per session scan D ad17fcbffcc3

Subscribe to this mod's changes

atlas-cloud-media is a skill published in the GitHub repository iradoweck/antigravity-awesome-skills (30 stars, last pushed 11d ago), licensed MIT. It adds 25 tokens to every session and 2,671 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it D with 3 findings (asks for root, recursive force delete, makes network calls). It is 100% identical to atlas-cloud-media, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

atlas-cloud-media

Generate Atlas Cloud images and videos through its asynchronous media API with schema-first model selection and credential-safe polling.

sickn33/agentic-awesome-skills · 25 tokens

media-gen

AI media generation via Fal.ai: images, video, upscale, edits. Produces Instagram ad creative using a dual-model pipeline — runs Nano Banana Pro Edit AND Ideogram v4 Image-to-Image side-by-side for every concept, giving the user two takes per brief at negligible cost ($0.28/concept). Always uses image-to-image when a…

afaraha8403/balakit · 139 tokens

fal

Use when calling a fal.ai endpoint by id to generate image, audio, or video from JS/Python/curl: subscribe vs submit, queue states, ED25519 webhook signature verification, per-call cost, or migrating off @fal-ai/serverless-client. NOT which model or art direction (that is ai-media); NOT the same models on another…

ericrisco/rsc-harness · 78 tokens

image-generation

Generates or edits images through the Codex CLI, with prompt refinement and vision validation.

mathiasbourgoin/roster · 21 tokens

hyperframes-motion-director

Direct and produce Chinese-first cinematic motion videos with HyperFrames. Use this skill when the user wants a rendered promo film, article-to-video piece, product launch film, website-to-video piece, keynote reveal, kinetic typography sequence, text/icon transition promo, music-synced motion graphic…

geekjourneyx/hyperframes-motion-director · 147 tokens

ogs-generate

Generate images and videos through OpenGen Studio (your-domain.com) via its hosted MCP server (https://mcp.your-domain.com/mcp - connect once by adding the URL and signing in with a OpenGen Studio account). Wraps OpenGen Studio's 8 MCP tools: listmodels, generateimage, generatevideo, waitforgeneration, getgeneration…

nextgentrainingacademy88-max/open-generative-studio · 418 tokens