From ask-llm
Get a second opinion from OpenAI Codex on your current code changes. Analyzes staged/unstaged diffs and returns prioritized findings. Use when user asks to "review with Codex", "Codex code review", or "ask Codex to check my code".
How this skill is triggered — by the user, by Claude, or both
Slash command
/ask-llm:codex-reviewThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Review current code changes by delegating to the `codex-reviewer` agent.
Review current code changes by delegating to the codex-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 codex-reviewer agent with the diff content. The agent handles the Codex prompt structure and output formatting.
npx claudepluginhub lykhoyda/ask-llm --plugin ask-llmReviews git diffs with Codex for bugs, security vulnerabilities, style issues, and performance problems. Useful for second opinions after AI edits or pre-commit checks.
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".
Reviews git diffs using Gemini for bugs, security vulnerabilities, style inconsistencies, performance issues, and more. Ideal for second opinions on changes before committing.