git-ai-review 2.1.0 → 2.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +7 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -26,6 +26,13 @@ npx git-ai-review review --copilot
26
26
  npx git-ai-review review --claude
27
27
  ```
28
28
 
29
+ Or review the diff between two branches:
30
+
31
+ ```bash
32
+ npx git-ai-review diff main
33
+ npx git-ai-review diff main feature-branch
34
+ ```
35
+
29
36
  Requirements for the target repo:
30
37
  - An `AGENTS.md` file must exist in the repo root (it's used as policy context for the review)
31
38
  - At least one reviewer CLI must be installed and authenticated: **Codex CLI** (`codex login`), **Copilot CLI** (`copilot auth`), or **Claude CLI** (`claude`)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "git-ai-review",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
4
4
  "description": "Review your git diff with local Codex CLI, Copilot CLI, or Claude CLI — run manually in one command or automatically as a git hook",
5
5
  "type": "module",
6
6
  "main": "dist/cli.js",