Multimodal AI analysis using Gemini 2.0 Flash Lite. Trigger: Use when the user wants to analyze images with text, or requests 'gemini flash lite', 'analyze image with gemini', 'gemini multimodal', or 'describe image contents'.
Scanned 6/2/2026
Install via CLI
openskills install awesome-genmedia/skills---
name: "Gemini 2.0 Flash Lite"
description: "Multimodal AI analysis using Gemini 2.0 Flash Lite. Trigger: Use when the user wants to analyze images with text, or requests 'gemini flash lite', 'analyze image with gemini', 'gemini multimodal', or 'describe image contents'."
allowed-tools: ["Bash"]
---
# Gemini | 2.0 | Flash Lite
Use Google's Gemini 2.0 Flash Lite for multimodal analysis. Process text prompts with optional image inputs for vision-language tasks.
## Quick Start
```bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "gemini-2-0-flash-lite",
"version": "0.0.1",
"input": {
"prompt": "Describe what you see in this image in detail",
"image_urls": ["https://example.com/photo.jpg"]
}
}'
```
## Parameters
| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `image_urls` | array | `false` | URLs of images to analyze |
| `prompt` | string | `false` | Text prompt or question |
## Output
- **Type:** text
## Examples
### Image Description
```json
{
"model": "gemini-2-0-flash-lite",
"version": "0.0.1",
"input": {
"prompt": "What objects are in this image and what is happening?",
"image_urls": ["https://example.com/scene.jpg"]
}
}
```
### Text-Only Query
```json
{
"model": "gemini-2-0-flash-lite",
"version": "0.0.1",
"input": {
"prompt": "Write a short creative story about a robot learning to paint"
}
}
```
### Multi-Image Comparison
```json
{
"model": "gemini-2-0-flash-lite",
"version": "0.0.1",
"input": {
"prompt": "Compare these two images and describe the differences",
"image_urls": ["https://example.com/image-a.jpg", "https://example.com/image-b.jpg"]
}
}
```
## Related Models
- [Video Analyzer](../video-analyzer/SKILL.md) - Analyze video content
- [Imagen 4 Preview](../imagen4-preview/SKILL.md) - Generate images from text
## Documentation
- [EachLabs API Docs](https://docs.eachlabs.ai)
No comments yet. Be the first to comment!
Create Mermaid diagrams for flowcharts, sequences, ERDs, and
Draft release notes and changelog entries from git history or merged PRs between two refs (tags/SHAs/branches), including breaking changes, migrations, and upgrade steps. Use when the user asks for release notes, changelog updates, or a GitHub Release draft.
Explain how claude-mem captures observations, when memory injection kicks in, and where data lives. Use when the user asks "how does claude-mem work?" or "what is this thing doing?".
Review a pull request or contribution deeply, explain it tutorial-style for a maintainer, and produce a polished report artifact such as HTML or Markdown. Use when asked to analyze a PR, explain a contributor's design decisions, compare it with similar systems, or prepare a merge recommendation.
Generate the stable Paperclip release changelog at releases/vYYYY.MDD.P.md by reading commits, changesets, and merged PR context since the last stable tag.