typescript/skills/gemini/SKILL.md
Use Google Gemini API for text generation, vision, and multimodal tasks.
npx skillsauth add kody-w/openrappter geminiInstall 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.
Access Google's Gemini models via the API.
curl -s "https://generativelanguage.googleapis.com/v1/models/gemini-pro:generateContent?key=$GEMINI_API_KEY" \
-H "Content-Type: application/json" \
-d '{"contents":[{"parts":[{"text":"Explain quantum computing"}]}]}'
# Base64 encode an image and send with prompt
IMAGE_B64=$(base64 -i image.jpg)
curl -s "https://generativelanguage.googleapis.com/v1/models/gemini-pro-vision:generateContent?key=$GEMINI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"contents":[{"parts":[
{"text":"What is in this image?"},
{"inlineData":{"mimeType":"image/jpeg","data":"'$IMAGE_B64'"}}
]}]
}'
development
Get current weather and forecasts (no API key required).
tools
Send and receive WhatsApp messages via wacli command-line tool.
tools
Start and manage voice calls via the openrappter voice-call plugin.
content-media
Extract frames from video files using ffmpeg for analysis or processing.