From ask-llm
Get a second opinion from Gemini on your current code changes. Analyzes staged/unstaged diffs and returns prioritized findings. Use when user asks to "review with Gemini", "Gemini code review", or "ask Gemini to check my code".
npx claudepluginhub lykhoyda/ask-llm --plugin ask-llmThis skill uses the workspace's default tool permissions.
Review current code changes by delegating to the `gemini-reviewer` agent.
Reviews git diffs using Gemini for bugs, security vulnerabilities, style inconsistencies, performance issues, and more. Ideal for second opinions on changes before committing.
Runs code reviews via external LLMs (OpenAI Codex CLI, Google Gemini CLI) on uncommitted changes, branch diffs, or commits using git and bash.
Reviews git diffs with Codex for bugs, security vulnerabilities, style issues, and performance problems. Useful for second opinions after AI edits or pre-commit checks.
Share bugs, ideas, or general feedback.
Review current code changes by delegating to the gemini-reviewer agent.
Gather the diff to review:
git diff to get unstaged changesgit diff --cached to get staged changesIf the diff is empty, inform the user there are no changes to review.
Launch the gemini-reviewer agent with the diff content. The agent handles the Gemini prompt structure and output formatting.