Help us improve
Share bugs, ideas, or general feedback.
From gemini-skills
Consults Gemini 3 Pro for code review, debugging, architecture advice, UX feedback on screenshots, or web search with Google grounding. Dump exhaustive context including code, errors, files, history.
npx claudepluginhub joshuarweaver/cascade-code-general-misc-4 --plugin stared-gemini-claude-skillsHow this skill is triggered — by the user, by Claude, or both
Slash command
/gemini-skills:gemini-consultantThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Get a second opinion from Google's Gemini 3 Pro (`gemini-3-pro-preview`) with real-time Google Search grounding.
Creates p5.js generative art with seeded randomness, noise fields, and interactive parameter exploration. Use for algorithmic art, flow fields, or particle systems.
Share bugs, ideas, or general feedback.
Get a second opinion from Google's Gemini 3 Pro (gemini-3-pro-preview) with real-time Google Search grounding.
CRITICAL: GEMINI IS BLIND. It knows nothing about your current session, file system, conversation history, or previous errors unless you explicitly force-feed it that data.
The -c/--context argument is effectively unlimited. To get a useful answer, you must dump EVERYTHING relevant into the context.
If you think a file is even tangentially related, INCLUDE IT.
GEMINI_API_KEY environment variable must be set.
uv run /path/to/skills/gemini-consultant/consult.py "Detailed Question" -c "MASSIVE CONTEXT STRING"
| Parameter | Description |
|---|---|
question | The prompt. Be specific. "Given error X and code Y (in context), why is logic Z failing?" |
-c, --context | THE DATA DUMP. Concatenate everything here. Code, logs, history, configs. Can be used multiple times. |
-i, --image | Image file paths (screenshots, diagrams). |
--media-resolution | low, medium (default), high, ultra_high. |
--no-search | Disable web search (pure code logic). |
--thinking | low or high (default). Use high for code. |
# WRONG: Context is missing.
uv run consult.py "Why is this crashing?" -c "Error: 500 Internal Server Error"
# WRONG: Single file provided, ignoring dependencies.
uv run consult.py "Fix this function." -c "$(cat src/broken_file.py)"
NOTE: Real-world usages are usually 10-100x longer than the snippets below.
# CORRECT: Providing File, Imports, Types, and Errors
uv run consult.py "I am getting a RecursionError in the serialization logic. Analyze the relationship between the Model and the Schema." \
-c "FILE: src/models.py
$(cat src/models.py)
FILE: src/schemas.py
$(cat src/schemas.py)
FILE: src/config/db_settings.py
$(cat src/config/db_settings.py)
ERROR LOG:
$(cat logs/error_dump.txt)
PREVIOUS ATTEMPTS:
I tried removing the circular reference in schema.py line 40 but it broke the API validation."
# CORRECT: Architecture review with full project scope
uv run consult.py "Review this authentication flow for security flaws." \
-c "MIDDLEWARE: $(cat src/middleware/auth.ts)
MODELS: $(cat src/models/user.ts)
ROUTES: $(cat src/routes/auth.ts)
CONFIG: $(cat src/config/security.ts)
TYPES: $(cat src/types/express.d.ts)"
uv run consult.py "What is the latest version of Next.js and what are its new features?"