genai-text
Generate text using Google GenAI Gemini models via CLI. Use when the user asks to generate text, get AI responses, create content, write with AI, or use Gemini for text completion.
npx skills add majiayu000/claude-skill-registry --skill genai-text --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.
# GenAI Text Generation Skill Generate text using the `genai-cli text` command with Gemini models. ## Quick Start ```bash # Basic text generation uv run genai-cli text "What is the capital of France?" # With custom model uv run genai-cli text "Explain quantum computing" --model gemini-3-pro-preview # Creative writing with temperature uv run genai-cli text "Write a poem about the ocean" --temperature 0.9 # With system instruction uv run genai-cli text "Explain this code" --system "You are a senior software engineer" # Streaming output uv run genai-cli text "Tell me a long story" --stream # Save to file uv run genai-cli text "Generate documentation" --output ./docs.md ``` ## CLI Reference ``` uv run genai-cli text [OPTIONS] PROMPT Options: --model, -m Model: gemini-2.5-flash (default), gemini-2.5-flash-lite, gemini-3-pro-preview, gemini-2.0-flash --temperature, -t Randomness (0.0-2.0, default: 0.7) --max-tokens, -M Maximum output tokens --system, -s System instruction/persona --top-p Nucleus sampling threshold (0.0-1.0) --top-k Top-k token sampling (1-100) --stop Stop sequences (can be specified multiple times) --seed Random seed for reproducibility --stream Stream output in real-tim
- Quick Start
- CLI Reference
- Available Models
- Parameters
- Temperature
- System Instruction
- Token Control
- Sampling Parameters
- Stop Sequences
- Reproducibility
- Output Modes
- Standard Output
- Streaming
- JSON Output
Basic text generation uv run genai-cli text "What is the capital of France?" With custom model uv run genai-cli text "Explain quantum computing" --model gemini-3-pro-preview Creative writing with temperature uv run genai-cli text "Write a poem about the ocean" --temperature 0.9 With system instruction uv run genai-cli text "Explain this code" --system "You are a senior software engineer" Streaming output uv run genai-cli text "Tell me a long story" --stream
What does the genai-text skill do?
Generate text using Google GenAI Gemini models via CLI. Use when the user asks to generate text, get AI responses, create content, write with AI, or use Gemini for text completion.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill genai-text --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.
