Created
March 27, 2026 00:09
-
-
Save heathdutton/1145749a0cf22c45f87a78349fe53958 to your computer and use it in GitHub Desktop.
Install pr-review-toolkit v1.1.0 from fork (branch: 39546-modernize-pr-review-toolkit)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Install pr-review-toolkit v1.1.0 (modernized fork) | |
| ## Quick Install | |
| Add to `~/.claude/settings.json`: | |
| ```json | |
| { | |
| "extraKnownMarketplaces": { | |
| "pr-review-toolkit-dev": { | |
| "source": { | |
| "source": "git", | |
| "url": "https://github.com/heathdutton/claude-code.git", | |
| "branch": "39546-modernize-pr-review-toolkit" | |
| } | |
| } | |
| }, | |
| "enabledPlugins": { | |
| "pr-review-toolkit@pr-review-toolkit-dev": true | |
| } | |
| } | |
| ``` | |
| If you already have the marketplace version installed, disable it first: | |
| ```json | |
| "pr-review-toolkit@claude-code-plugins": false | |
| ``` | |
| Then restart Claude Code or run `/reload-plugins`. | |
| ## What changed (v1.1.0) | |
| - Agent frontmatter: tools restrictions, maxTurns (30), effort (high), model floors (sonnet/opus) | |
| - Read-only agents restricted to ["Read", "Grep", "Glob", "Bash"] | |
| - Removed hardcoded project assumptions (logError, errorIds.ts, ES module rules) | |
| - Project standards discovery from CLAUDE.md, CONTRIBUTING.md, linter configs, codebase | |
| - 11-step review-pr orchestration with validation pass and false-positive filtering | |
| - Platform-agnostic PR/MR support (GitHub, GitLab, etc.) | |
| - Inline review comments via platform API with --comment flag | |
| - Opus for bug validation, haiku for standards validation | |
| PR: https://github.com/anthropics/claude-code/pull/39559 | |
| Issue: https://github.com/anthropics/claude-code/issues/39546 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment