How this command is triggered — by the user, by Claude, or both
Slash command
/dt-code:review file_pathThis command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
Review all modified files since origin/HEAD, or focus on specific files if provided. Focus on (if provided): $ARGUMENTS ## Context - Modified files: !`git status --short` - Branch comparison: !`git diff origin/HEAD...HEAD --stat` - Recent commits: !`git log origin/HEAD..HEAD --oneline` ## Your task 1. Identify files that have been modified since origin/HEAD 2. If the user specified files in arguments, filter to only those files 3. For each modified file, launch an agent to review it (keeping in context the diff of related files) 4. Each review agent should analyze: - **Code quality*...
Review all modified files since origin/HEAD, or focus on specific files if provided.
Focus on (if provided): $ARGUMENTS
git status --shortgit diff origin/HEAD...HEAD --statgit log origin/HEAD..HEAD --onelineIdentify files that have been modified since origin/HEAD
If the user specified files in arguments, filter to only those files
For each modified file, launch an agent to review it (keeping in context the diff of related files)
Each review agent should analyze:
Compile the reviews and present a summary for each file
Review guidelines:
Important:
npx claudepluginhub daturkel/dt-cc --plugin dt-code/code-reviewReviews recent git changes for code quality, security, performance, testing, and documentation, providing actionable feedback and line-by-line comments.
/reviewAnalyzes local Git diffs and runs a thorough code review, producing a structured report with critical, warning, and suggestion categories.
/reviewPerforms on-demand code review of uncommitted changes, git diff ranges, files, or branches, producing a report on spec compliance and code quality.
/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.
/reviewInvokes multiple external AI CLIs (Gemini, Claude, Codex, etc.) to independently review a phase plan and produces a structured REVIEWS.md with per-reviewer feedback.