@alibaba-group/open-code-review 1.7.13 → 1.7.14

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
@@ -1,5 +1,5 @@
1
1
  <div align="center">
2
- <a href="https://alibaba.github.io/open-code-review/">
2
+ <a href="https://open-codereview.ai">
3
3
  <img src="imgs/logo-core.svg" alt="OpenCodeReview logo" width="180" />
4
4
  </a>
5
5
  <h1>OpenCodeReview</h1>
@@ -37,7 +37,7 @@ Open Code ReviewはAIを活用したコードレビューCLIツールです。
37
37
 
38
38
  Gitのdiffを読み取り、変更されたファイルをツール利用機能を持つエージェント経由で設定可能なLLMに送信し、行レベルの精度で構造化されたレビューコメントを生成します。エージェントはファイル全体の内容を読み取り、コードベースを検索し、コンテキストのために他の変更ファイルを参照し、深いレビューを生成できます — 単なる表面的なdiffへのフィードバックではありません。diffレビュー以外にも、`ocr scan` はファイル全体をレビューできます。不慣れなコードベースの監査や、意味のあるdiffがないディレクトリの検査に便利です。
39
39
 
40
- 詳細は[公式サイト](https://alibaba.github.io/open-code-review/)をご覧ください。
40
+ 詳細は[公式サイト](https://open-codereview.ai)をご覧ください。
41
41
 
42
42
  ![Highlights](imgs/highlights-ja.png)
43
43
 
@@ -497,6 +497,7 @@ JSON出力ではこの2つのフィールドは`content`や`start_line`などと
497
497
  - [`github_actions/`](./examples/github_actions/) — GitHub Actions統合の例
498
498
  - [`gitlab_ci/`](./examples/gitlab_ci/) — GitLab CI統合の例
499
499
  - [`gitflic_ci/`](./examples/gitflic_ci/) — GitFlic CI統合の例
500
+ - [`gerrit_ci/`](./examples/gerrit_ci/) — Gerrit (Jenkins / Gerrit Trigger) 統合の例
500
501
 
501
502
  #### GitHub Action
502
503
 
package/README.ko-KR.md CHANGED
@@ -1,5 +1,5 @@
1
1
  <div align="center">
2
- <a href="https://alibaba.github.io/open-code-review/">
2
+ <a href="https://open-codereview.ai">
3
3
  <img src="imgs/logo-core.svg" alt="OpenCodeReview logo" width="180" />
4
4
  </a>
5
5
  <h1>OpenCodeReview</h1>
@@ -37,7 +37,7 @@ Open Code Review는 AI 기반 코드 리뷰 CLI 도구입니다. Alibaba Group
37
37
 
38
38
  이 도구는 Git diff를 읽고, 변경 파일을 tool-use 기능을 가진 agent를 통해 설정 가능한 LLM으로 전달한 뒤, 라인 단위 위치 정보가 포함된 구조화된 리뷰 코멘트를 생성합니다. agent는 전체 파일 내용 읽기, 코드베이스 검색, 다른 변경 파일 확인 등을 통해 맥락을 확보하고 표면적인 diff 피드백이 아닌 깊이 있는 리뷰를 수행할 수 있습니다. diff 리뷰 외에도 `ocr scan`은 전체 파일을 리뷰할 수 있어, 익숙하지 않은 코드베이스를 감사하거나 의미 있는 diff가 없는 디렉터리를 검토하는 데 유용합니다.
39
39
 
40
- 자세한 내용은 [공식 웹사이트](https://alibaba.github.io/open-code-review/)를 참조하세요.
40
+ 자세한 내용은 [공식 웹사이트](https://open-codereview.ai)를 참조하세요.
41
41
 
42
42
  ![Highlights](imgs/highlights-en.png)
43
43
 
@@ -497,6 +497,7 @@ JSON 출력에서 두 field는 `content`, `start_line` 등과 같은 수준의 s
497
497
  - [`github_actions/`](./examples/github_actions/): GitHub Actions 통합 예시
498
498
  - [`gitlab_ci/`](./examples/gitlab_ci/): GitLab CI 통합 예시
499
499
  - [`gitflic_ci/`](./examples/gitflic_ci/): GitFlic CI 통합 예시
500
+ - [`gerrit_ci/`](./examples/gerrit_ci/): Gerrit (Jenkins / Gerrit Trigger) 통합 예시
500
501
 
501
502
  #### GitHub Action
502
503
 
package/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  <div align="center">
2
- <a href="https://alibaba.github.io/open-code-review/">
2
+ <a href="https://open-codereview.ai">
3
3
  <img src="imgs/logo-core.svg" alt="OpenCodeReview logo" width="180" />
4
4
  </a>
5
5
  <h1>OpenCodeReview</h1>
@@ -37,7 +37,7 @@ Open Code Review is an AI-powered code review CLI tool. It originated as Alibaba
37
37
 
38
38
  It reads Git diffs, sends changed files to a configurable LLM via an agent with tool-use capabilities, and generates structured review comments with line-level precision. The agent can read full file contents, search the codebase, inspect other changed files for context, and produce deep reviews — not just surface-level diff feedback. Beyond diff review, `ocr scan` reviews entire files for auditing unfamiliar codebases or directories that have no meaningful diff.
39
39
 
40
- Visit the [official website](https://alibaba.github.io/open-code-review/) for more details.
40
+ Visit the [official website](https://open-codereview.ai) for more details.
41
41
 
42
42
  ![Highlights](imgs/highlights-en.png)
43
43
 
@@ -499,6 +499,7 @@ See the [`examples/`](./examples/) directory for integration examples:
499
499
  - [`github_actions/`](./examples/github_actions/) — GitHub Actions integration example
500
500
  - [`gitlab_ci/`](./examples/gitlab_ci/) — GitLab CI integration example
501
501
  - [`gitflic_ci/`](./examples/gitflic_ci/) — GitFlic CI integration example
502
+ - [`gerrit_ci/`](./examples/gerrit_ci/) — Gerrit (Jenkins / Gerrit Trigger) integration example
502
503
 
503
504
  #### GitHub Action
504
505
 
package/README.ru-RU.md CHANGED
@@ -1,5 +1,5 @@
1
1
  <div align="center">
2
- <a href="https://alibaba.github.io/open-code-review/">
2
+ <a href="https://open-codereview.ai">
3
3
  <img src="imgs/logo-core.svg" alt="OpenCodeReview logo" width="180" />
4
4
  </a>
5
5
  <h1>OpenCodeReview</h1>
@@ -37,7 +37,7 @@ Open Code Review — это CLI-инструмент для код-ревью н
37
37
 
38
38
  Инструмент читает git-диффы, отправляет изменённые файлы настраиваемой LLM через агента с поддержкой вызова инструментов (tool use) и генерирует структурированные ревью-комментарии с точностью до строки. Агент может читать полное содержимое файлов, искать по кодовой базе, заглядывать в другие изменённые файлы за контекстом и выполнять глубокое ревью — а не только давать поверхностные замечания по диффу. Помимо ревью диффов, `ocr scan` позволяет проверять файлы целиком — удобно для аудита незнакомой кодовой базы или каталогов без значимого диффа.
39
39
 
40
- Подробнее на [официальном сайте](https://alibaba.github.io/open-code-review/).
40
+ Подробнее на [официальном сайте](https://open-codereview.ai).
41
41
 
42
42
  ![Highlights](imgs/highlights-en.png)
43
43
 
@@ -499,6 +499,7 @@ ocr review \
499
499
  - [`github_actions/`](./examples/github_actions/) — пример интеграции с GitHub Actions
500
500
  - [`gitlab_ci/`](./examples/gitlab_ci/) — пример интеграции с GitLab CI
501
501
  - [`gitflic_ci/`](./examples/gitflic_ci/) — пример интеграции с GitFlic CI
502
+ - [`gerrit_ci/`](./examples/gerrit_ci/) — пример интеграции с Gerrit (Jenkins / Gerrit Trigger)
502
503
 
503
504
  #### GitHub Action
504
505
 
package/README.zh-CN.md CHANGED
@@ -1,5 +1,5 @@
1
1
  <div align="center">
2
- <a href="https://alibaba.github.io/open-code-review/">
2
+ <a href="https://open-codereview.ai">
3
3
  <img src="imgs/logo-core.svg" alt="OpenCodeReview logo" width="180" />
4
4
  </a>
5
5
  <h1>OpenCodeReview</h1>
@@ -37,7 +37,7 @@ Open Code Review 是一款 AI 驱动的代码审查 CLI 工具。它的前身是
37
37
 
38
38
  它读取 Git diff,通过具备工具调用能力的 Agent 将变更文件发送至可配置的 LLM,生成具有行级精度的结构化审查意见。Agent 可以读取完整文件内容、搜索代码库、检查其他变更文件以获取上下文,从而进行深度审查——而非仅停留在表面的 diff 反馈。除了 diff 审查,`ocr scan` 可以审查整个文件,适用于审计不熟悉的代码库或没有有意义 diff 的目录。
39
39
 
40
- 访问[官方网站](https://alibaba.github.io/open-code-review/)了解更多信息。
40
+ 访问[官方网站](https://open-codereview.ai)了解更多信息。
41
41
 
42
42
  ![Highlights](imgs/highlights-zh.png)
43
43
 
@@ -497,6 +497,7 @@ ocr review \
497
497
  - [`github_actions/`](./examples/github_actions/) — GitHub Actions 集成示例
498
498
  - [`gitlab_ci/`](./examples/gitlab_ci/) — GitLab CI 集成示例
499
499
  - [`gitflic_ci/`](./examples/gitflic_ci/) — GitFlic CI 集成示例
500
+ - [`gerrit_ci/`](./examples/gerrit_ci/) — Gerrit (Jenkins / Gerrit Trigger) 集成示例
500
501
 
501
502
  #### GitHub Action
502
503
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alibaba-group/open-code-review",
3
- "version": "1.7.13",
3
+ "version": "1.7.14",
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.7.13",
32
- "@alibaba-group/ocr-darwin-x64": "1.7.13",
33
- "@alibaba-group/ocr-linux-arm64": "1.7.13",
34
- "@alibaba-group/ocr-linux-x64": "1.7.13",
35
- "@alibaba-group/ocr-win32-arm64": "1.7.13",
36
- "@alibaba-group/ocr-win32-x64": "1.7.13"
31
+ "@alibaba-group/ocr-darwin-arm64": "1.7.14",
32
+ "@alibaba-group/ocr-darwin-x64": "1.7.14",
33
+ "@alibaba-group/ocr-linux-arm64": "1.7.14",
34
+ "@alibaba-group/ocr-linux-x64": "1.7.14",
35
+ "@alibaba-group/ocr-win32-arm64": "1.7.14",
36
+ "@alibaba-group/ocr-win32-x64": "1.7.14"
37
37
  },
38
38
  "engines": {
39
39
  "node": ">=14"