Gemini Prompting
Recetas de prompts y antipatrones para delegar trabajo de codificación a Gemini 2.5
Funciona con configuración
Qué hace
Una single large reference on composing Gemini 2.5 Pro/Flash prompts para code review, bug diagnosis, refactors y codebase analysis — model choice, thinking budgets, temperature, structured output via response_schema, y ten named antipatterns. Loads cuando se está writing a prompt to hand a coding task a Gemini. Built as an internal component del Gemini Claude Code plugin rather than a standalone skill.
Informe de la prueba
Se solicitó un gemini-2.5-flash prompt que reviews a git diff para security issues only, cold y then following the skill, y la skill changed five specific things: it moved the task after the diff, went from one negative constraint a four, swapped the prose 'reply in JSON' for an API response_schema it explicitly calls fragile to do in prose, pinned temperature 0.3 y un 2048 thinking budget from its own tables, y flagged that structured output breaks on 2.5 cuando tool calls are in history. That es a real improvement to the prompt, but con no gemini binary on PATH y no API key there was no way to run either prompt, so the downstream answer quality es unmeasured. El install itself es clean from a bare HOME. Two structural catches: el frontmatter carries user-invocable: false, so once installed standalone you cannot call it yourself y must delete that line first, y el 590-line body never links its own references/ directory, so those two files sit on disk y never load. Content es still keyed a Gemini 2.5, con Gemini 3 surfacing only as footnotes that invert the skill's own temperature table.
Probado el: 2026-08-10 · Claude Code 2.x (agent harness)
Instalación
git clone https://github.com/abiswas97/gemini-plugin-cc.git mkdir -p ~/.claude/skills cd gemini-plugin-cc && cp -r plugins/gemini/skills/gemini-prompting ~/.claude/skills/gemini-prompting
Comandos y prompts de ejemplo
/gemini-promptingRecetas de prompts y antipatrones para delegar trabajo de codificación a Gemini 2.5
Los skills se activan con peticiones en lenguaje natural, sin comandos que memorizar. Tras instalarlo, prompts como estos lo activan (en inglés):
Write a Gemini 2.5 Flash prompt to review this diff for securityCompose a Gemini prompt with response_schema for bug diagnosisHelp me pick thinking budget and temperature for this Gemini task