plugins/google-ecosystem/skills/gemini-query/SKILL.md
Send a quick headless query to Gemini CLI and display the response with stats
npx skillsauth add melodic-software/claude-code-plugins gemini-queryInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Execute a quick headless query to Gemini CLI and display the response.
/google-ecosystem:gemini-query <prompt>
/google-ecosystem:gemini-query What is the capital of France?/google-ecosystem:gemini-query Explain async/await in JavaScript/google-ecosystem:gemini-query Review this error: TypeError: Cannot read property 'x' of undefinedRun the query using Gemini CLI headless mode:
result=$(gemini "$ARGUMENTS" --output-format json 2>&1)
Parse and present the response:
.response.stats.error# Extract response
response=$(echo "$result" | jq -r '.response // "No response"')
# Extract stats
tokens=$(echo "$result" | jq '.stats.models | to_entries | map(.value.tokens.total) | add // 0')
cached=$(echo "$result" | jq '.stats.models | to_entries | map(.value.tokens.cached) | add // 0')
models=$(echo "$result" | jq -r '.stats.models | keys | join(", ") | if . == "" then "unknown" else . end')
latency=$(echo "$result" | jq '.stats.models | to_entries | map(.value.api.totalLatencyMs) | add // 0')
# Check for errors
error=$(echo "$result" | jq -r '.error.message // empty')
Present the results in a clean format:
## Gemini Response
{response}
---
**Stats**: {tokens} tokens ({cached} cached) | Model: {models} | Latency: {latency}ms
If there's an error:
## Error
**Type**: {error_type}
**Message**: {error_message}
--output-format json for structured parsingdevelopment
Search Milan Jovanovic's .NET blog for Clean Architecture, DDD, CQRS, EF Core, and ASP.NET Core patterns. Use for finding applicable patterns, code examples, and architecture guidance. Invoke when working with .NET projects that could benefit from proven architectural patterns.
tools
Install and configure Data API Builder (DAB) for production SQL Server MCP access with RBAC
tools
Manage MssqlMcp servers - status, rebuild, and upstream updates
tools
Developer environment setup guides for Windows, macOS, Linux, and WSL. Use when setting up development machines, installing tools, configuring environments, or following platform-specific setup guides. Covers package management, shell/terminal, code editors, AI tooling, containerization, databases, and more.