Help us improve
Share bugs, ideas, or general feedback.
From redline
Runs a Codex code review on uncommitted changes as a background task via Bash, assesses findings, and reports issues found.
npx claudepluginhub alexanderatallah/redline --plugin redlineHow this command is triggered — by the user, by Claude, or both
Slash command
/redline:reviewThis command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
Run a Codex code review as a background task.
If `${user_config.provider}` is `openrouter`:
If `${user_config.provider}` is `openai`:
When the review completes, assess the findings and inform the user of any issues found.
$ARGUMENTS/reviewRuns Codex code review on local git state (working tree or vs base branch). Supports --wait/--background, --base <ref>, --scope auto|working-tree|branch.
/reviewPerforms on-demand code review of uncommitted changes, git diff ranges, files, or branches, producing a report on spec compliance and code quality.
/candid-reviewRuns configurable code review on current changes (staged/unstaged/branch) with harsh/constructive tone and focus areas, categorizes issues with fixes, applies selected ones, supports re-review and git commit.
/review-unstagedReviews unstaged changes for code quality, style, and potential issues using an isolated agent, then reports findings.
/reviewReviews staged changes or recent commits across five axes—correctness, readability, architecture, security, performance—producing categorized findings with file:line references and fixes.
Share bugs, ideas, or general feedback.
Run a Codex code review as a background task.
If ${user_config.provider} is openrouter:
OPENROUTER_API_KEY="${user_config.openrouter_api_key}" codex exec review -c 'model_provider="openrouter"' -c 'model="${user_config.model}"' -c 'model_reasoning_effort="${user_config.effort}"' --uncommitted
If ${user_config.provider} is openai:
codex exec review --uncommitted
When the review completes, assess the findings and inform the user of any issues found.
$ARGUMENTS