Gets Gemini's independent opinion on any file, topic, or discussion. Use when users say "ask gemini", "gemini opinion", or "what does gemini think". Provides a second perspective from a different AI model with Claude's commentary. Requires GEMINI_API_KEY environment variable to be set.
From kw-pluginnpx claudepluginhub kwiggen/claude-code-plugin --plugin kw-pluginThis skill uses the workspace's default tool permissions.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Migrates code, prompts, and API calls from Claude Sonnet 4.0/4.5 or Opus 4.1 to Opus 4.5, updating model strings on Anthropic, AWS, GCP, Azure platforms.
Details PluginEval's skill quality evaluation: 3 layers (static, LLM judge), 10 dimensions, rubrics, formulas, anti-patterns, badges. Use to interpret scores, improve triggering, calibrate thresholds.
test -n "$GEMINI_API_KEY" via Bash to verify
the API key is configured. If it fails, inform the user that Gemini API key is not
configured and offer to answer the question directly.Build a clear, self-contained prompt for Gemini that includes:
Use Bash to invoke the Gemini API entrypoint:
echo "<context>" | node {pluginDir}/dist/gemini/cli.js --prompt "<question with framing>"
Or without stdin if no file/code context is needed:
node {pluginDir}/dist/gemini/cli.js --prompt "<full question with context>"
The CLI outputs JSON with success, output, model, and optional error fields.
[Gemini's full response, formatted cleanly]
[Brief commentary on Gemini's response — agreements, disagreements, additional considerations, or alternative perspectives. Keep this concise — the point is to get a second opinion, not to debate.]
If Gemini API key is not configured or the call fails:
Use gemini-advisor for second opinions on any topic, file, or technical question. Use gemini-reviewer (/gemini-review) for structured dual code reviews with formal synthesis and verdict.
If unsure about Gemini CLI flags, run:
node {pluginDir}/dist/gemini/cli.js --help