@alibaba-group/open-code-review 1.8.10 → 1.9.0

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.
package/README.ja-JP.md CHANGED
@@ -135,7 +135,7 @@ cd your-project
135
135
  # ワークスペースモード — ステージ済み・未ステージ・未追跡のすべての変更をレビュー
136
136
  ocr review
137
137
 
138
- # ブランチ範囲 — 2つのrefを比較
138
+ # ブランチ範囲 — main から分岐した後の feature-branch の変更をレビュー(マージベースモード)
139
139
  ocr review --from main --to feature-branch
140
140
 
141
141
  # 単一コミット
@@ -171,6 +171,7 @@ ocr delegate rule src/main.go src/handler.go
171
171
  - [Codex](plugins/open-code-review/README.md#codex) — 呼び出し可能なレビュースキルを含むプラグインをインストール
172
172
  - [Cursor](plugins/open-code-review/README.md#cursor) — 移植可能なレビュースキルを含むプラグインをインストール
173
173
  - [OpenCode](plugins/open-code-review/opencode/README.md) — ネイティブレビュー・ツールとスラッシュコマンドをインストール
174
+ - [QCA Forward](plugins/open-code-review/qca/README.md) — QCA ホストモデルと公開可能なテンプレートで委任モードを実行
174
175
  - [Skill 対応エージェント](https://open-codereview.ai/docs/agent-skill) — 移植可能なエージェントスキルをインストール
175
176
  - レビュー実行モード — 連携後、どの LLM がレビューを実行するかを選択
176
177
  - [デフォルト(OCR が管理)](https://open-codereview.ai/docs/configuration) — OCR が設定済みの LLM を使用してレビューを実行
package/README.ko-KR.md CHANGED
@@ -135,7 +135,7 @@ cd your-project
135
135
  # Workspace mode: staged, unstaged, untracked 변경을 모두 리뷰
136
136
  ocr review
137
137
 
138
- # Branch range: ref 비교
138
+ # 브랜치 범위 main에서 분기된 이후 feature-branch의 변경 사항을 리뷰합니다 (머지베이스 모드)
139
139
  ocr review --from main --to feature-branch
140
140
 
141
141
  # 단일 commit
@@ -171,6 +171,7 @@ ocr delegate rule src/main.go src/handler.go
171
171
  - [Codex](plugins/open-code-review/README.md#codex) — 호출 가능한 리뷰 스킬이 포함된 플러그인 설치
172
172
  - [Cursor](plugins/open-code-review/README.md#cursor) — 이식 가능한 리뷰 스킬이 포함된 플러그인 설치
173
173
  - [OpenCode](plugins/open-code-review/opencode/README.md) — 네이티브 리뷰 도구와 슬래시 명령 설치
174
+ - [QCA Forward](plugins/open-code-review/qca/README.md) — QCA 호스트 모델과 게시 가능한 템플릿으로 위임 모드 실행
174
175
  - [Skill 호환 에이전트](https://open-codereview.ai/docs/agent-skill) — 이식 가능한 에이전트 스킬 설치
175
176
  - 리뷰 실행 모드 — 연동 후 리뷰를 수행할 LLM 선택
176
177
  - [기본 모드(OCR 관리)](https://open-codereview.ai/docs/configuration) — OCR이 설정된 LLM을 사용해 리뷰 수행
package/README.md CHANGED
@@ -135,7 +135,7 @@ cd your-project
135
135
  # Workspace mode — review all staged, unstaged, and untracked changes
136
136
  ocr review
137
137
 
138
- # Branch range — compare two refs
138
+ # Branch range — reviews feature-branch's changes since it diverged from main (merge-base mode)
139
139
  ocr review --from main --to feature-branch
140
140
 
141
141
  # Single commit
@@ -145,10 +145,6 @@ ocr review --commit abc123
145
145
  ocr session list
146
146
  ocr review --from main --to feature-branch --resume <session-id>
147
147
 
148
- # Print the review comments recorded in a saved session
149
- ocr session comments <session-id>
150
- ocr session comments --severity critical,high --json <session-id>
151
-
152
148
  # Full-file scan — review whole files instead of a diff (no git history needed)
153
149
  ocr scan # scan the entire repository
154
150
  ocr scan --path internal/agent # scan a directory or specific files
@@ -175,6 +171,7 @@ Full documentation lives at **[open-codereview.ai/docs](https://open-codereview.
175
171
  - [Codex](plugins/open-code-review/README.md#codex) — install a plugin with callable review skills
176
172
  - [Cursor](plugins/open-code-review/README.md#cursor) — install a plugin with portable review skills
177
173
  - [OpenCode](plugins/open-code-review/opencode/README.md) — install native review tools and slash commands
174
+ - [QCA Forward](plugins/open-code-review/qca/README.md) — run delegation mode with the QCA host model and a ready-to-publish template
178
175
  - [Skill-compatible agents](https://open-codereview.ai/docs/agent-skill) — install the portable agent skill
179
176
  - Review Execution Modes — after integration, choose which LLM performs the review
180
177
  - [Default (OCR-managed)](https://open-codereview.ai/docs/configuration) — OCR runs the review using its configured LLM
package/README.ru-RU.md CHANGED
@@ -135,7 +135,7 @@ cd your-project
135
135
  # Режим рабочей копии — ревью всех staged, unstaged и untracked изменений
136
136
  ocr review
137
137
 
138
- # Диапазон веток — сравнение двух ref'ов
138
+ # Диапазон веток — просматривает изменения feature-branch с момента её отделения от main (режим merge-base)
139
139
  ocr review --from main --to feature-branch
140
140
 
141
141
  # Один коммит
@@ -171,6 +171,7 @@ ocr delegate rule src/main.go src/handler.go
171
171
  - [Codex](plugins/open-code-review/README.md#codex) — установка плагина с вызываемыми навыками ревью
172
172
  - [Cursor](plugins/open-code-review/README.md#cursor) — установка плагина с переносимыми навыками ревью
173
173
  - [OpenCode](plugins/open-code-review/opencode/README.md) — установка нативных инструментов ревью и slash-команд
174
+ - [QCA Forward](plugins/open-code-review/qca/README.md) — запуск режима делегирования с хост-моделью QCA и готовым к публикации шаблоном
174
175
  - [Агенты с поддержкой Skill](https://open-codereview.ai/docs/agent-skill) — установка переносимого навыка агента
175
176
  - Режимы выполнения ревью — после интеграции выберите, какая LLM выполняет ревью
176
177
  - [По умолчанию (под управлением OCR)](https://open-codereview.ai/docs/configuration) — OCR выполняет ревью с помощью настроенной LLM
package/README.zh-CN.md CHANGED
@@ -135,7 +135,7 @@ cd your-project
135
135
  # 工作区模式 —— 审查所有暂存、未暂存和未跟踪的变更
136
136
  ocr review
137
137
 
138
- # 分支范围 —— 比较两个引用
138
+ # 分支范围 —— 评审 feature-branch 自与 main 分叉以来的变更(合并基准模式)
139
139
  ocr review --from main --to feature-branch
140
140
 
141
141
  # 单个提交
@@ -171,6 +171,7 @@ ocr delegate rule src/main.go src/handler.go
171
171
  - [Codex](plugins/open-code-review/README.md#codex) —— 安装包含可调用评审 Skill 的插件
172
172
  - [Cursor](plugins/open-code-review/README.md#cursor) —— 安装包含可移植评审 Skill 的插件
173
173
  - [OpenCode](plugins/open-code-review/opencode/README.md) —— 安装原生评审工具和斜杠命令
174
+ - [QCA Forward](plugins/open-code-review/qca/README.md) —— 使用 QCA 宿主模型运行委托模式,并提供可发布的模板
174
175
  - [兼容 Skill 的 Agent](https://open-codereview.ai/docs/agent-skill) —— 安装可移植的 Agent Skill
175
176
  - 评审执行模式 —— 完成集成后,选择由哪个 LLM 执行评审
176
177
  - [默认模式(OCR 驱动)](https://open-codereview.ai/docs/configuration) —— OCR 使用其已配置的 LLM 执行评审
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alibaba-group/open-code-review",
3
- "version": "1.8.10",
3
+ "version": "1.9.0",
4
4
  "description": "OpenCodeReview CLI — AI-powered code review tool",
5
5
  "bin": {
6
6
  "ocr": "bin/ocr.js"
@@ -28,12 +28,12 @@
28
28
  "checksumPattern": "https://github.com/alibaba/open-code-review/releases/download/v{version}/sha256sum.txt"
29
29
  },
30
30
  "optionalDependencies": {
31
- "@alibaba-group/ocr-darwin-arm64": "1.8.10",
32
- "@alibaba-group/ocr-darwin-x64": "1.8.10",
33
- "@alibaba-group/ocr-linux-arm64": "1.8.10",
34
- "@alibaba-group/ocr-linux-x64": "1.8.10",
35
- "@alibaba-group/ocr-win32-arm64": "1.8.10",
36
- "@alibaba-group/ocr-win32-x64": "1.8.10"
31
+ "@alibaba-group/ocr-darwin-arm64": "1.9.0",
32
+ "@alibaba-group/ocr-darwin-x64": "1.9.0",
33
+ "@alibaba-group/ocr-linux-arm64": "1.9.0",
34
+ "@alibaba-group/ocr-linux-x64": "1.9.0",
35
+ "@alibaba-group/ocr-win32-arm64": "1.9.0",
36
+ "@alibaba-group/ocr-win32-x64": "1.9.0"
37
37
  },
38
38
  "engines": {
39
39
  "node": ">=14"