npx skills add smithery/neversight --skill gemini-qa
funnelenvy/agents_webinar_demos · Archived
gemini-qa
Use Google Gemini CLI to answer questions about code, analyze files, or perform codebase exploration. Invoke this skill when the user asks to use Gemini, wants a second opinion from another AI, or wants to compare Claude's answer with Gemini's response.
Installation
npx skills add funnelenvy/agents_webinar_demos --skill gemini-qa
Stronger alternatives
This repository is archived — consider an actively maintained alternative.
Use when writing BigQuery queries, optimizing query performance, analyzing execution plans, or …
33 installsUse when capturing screenshots, automating browser interactions, or scraping web content. Cover…
23 installsUse when syncing contacts or lists to HubSpot CRM. Automatically uses HUBSPOT_API_TOKEN from en…
23 installsUse when creating, deploying, or managing N8N workflows. Automatically uses N8N_HOST and N8N_AP…
22 installsSimilar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Browser automation CLI for AI agents. Use when the user needs to interact with websites, includ…
810.4K installsConfigure Azure API Management as an AI Gateway for AI models, MCP tools, and agents. WHEN: sem…
566.3K installsAzure VM/VMSS router. WHEN: create / provision / deploy / spin-up VM, recommend VM size, compar…
510K installsPostgres best practices maintained by Supabase, for Postgres running anywhere. Load this skill …
391.6K installsPrisma ORM CLI commands reference covering init, generate, migrate, db, dev, complete, studio, …
267K installsUse when doing ANY task involving Supabase. Triggers: Supabase products (Database, Auth, Edge F…
263K installsAlso in this package
Other skills from funnelenvy/agents_webinar_demos · top by installs.
npx skills add funnelenvy/agents_webinar_demos
More details
Agent compatibility
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Also listed on
Alternate registries and mirrors of this skill.
Repository health
main
Skill metadata
Parsed from SKILL.md frontmatter.
Package contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md2,121 B -
docs
SUMMARY.md270 B
History
- First seen on skills.sh
- First recorded snapshot · 37 installs
SKILL.md
Gemini Q&A
Use Google's Gemini CLI to answer questions about the codebase.
Prerequisites
Gemini CLI must be installed:
npm install -g @anthropic-ai/gemini-cli
# or follow installation at https://github.com/google-gemini/gemini-cli
Authentication must be configured (Google API key or Application Default Credentials).
Usage
Spawn the gemini-qa subagent to handle the question:
Use the Task tool to spawn the gemini-qa agent with the user's question.
The subagent will:
- Formulate a clear prompt for Gemini
- Run
gemini -p "question"in headless mode - Return Gemini's response
Direct Usage (without subagent)
If you prefer to run Gemini directly:
gemini -p "your question here"
# or
gemini "your question here"
Command Options
- Basic query:
gemini -p "question" - Positional:
gemini "question" - Pipe input:
cat file.txt | gemini -p "summarize this" - JSON output:
gemini -p "question" --output-format json - File reference:
gemini -p "@src/file.ts explain this"
File References with @
Gemini supports @ syntax to include file context:
# Reference a specific file
gemini -p "@src/auth.ts Explain this module"
# Reference a directory
gemini -p "@src/ Summarize all code here"
Common Use Cases
- Code explanation: "What does this function do?"
- Architecture questions: "How is the database layer structured?"
- Finding patterns: "Where is error handling implemented?"
- Code review: "Review this file for potential issues"
- Comparison: Get a second opinion on a code question
Notes
- Use
-pflag for headless (non-interactive) mode - Gemini is git-aware and respects
.gitignorefor directory references - For complex questions, use the subagent for better context isolation