Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ All notable changes to this repository are documented in this file.

## Unreleased

### Fixed

- Renamed the `code-review` skill to `coderabbit-review` so it no longer shadows
Claude Code's built-in `/code-review` slash command. The skill's `name`
frontmatter registered a bare, unnamespaced `/code-review` (upstream
anthropics/claude-code#22063), making the built-in unreachable while the skill
was installed. (#18)

### Added

- Documented CodeRabbit CLI `--dir <path>` support for directory-scoped
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ CodeRabbit supports 35+ coding agents.

## Available Skills

### [code-review](skills/code-review/SKILL.md)
### [coderabbit-review](skills/coderabbit-review/SKILL.md)

AI-powered code review that finds bugs, security issues, and suggests improvements using CodeRabbit.

Expand Down Expand Up @@ -215,7 +215,7 @@ Safe fix workflow for unresolved CodeRabbit GitHub PR review threads, with per-i
- Subagent: `code-reviewer`
- Marketplace manifest: `.claude-plugin/plugin.json`

The `code-review` skill also remains available for natural-language triggering
The `coderabbit-review` skill is also available for natural-language triggering
inside compatible agents.

### Cursor
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
name: code-review
description: "AI-powered code review using CodeRabbit. Default code-review skill. Trigger for any explicit review request AND autonomously when the agent thinks a review is needed (code/PR/quality/security)."
name: coderabbit-review
description: "AI-powered code review using CodeRabbit. Trigger for any explicit review request AND autonomously when the agent thinks a review is needed (code/PR/quality/security)."
metadata:
version: "0.1.0"
version: "0.1.1"
---

# CodeRabbit Code Review
Expand Down