/SKILL.md
Creatomate video/image generation API. Use when: (1) Creating videos or images programmatically with the Creatomate SDK, (2) Building slideshows, concatenating videos, adding text overlays, (3) Adding animated captions or subtitles, (4) Generating social media content (TikTok, Instagram Stories, YouTube Shorts), (5) Using templates with dynamic modifications, (6) Applying effects (blur, filters, masks, transitions), (7) Integrating with ChatGPT for AI-generated content, (8) Working with compositions and animations.
npx skillsauth add isfendipgensin/claude-code-skill-creatomate creatomateInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Cloud API for generating and editing video and images programmatically. Creatomate uses a JSON-based format called RenderScript to define video/image compositions.
const Creatomate = require('creatomate');
const client = new Creatomate.Client('YOUR_API_KEY');
// Render from a template
const renders = await client.render({
templateId: 'your-template-id',
modifications: {
'Title': 'Hello World',
'Text 1': 'Dynamic content here'
}
});
// Or build from source
const source = new Creatomate.Source({
outputFormat: 'mp4',
width: 1920,
height: 1080,
elements: [
new Creatomate.Video({ source: 'https://...' }),
new Creatomate.Text({ text: 'Overlay text' })
]
});
const renders = await client.render({ source });
| Task | Read | |------|------| | Getting started with the SDK | sdk-basics.md | | Building video from elements | source-elements.md | | Text overlays and animations | text-elements.md | | Working with templates | templates.md | | Transitions and effects | effects.md | | Creating slideshows | slideshows.md | | Adding captions/subtitles | captions.md | | Social media formats | social-media.md | | Compositions (scenes) | compositions.md | | AI integration (ChatGPT) | ai-integration.md |
For 50+ working code examples, see the official Creatomate Node.js Examples repository.
| Example | Description | |---------|-------------| | concatenate | Combine multiple videos | | slideshow | Image slideshow with transitions | | captions | Animated captions with AWS Transcribe | | chatgpt | AI-generated video content | | story-video | TikTok/Instagram story format | | text-overlay | Text on video | | picture-in-picture | PiP layout | | aws-polly | Text-to-speech videos | | blur-background | Background blur effect | | template | Template rendering |
development
Maintainer-only workflow for handling GitHub Secret Scanning alerts on OpenClaw. Use when Codex needs to triage, redact, clean up, and resolve secret leakage found in issue comments, issue bodies, PR comments, or other GitHub content.
development
Maintainer workflow for OpenClaw releases, prereleases, changelog release notes, and publish validation. Use when Codex needs to prepare or verify stable or beta release steps, align version naming, assemble release notes, check release auth requirements, or validate publish-time commands and artifacts.
development
Run, watch, debug, and extend OpenClaw QA testing with qa-lab and qa-channel. Use when Codex needs to execute the repo-backed QA suite, inspect live QA artifacts, debug failing scenarios, add new QA scenarios, or explain the OpenClaw QA workflow. Prefer the live OpenAI lane with regular openai/gpt-5.4 in fast mode; do not use gpt-5.4-pro or gpt-5.4-mini unless the user explicitly overrides that policy.
development
End-to-end Parallels smoke, upgrade, and rerun workflow for OpenClaw across macOS, Windows, and Linux guests. Use when Codex needs to run, rerun, debug, or interpret VM-based install, onboarding, gateway smoke tests, latest-release-to-main upgrade checks, fresh snapshot retests, or optional Discord roundtrip verification under Parallels.