Agent skill · Backend & API

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.

majiayu000github.com/majiayu000GitHub ↗
claude-codecan modify filesMIT
Install
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.

Facts
Files in the skill folder: 2
SKILL.md size: 7 KB
Bundled scripts: none
Allowed tools: -Bash-Read-Write-Edit
Path: skills/ai-ml/ai-multimodal-jorgezuloaga-audio-dev-mcps-2/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. Setup
  2. API Key Rotation (Optional)
  3. Quick Start
  4. Models
  5. Scripts
  6. References
  7. Limits
  8. Resources
Ships with 1 file
  • metadata.json
Commands it runs
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"
More from claude-skill-registry
All skills →
About this skill
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.

Keep going