npx claudepluginhub glekner/cursor-opinion-marketplace --plugin cursor-opinion# Cursor Code Review The user wants Cursor to review current git changes. ## Important: This is a READ-ONLY operation Cursor will analyze the diff but will NOT make any changes to files. This is a SLOW operation - expect 2-5 minutes. When calling Bash, you MUST set a long timeout: - Use `timeout: 600000` (10 minutes) for the Bash tool call ## Your Task 1. **Check for Git Repository**: Verify we're in a git repository: If this fails, inform the user they're not in a git repository. 2. **Gather Git Changes**: Get both staged and unstaged changes: If that returns empty (n...
/reviewReviews staged changes or recent commits across five axes—correctness, readability, architecture, security, performance—producing categorized findings with file:line references and fixes.
/reviewRuns Codex code review on local git state (working tree or vs base branch). Supports --wait/--background, --base <ref>, --scope auto|working-tree|branch.
/reviewOrchestrates multi-LLM code review across Codex, Gemini, Claude, Perplexity, and others; checks provider availability and posts inline PR comments.
/reviewReviews HTML file for design anti-patterns, principles violations, and accessibility issues. Generates markdown report with status tables and recommendations.
/reviewReviews specified code scope via four specialists (quality, security, performance, architecture), producing summary, detailed findings, refactoring suggestions, prioritized action plan.
/reviewDispatches the reviewer agent to review current branch code changes against code quality principles.
The user wants Cursor to review current git changes.
Cursor will analyze the diff but will NOT make any changes to files. This is a SLOW operation - expect 2-5 minutes.
When calling Bash, you MUST set a long timeout:
timeout: 600000 (10 minutes) for the Bash tool callCheck for Git Repository: Verify we're in a git repository:
git rev-parse --git-dir 2>&1
If this fails, inform the user they're not in a git repository.
Gather Git Changes: Get both staged and unstaged changes:
git diff HEAD
If that returns empty (no commits yet or no changes), try:
git diff
Or for only staged changes:
git diff --cached
Validate Changes Exist: If no changes are found in any of the above, inform the user there are no uncommitted changes to review.
Send to Cursor for Review: Pipe the diff to the review script.
CRITICAL: Set timeout to 600000ms (10 minutes) because Cursor uses a slow model:
# timeout: 600000
git diff HEAD | "${CLAUDE_PLUGIN_ROOT}/scripts/review-cursor.sh"
Present the Review: Share Cursor's code review feedback with the user clearly.
Synthesize (Optional): If you have additional observations about the code changes, add them to complement Cursor's review. Highlight points of agreement or offer different perspectives.
agent command is not found, they need to install the Cursor CLI