* align with CodeRabbit CLI install flow
- README: lead with `curl ... install.sh | sh`; document
`integrations setup` / `integrations disable`, the TTY/consent
decision matrix, and the `~/.coderabbit/skills.json` state file.
Demote `npx skills add` and the Claude Code plugin to an
"Alternative installers" section.
- code-review SKILL.md: add `version: 0.1.0` so the CLI's versioned
state tracking in `skills.json` isn't a no-op.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* move version into metadata per Agent Skills spec
The Agent Skills spec (https://agentskills.io/specification) enforces
a closed set of top-level frontmatter keys — name, description,
license, allowed-tools, metadata, compatibility — and places `version`
under `metadata`. Top-level `version:` fails `skills-ref validate`.
The CLI parser in coderabbitai/mono#13542 needs a matching change:
read `metadata.version` instead of top-level `version`.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* move triggers field under metadata in autofix
triggers is not a spec field; nesting it under metadata keeps the
frontmatter within the agentskills.io closed-set schema while preserving
the trigger patterns the autofix skill relies on.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* docs: add Codex app integration link
* docs: remove unsupported npx install flow
* docs: restore supported agents table
* docs: simplify install guidance
---------
Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
Move plugin manifest, subagent, and slash command from
coderabbitai/claude-plugin to the root of this repo so a single
source of truth hosts both the multi-agent skills and the Claude
Code plugin. Skill content (skills/autofix, skills/code-review)
is unchanged and already newer than the claude-plugin copies.
Next steps (separate PRs): update marketplace.json in
anthropics/claude-plugins-official to point at this repo, then
archive coderabbitai/claude-plugin.
The CodeRabbit CLI has deprecated --prompt-only in favor of the new
--agent flag (introduced in v0.4.0). This updates all references in
the code-review skill and adds a version requirement note so agents
can prompt users to upgrade if needed.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>