AI-powered code review and PR comment resolution — integrated into your AI coding workflow.
/plugin marketplace add CodeAnt-AI/skills
/plugin install codeant
That's it. You now have access to:
| Command | Description |
|---|---|
/codeant:resolve-pr-comments |
Fetch all unaddressed CodeAnt review comments on a PR and fix them |
/codeant:review-local |
Run a CodeAnt code review on local changes and fix all issues |
> /codeant:resolve-pr-comments 42
> /codeant:resolve-pr-comments
> /codeant:review-local
> /codeant:review-local staged files only
> /codeant:review-local last commit
The /codeant:resolve-pr-comments command enables a full auto-fix loop:
- Detects the PR for your current branch (or takes a PR number)
- Fetches all unaddressed CodeAnt review comments
- Presents a summary grouped by file and severity
- Applies suggested fixes where available
- Implements fixes for issues without suggestions
- Runs a verification review
- Reports what was fixed and what remains
The /codeant:review-local command reviews and fixes your local changes:
- Runs a CodeAnt AI review on your uncommitted, staged, or last commit changes
- Presents findings grouped by severity with security issues highlighted first
- Fixes every issue found, starting with critical severity
- Runs a verification review to confirm all fixes are clean
- Reports initial findings, fixes applied, and verification results
mkdir -p .cursor/rules
git clone https://github.com/CodeAnt-AI/skills.git /tmp/codeant-skills
cp /tmp/codeant-skills/cursor/codeant.mdc .cursor/rules/
rm -rf /tmp/codeant-skillsThen ask Cursor naturally:
Review my changes with CodeAnt
Fix all unaddressed CodeAnt comments on PR #42
- CodeAnt CLI installed and authenticated:
npm install -g codeant-cli
codeant login- For PR features, configure your SCM token:
codeant set-token github <your-token>