From gemini
Internal guidance for composing Gemini prompts for coding, review, diagnosis, and research tasks inside the Gemini Claude Code plugin
How this skill is triggered — by the user, by Claude, or both
Slash command
/gemini:gemini-promptingThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill when `gemini:gemini-rescue` needs to ask Gemini for help.
Use this skill when gemini:gemini-rescue needs to ask Gemini for help.
Prompt Gemini like an operator, not a collaborator. Keep prompts compact and block-structured with XML tags. State the task, the output contract, the follow-through defaults, and the small set of extra constraints that matter.
Core rules:
Default prompt recipe:
<task>: the concrete job and the relevant repository or failure context.<output_contract>: exact shape, ordering, and brevity requirements.<follow_through_policy>: what Gemini should do by default instead of asking routine questions.<verification_loop>: required for debugging, implementation, or risky fixes.<grounding_rules>: required for review, research, or anything that could drift into unsupported claims.When to add blocks:
verification_loop and missing_context_gating.grounding_rules, output_contract, and emphasis on material findings only.research_mode and citation requirements.action_safety so Gemini stays narrow and avoids unrelated refactors.Leverage Gemini's strengths:
Working rules:
How to choose prompt shape:
review or adversarial-review commands when the job is reviewing local git changes. Those prompts already carry the review contract.task when the task is diagnosis, planning, research, or implementation and you need to control the prompt more directly.task --resume-last for follow-up instructions on the same Gemini thread. Send only the delta instruction instead of restating the whole prompt unless the direction changed materially.Prompt assembly checklist:
<task>.Reusable blocks live in references/prompt-blocks.md. Concrete end-to-end templates live in references/gemini-prompt-recipes.md. Common failure modes to avoid live in references/gemini-prompt-antipatterns.md.
npx claudepluginhub gustavobonze/gemini-plugin-cc --plugin geminiDelegates tasks to Gemini CLI for large-context analysis like broad codebase reviews or long-document processing. Activates on explicit requests such as 'use gemini' or 'delegate to gemini'.
Use when the user asks to run Gemini CLI (gemini, gemini resume) or references Google Gemini for code analysis, refactoring, or automated editing
Internal guidance for composing Copilot prompts for coding, review, diagnosis, and research tasks across GPT-5.4, GPT-5.3-Codex, and Gemini 3.1 Pro inside the Copilot Claude Code plugin