ck:ai-multimodal
Analyze images/audio/video with Gemini API (better vision than Claude). Generate images (Imagen 4), videos (Veo 3). Use for vision analysis, transcription, OCR, design extraction, multimodal AI.
npx skills add majiayu000/claude-skill-registry --skill ai-multimodal-jorgezuloaga-audio-dev-mcps-2 --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# AI Multimodal Process audio, images, videos, documents, and generate images/videos using Google Gemini's multimodal API. ## Setup ```bash export GEMINI_API_KEY="your-key" # Get from https://aistudio.google.com/apikey pip install google-genai python-dotenv pillow ``` ### API Key Rotation (Optional) For high-volume usage or when hitting rate limits, configure multiple API keys: ```bash # Primary key (required) export GEMINI_API_KEY="key1" # Additional keys for rotation (optional) export GEMINI_API_KEY_2="key2" export GEMINI_API_KEY_3="key3" ``` Or in your `.env` file: ``` GEMINI_API_KEY=key1 GEMINI_API_KEY_2=key2 GEMINI_API_KEY_3=key3 ``` **Features:** - Auto-rotates on rate limit (429/RESOURCE_EXHAUSTED) errors - 60-second cooldown per key after rate limit - Logs rotation events with `--verbose` flag - Backward compatible: single key still works ## Quick Start **Verify setup**: `python scripts/check_setup.py` **Analyze media**: `python scripts/gemini_batch_process.py --files <file> --task <analyze|transcribe|extract>` - TIP: When you're asked to analyze an image, check if `gemini` command is available, then use `echo "<prompt to analyze image>" | gemini -y -m <gemini.model>` comma
- Setup
- API Key Rotation (Optional)
- Quick Start
- Models
- Scripts
- References
- Limits
- Resources
export GEMINI_API_KEY="your-key" # Get from https://aistudio.google.com/apikey pip install google-genai python-dotenv pillow Primary key (required) export GEMINI_API_KEY="key1" Additional keys for rotation (optional) export GEMINI_API_KEY_2="key2" export GEMINI_API_KEY_3="key3"
What does the ck:ai-multimodal skill do?
Analyze images/audio/video with Gemini API (better vision than Claude). Generate images (Imagen 4), videos (Veo 3). Use for vision analysis, transcription, OCR, design extraction, multimodal AI.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill ai-multimodal-jorgezuloaga-audio-dev-mcps-2 --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
