creative-media
Generate Images, Video, and 3D with One CLI
Agents need creative media but face fragmented provider APIs, key management, and billing setups. This skill provides a single zero-setup CLI that handles image, video, audio, and 3D generation through one hosted runtime and one wallet.
Download the skill ZIP
Upload in Claude
Go to Settings → Capabilities → Skills → Upload skill
Toggle on and start using
Test it
Using "creative-media". User asks: Generate an image of a compact field camera on a stainless workbench
Expected outcome:
- The guide command is executed via npx
- Image Skill returns a hosted URL for the generated image
- Stable JSON output includes model parameters and a cost receipt
- The asset is stored durably for future agent recovery
Using "creative-media". User asks: What models are available for creative media generation?
Expected outcome:
- models list --available --json returns a structured array of models
- Each entry includes model name, modality, and capability flags
- Output is parseable JSON suitable for agent decision-making
Security Audit
Low RiskThe skill is a 79-line documentation file describing a hosted creative media runtime accessed via the published `image-skill` npm package. All 32 static findings were evaluated and dismissed as false positives: the 19 `external_commands` hits are legitimate `npx` and `export` bash commands in documentation code blocks, the 8 `network` hits are hardcoded URLs to the project's own canonical resources (image-skill.com), the 3 `filesystem` hits are path documentation for the skills.sh adapter, and the 2 `weak crypto` hits are false triggers on description text. No data exfiltration, credential theft, obfuscation, or prompt injection patterns were found.
Low Risk Issues (3)
Risk Factors
⚙️ External commands (5)
🌐 Network access (5)
📁 Filesystem access (2)
Quality Score
What You Can Build
Quick image prototyping
An agent needs to generate a product mockup image from a text description without setting up a provider account.
Multimodal asset pipeline
An agent pipeline needs image, video, and 3D assets generated through one consistent CLI interface with stable JSON output.
Agent skill marketplace integration
An agent harness using Codex or Claude Code needs a pluggable creative media skill installable via skills.sh.
Try These Prompts
Run the Image Skill guide command to prepare for creating a compact field camera product image: npm_config_update_notifier=false npx -y image-skill@latest create --guide --prompt "a compact field camera on a stainless workbench"
Show all available Image Skill models in JSON format: npm_config_update_notifier=false npx -y image-skill@latest models list --available --json
Install this intent skill globally for Codex: npx skills add danielgwilson/image-skill-cli --skill creative-media -g -a codex -y
When Image Skill lacks a model or capability, submit feedback with: image-skill feedback create --json providing attempted_command, expected_behavior, actual_behavior, and missing_capability fields.
Best Practices
- Always run the guide command first and wait for ready_to_create before executing spend commands
- Check next_command_copy_runnable is true before running data.next_command
- Use recommended_no_spend_command to verify safely when spend is not allowed
Avoid
- Do not supply provider API keys or create separate provider accounts for this skill
- Do not run data.next_command if next_command_copy_runnable is false
- Do not run a local model server alongside this skill