@alibaba-group/open-code-review 1.6.6 → 1.7.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.
package/README.ja-JP.md CHANGED
@@ -92,6 +92,10 @@ Open Code Reviewのコア哲学は、決定論的エンジニアリングとエ
92
92
 
93
93
  ## 使い方
94
94
 
95
+ ### 前提条件
96
+
97
+ - **Git >= 2.41** — Open Code Review は diff 生成、コード検索、リポジトリ操作に Git を利用します。
98
+
95
99
  ### CLI
96
100
 
97
101
  #### インストール
@@ -404,6 +408,7 @@ ocr review \
404
408
 
405
409
  - [`github_actions/`](./examples/github_actions/) — GitHub Actions統合の例
406
410
  - [`gitlab_ci/`](./examples/gitlab_ci/) — GitLab CI統合の例
411
+ - [`gitflic_ci/`](./examples/gitflic_ci/) — GitFlic CI統合の例
407
412
 
408
413
  ## コマンド
409
414
 
@@ -673,6 +678,11 @@ OCRは4層の優先度チェーンを使ってレビュールールを解決し
673
678
  | `llm.extra_headers` | string | カンマ区切りの `key=value` HTTPヘッダー |
674
679
  | `llm.model` | string | `claude-opus-4-6` |
675
680
  | `llm.use_anthropic` | boolean | `true` \| `false` |
681
+ | `mcp_servers.<name>.command` | string | MCPサーバーを起動するコマンド |
682
+ | `mcp_servers.<name>.args` | array | MCPサーバーのコマンドライン引数 |
683
+ | `mcp_servers.<name>.env` | array | 環境変数(`KEY=VALUE`形式) |
684
+ | `mcp_servers.<name>.tools` | array | 許可するツール名(空の場合はすべてのツール) |
685
+ | `mcp_servers.<name>.setup` | string | サーバー起動前に実行するセットアップコマンド |
676
686
  | `language` | string | 任意の言語名、例:`English`、`Chinese`(デフォルト:`English`) |
677
687
  | `telemetry.enabled` | boolean | `true` \| `false` |
678
688
  | `telemetry.exporter` | string | `console` \| `otlp` |
@@ -681,6 +691,43 @@ OCRは4層の優先度チェーンを使ってレビュールールを解決し
681
691
 
682
692
  環境変数は設定ファイルより優先されます。
683
693
 
694
+ ### MCPサーバー
695
+
696
+ Open Code Reviewは[Model Context Protocol (MCP)](https://modelcontextprotocol.io/)サーバーをサポートしており、レビューエージェントがstdioトランスポートを介してコードレビュー中に外部ツールを使用できます。
697
+
698
+ CLIからMCPサーバーを設定します:
699
+
700
+ ```bash
701
+ # MCPサーバーを追加
702
+ ocr config set mcp_servers.<name>.command <command>
703
+ ocr config set mcp_servers.<name>.args '["arg1","arg2"]'
704
+ ocr config set mcp_servers.<name>.env '["KEY=VALUE"]'
705
+ ocr config set mcp_servers.<name>.tools '["tool_name"]'
706
+ ocr config set mcp_servers.<name>.setup '<setup command>'
707
+
708
+ # MCPサーバーを削除
709
+ ocr config unset mcp_servers.<name>
710
+ ```
711
+
712
+ | フィールド | 必須 | 説明 |
713
+ |-----------|------|------|
714
+ | `command` | はい | MCPサーバーを起動する実行コマンド |
715
+ | `args` | いいえ | サーバーに渡すコマンドライン引数 |
716
+ | `env` | いいえ | 環境変数(`KEY=VALUE`形式) |
717
+ | `tools` | いいえ | 許可するツール名。空の場合、サーバーのすべてのツールが利用可能 |
718
+ | `setup` | いいえ | サーバー起動前に実行するシェルコマンド(例:インデックスの構築) |
719
+
720
+ > **注意:** MCPツールの名前が組み込みツールと競合する場合、そのツールは警告付きでスキップされます。`setup`コマンドのタイムアウトは5分です。
721
+
722
+ **例:[CodeGraph](https://github.com/nicholasgasior/codegraph)を追加してコード構造分析を強化**
723
+
724
+ ```bash
725
+ ocr config set mcp_servers.codegraph.command codegraph
726
+ ocr config set mcp_servers.codegraph.args '["serve","--mcp"]'
727
+ ocr config set mcp_servers.codegraph.tools '["codegraph_explore"]'
728
+ ocr config set mcp_servers.codegraph.setup 'codegraph init && codegraph index'
729
+ ```
730
+
684
731
  ### 環境変数
685
732
 
686
733
  | 変数 | 用途 |
package/README.ko-KR.md CHANGED
@@ -92,6 +92,10 @@ agent의 강점은 동적 판단과 동적 context 검색이 중요한 지점에
92
92
 
93
93
  ## 사용 방법
94
94
 
95
+ ### 사전 요구 사항
96
+
97
+ - **Git >= 2.41** — Open Code Review는 diff 생성, 코드 검색, 저장소 작업에 Git을 사용합니다.
98
+
95
99
  ### CLI
96
100
 
97
101
  #### 설치
@@ -404,6 +408,7 @@ ocr review \
404
408
 
405
409
  - [`github_actions/`](./examples/github_actions/): GitHub Actions 통합 예시
406
410
  - [`gitlab_ci/`](./examples/gitlab_ci/): GitLab CI 통합 예시
411
+ - [`gitflic_ci/`](./examples/gitflic_ci/): GitFlic CI 통합 예시
407
412
 
408
413
  ## Commands
409
414
 
@@ -631,6 +636,11 @@ Config file: `~/.opencodereview/config.json`
631
636
  | `llm.extra_headers` | string | 쉼표로 구분된 `key=value` HTTP 헤더 |
632
637
  | `llm.model` | string | `claude-opus-4-6` |
633
638
  | `llm.use_anthropic` | boolean | `true` \| `false` |
639
+ | `mcp_servers.<name>.command` | string | MCP 서버를 시작하는 명령어 |
640
+ | `mcp_servers.<name>.args` | array | MCP 서버의 커맨드라인 인수 |
641
+ | `mcp_servers.<name>.env` | array | 환경 변수 (`KEY=VALUE` 형식) |
642
+ | `mcp_servers.<name>.tools` | array | 허용할 도구 이름 (비어 있으면 모든 도구 허용) |
643
+ | `mcp_servers.<name>.setup` | string | 서버 시작 전에 실행할 설정 명령어 |
634
644
  | `language` | string | 임의의 언어 이름, 예: `English`, `Chinese` (기본값: `English`) |
635
645
  | `telemetry.enabled` | boolean | `true` \| `false` |
636
646
  | `telemetry.exporter` | string | `console` \| `otlp` |
@@ -639,6 +649,43 @@ Config file: `~/.opencodereview/config.json`
639
649
 
640
650
  환경 변수는 config file보다 우선합니다.
641
651
 
652
+ ### MCP Server
653
+
654
+ Open Code Review는 [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) 서버를 지원하여 리뷰 에이전트가 stdio 전송을 통해 코드 리뷰 중에 외부 도구를 사용할 수 있습니다.
655
+
656
+ CLI로 MCP 서버를 설정합니다:
657
+
658
+ ```bash
659
+ # MCP 서버 추가
660
+ ocr config set mcp_servers.<name>.command <command>
661
+ ocr config set mcp_servers.<name>.args '["arg1","arg2"]'
662
+ ocr config set mcp_servers.<name>.env '["KEY=VALUE"]'
663
+ ocr config set mcp_servers.<name>.tools '["tool_name"]'
664
+ ocr config set mcp_servers.<name>.setup '<setup command>'
665
+
666
+ # MCP 서버 삭제
667
+ ocr config unset mcp_servers.<name>
668
+ ```
669
+
670
+ | 필드 | 필수 | 설명 |
671
+ |------|------|------|
672
+ | `command` | 예 | MCP 서버를 시작하는 실행 명령어 |
673
+ | `args` | 아니오 | 서버에 전달할 커맨드라인 인수 |
674
+ | `env` | 아니오 | 환경 변수 (`KEY=VALUE` 형식) |
675
+ | `tools` | 아니오 | 허용할 도구 이름. 비어 있으면 서버의 모든 도구 사용 가능 |
676
+ | `setup` | 아니오 | 서버 시작 전에 실행할 셸 명령어 (예: 인덱스 빌드) |
677
+
678
+ > **참고:** MCP 도구의 이름이 내장 도구와 충돌하면 경고와 함께 건너뜁니다. `setup` 명령어의 타임아웃은 5분입니다.
679
+
680
+ **예시: [CodeGraph](https://github.com/nicholasgasior/codegraph)를 추가하여 코드 구조 분석 강화**
681
+
682
+ ```bash
683
+ ocr config set mcp_servers.codegraph.command codegraph
684
+ ocr config set mcp_servers.codegraph.args '["serve","--mcp"]'
685
+ ocr config set mcp_servers.codegraph.tools '["codegraph_explore"]'
686
+ ocr config set mcp_servers.codegraph.setup 'codegraph init && codegraph index'
687
+ ```
688
+
642
689
  ### Environment Variables
643
690
 
644
691
  | Variable | Purpose |
package/README.md CHANGED
@@ -92,6 +92,10 @@ The agent's strengths are concentrated where they matter most — dynamic decisi
92
92
 
93
93
  ## How to Use
94
94
 
95
+ ### Prerequisites
96
+
97
+ - **Git >= 2.41** — Open Code Review relies on Git for diff generation, code search, and repository operations.
98
+
95
99
  ### CLI
96
100
 
97
101
  #### Install
@@ -406,6 +410,7 @@ See the [`examples/`](./examples/) directory for integration examples:
406
410
 
407
411
  - [`github_actions/`](./examples/github_actions/) — GitHub Actions integration example
408
412
  - [`gitlab_ci/`](./examples/gitlab_ci/) — GitLab CI integration example
413
+ - [`gitflic_ci/`](./examples/gitflic_ci/) — GitFlic CI integration example
409
414
 
410
415
  ## Commands
411
416
 
@@ -678,6 +683,11 @@ Config file: `~/.opencodereview/config.json`
678
683
  | `llm.extra_headers` | string | Comma-separated `key=value` HTTP headers |
679
684
  | `llm.model` | string | `claude-opus-4-6` |
680
685
  | `llm.use_anthropic` | boolean | `true` \| `false` |
686
+ | `mcp_servers.<name>.command` | string | Command to start the MCP server |
687
+ | `mcp_servers.<name>.args` | array | Command-line arguments for the MCP server |
688
+ | `mcp_servers.<name>.env` | array | Environment variables in `KEY=VALUE` format |
689
+ | `mcp_servers.<name>.tools` | array | Allowed tool names (empty = all tools) |
690
+ | `mcp_servers.<name>.setup` | string | Setup command to run before starting the server |
681
691
  | `language` | string | Any language name, e.g. `English`, `Chinese` (default: `English`) |
682
692
  | `telemetry.enabled` | boolean | `true` \| `false` |
683
693
  | `telemetry.exporter` | string | `console` \| `otlp` |
@@ -686,6 +696,43 @@ Config file: `~/.opencodereview/config.json`
686
696
 
687
697
  Environment variables take precedence over the config file.
688
698
 
699
+ ### MCP Server
700
+
701
+ Open Code Review supports [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) servers, allowing the review agent to use external tools during code review via the stdio transport.
702
+
703
+ Configure MCP servers via the CLI:
704
+
705
+ ```bash
706
+ # Add an MCP server
707
+ ocr config set mcp_servers.<name>.command <command>
708
+ ocr config set mcp_servers.<name>.args '["arg1","arg2"]'
709
+ ocr config set mcp_servers.<name>.env '["KEY=VALUE"]'
710
+ ocr config set mcp_servers.<name>.tools '["tool_name"]'
711
+ ocr config set mcp_servers.<name>.setup '<setup command>'
712
+
713
+ # Delete an MCP server
714
+ ocr config unset mcp_servers.<name>
715
+ ```
716
+
717
+ | Field | Required | Description |
718
+ |-------|----------|-------------|
719
+ | `command` | Yes | The executable command to start the MCP server |
720
+ | `args` | No | Command-line arguments passed to the server |
721
+ | `env` | No | Environment variables in `KEY=VALUE` format |
722
+ | `tools` | No | Allowed tool names; if empty, all tools from the server are available |
723
+ | `setup` | No | A shell command to run before starting the server (e.g. build an index) |
724
+
725
+ > **Note:** If an MCP tool's name conflicts with a built-in tool, it will be skipped with a warning. The `setup` command has a 5-minute timeout.
726
+
727
+ **Example: Add [CodeGraph](https://github.com/nicholasgasior/codegraph) for code structure analysis**
728
+
729
+ ```bash
730
+ ocr config set mcp_servers.codegraph.command codegraph
731
+ ocr config set mcp_servers.codegraph.args '["serve","--mcp"]'
732
+ ocr config set mcp_servers.codegraph.tools '["codegraph_explore"]'
733
+ ocr config set mcp_servers.codegraph.setup 'codegraph init && codegraph index'
734
+ ```
735
+
689
736
  ### Environment Variables
690
737
 
691
738
  | Variable | Purpose |
package/README.ru-RU.md CHANGED
@@ -92,6 +92,10 @@ Open Code Review — это CLI-инструмент для код-ревью н
92
92
 
93
93
  ## Как использовать
94
94
 
95
+ ### Предварительные требования
96
+
97
+ - **Git >= 2.41** — Open Code Review использует Git для генерации diff, поиска по коду и операций с репозиторием.
98
+
95
99
  ### CLI
96
100
 
97
101
  #### Установка
@@ -406,6 +410,7 @@ ocr review \
406
410
 
407
411
  - [`github_actions/`](./examples/github_actions/) — пример интеграции с GitHub Actions
408
412
  - [`gitlab_ci/`](./examples/gitlab_ci/) — пример интеграции с GitLab CI
413
+ - [`gitflic_ci/`](./examples/gitflic_ci/) — пример интеграции с GitFlic CI
409
414
 
410
415
  ## Команды
411
416
 
@@ -675,6 +680,11 @@ OCR разрешает правила ревью по цепочке приор
675
680
  | `llm.extra_headers` | string | HTTP-заголовки `key=value` через запятую |
676
681
  | `llm.model` | string | `claude-opus-4-6` |
677
682
  | `llm.use_anthropic` | boolean | `true` \| `false` |
683
+ | `mcp_servers.<name>.command` | string | Команда для запуска MCP-сервера |
684
+ | `mcp_servers.<name>.args` | array | Аргументы командной строки для MCP-сервера |
685
+ | `mcp_servers.<name>.env` | array | Переменные окружения в формате `KEY=VALUE` |
686
+ | `mcp_servers.<name>.tools` | array | Разрешённые имена инструментов (пусто = все инструменты) |
687
+ | `mcp_servers.<name>.setup` | string | Команда настройки перед запуском сервера |
678
688
  | `language` | string | Любое название языка, например `English`, `Chinese` (по умолчанию: `English`) |
679
689
  | `telemetry.enabled` | boolean | `true` \| `false` |
680
690
  | `telemetry.exporter` | string | `console` \| `otlp` |
@@ -683,6 +693,43 @@ OCR разрешает правила ревью по цепочке приор
683
693
 
684
694
  Переменные окружения имеют приоритет над файлом конфигурации.
685
695
 
696
+ ### MCP-сервер
697
+
698
+ Open Code Review поддерживает серверы [Model Context Protocol (MCP)](https://modelcontextprotocol.io/), позволяя агенту ревью использовать внешние инструменты во время проверки кода через stdio-транспорт.
699
+
700
+ Настройка MCP-серверов через CLI:
701
+
702
+ ```bash
703
+ # Добавить MCP-сервер
704
+ ocr config set mcp_servers.<name>.command <command>
705
+ ocr config set mcp_servers.<name>.args '["arg1","arg2"]'
706
+ ocr config set mcp_servers.<name>.env '["KEY=VALUE"]'
707
+ ocr config set mcp_servers.<name>.tools '["tool_name"]'
708
+ ocr config set mcp_servers.<name>.setup '<setup command>'
709
+
710
+ # Удалить MCP-сервер
711
+ ocr config unset mcp_servers.<name>
712
+ ```
713
+
714
+ | Поле | Обязательно | Описание |
715
+ |------|-------------|----------|
716
+ | `command` | Да | Исполняемая команда для запуска MCP-сервера |
717
+ | `args` | Нет | Аргументы командной строки для сервера |
718
+ | `env` | Нет | Переменные окружения в формате `KEY=VALUE` |
719
+ | `tools` | Нет | Разрешённые имена инструментов; если пусто — доступны все инструменты сервера |
720
+ | `setup` | Нет | Shell-команда для выполнения перед запуском сервера (например, построение индекса) |
721
+
722
+ > **Примечание:** Если имя MCP-инструмента конфликтует со встроенным инструментом, он будет пропущен с предупреждением. Таймаут команды `setup` составляет 5 минут.
723
+
724
+ **Пример: добавление [CodeGraph](https://github.com/nicholasgasior/codegraph) для усиления анализа структуры кода**
725
+
726
+ ```bash
727
+ ocr config set mcp_servers.codegraph.command codegraph
728
+ ocr config set mcp_servers.codegraph.args '["serve","--mcp"]'
729
+ ocr config set mcp_servers.codegraph.tools '["codegraph_explore"]'
730
+ ocr config set mcp_servers.codegraph.setup 'codegraph init && codegraph index'
731
+ ```
732
+
686
733
  ### Переменные окружения
687
734
 
688
735
  | Переменная | Назначение |
package/README.zh-CN.md CHANGED
@@ -92,6 +92,10 @@ Open Code Review 的核心设计理念是将确定性工程与 Agent 结合,
92
92
 
93
93
  ## 如何使用
94
94
 
95
+ ### 前置条件
96
+
97
+ - **Git >= 2.41** — Open Code Review 依赖 Git 进行 diff 生成、代码搜索和仓库操作。
98
+
95
99
  ### CLI
96
100
 
97
101
  #### 安装
@@ -404,6 +408,7 @@ ocr review \
404
408
 
405
409
  - [`github_actions/`](./examples/github_actions/) — GitHub Actions 集成示例
406
410
  - [`gitlab_ci/`](./examples/gitlab_ci/) — GitLab CI 集成示例
411
+ - [`gitflic_ci/`](./examples/gitflic_ci/) — GitFlic CI 集成示例
407
412
 
408
413
  ## 命令
409
414
 
@@ -663,6 +668,11 @@ OCR 通过四层优先级链解析评审规则。每层采用首次匹配原则
663
668
  | `llm.extra_headers` | string | 逗号分隔的 `key=value` HTTP 头 |
664
669
  | `llm.model` | string | `claude-opus-4-6` |
665
670
  | `llm.use_anthropic` | boolean | `true` \| `false` |
671
+ | `mcp_servers.<name>.command` | string | 启动 MCP 服务器的命令 |
672
+ | `mcp_servers.<name>.args` | array | MCP 服务器的命令行参数 |
673
+ | `mcp_servers.<name>.env` | array | 环境变量,`KEY=VALUE` 格式 |
674
+ | `mcp_servers.<name>.tools` | array | 允许使用的工具名称(为空则允许所有工具) |
675
+ | `mcp_servers.<name>.setup` | string | 启动服务器前运行的初始化命令 |
666
676
  | `language` | string | 任意语言名称,例如 `English`、`Chinese`(默认:`English`) |
667
677
  | `telemetry.enabled` | boolean | `true` \| `false` |
668
678
  | `telemetry.exporter` | string | `console` \| `otlp` |
@@ -671,6 +681,43 @@ OCR 通过四层优先级链解析评审规则。每层采用首次匹配原则
671
681
 
672
682
  环境变量优先级高于配置文件。
673
683
 
684
+ ### MCP Server
685
+
686
+ Open Code Review 支持 [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) 服务器,允许评审 Agent 在代码评审过程中通过 stdio 传输协议调用外部工具。
687
+
688
+ 通过 CLI 配置 MCP 服务器:
689
+
690
+ ```bash
691
+ # 添加 MCP 服务器
692
+ ocr config set mcp_servers.<name>.command <command>
693
+ ocr config set mcp_servers.<name>.args '["arg1","arg2"]'
694
+ ocr config set mcp_servers.<name>.env '["KEY=VALUE"]'
695
+ ocr config set mcp_servers.<name>.tools '["tool_name"]'
696
+ ocr config set mcp_servers.<name>.setup '<setup command>'
697
+
698
+ # 删除 MCP 服务器
699
+ ocr config unset mcp_servers.<name>
700
+ ```
701
+
702
+ | 字段 | 必填 | 说明 |
703
+ |------|------|------|
704
+ | `command` | 是 | 启动 MCP 服务器的可执行命令 |
705
+ | `args` | 否 | 传递给服务器的命令行参数 |
706
+ | `env` | 否 | 环境变量,`KEY=VALUE` 格式 |
707
+ | `tools` | 否 | 允许使用的工具名称;为空则服务器的所有工具均可用 |
708
+ | `setup` | 否 | 启动服务器前运行的 shell 命令(例如构建索引) |
709
+
710
+ > **注意:** 如果 MCP 工具的名称与内置工具冲突,该工具将被跳过并输出警告。`setup` 命令的超时时间为 5 分钟。
711
+
712
+ **示例:添加 [CodeGraph](https://github.com/nicholasgasior/codegraph) 增强代码结构分析能力**
713
+
714
+ ```bash
715
+ ocr config set mcp_servers.codegraph.command codegraph
716
+ ocr config set mcp_servers.codegraph.args '["serve","--mcp"]'
717
+ ocr config set mcp_servers.codegraph.tools '["codegraph_explore"]'
718
+ ocr config set mcp_servers.codegraph.setup 'codegraph init && codegraph index'
719
+ ```
720
+
674
721
  ### 环境变量
675
722
 
676
723
  | 变量 | 用途 |
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="none" version="1.1" width="500" height="500" viewBox="0 0 500 500"><defs><clipPath id="master_svg0_3_1846"><rect x="0" y="0" width="500" height="500" rx="0"/></clipPath></defs><g clip-path="url(#master_svg0_3_1846)"><path d="M369.391824777832,207.16971852783203L369.391854777832,131.60131852783203C369.391854777832,128.15557852783203,367.18552477783203,125.09696952783203,363.915744777832,124.00987252783203L265.002354777832,91.12426762783203C256.809764777832,88.40048217783203,247.95578477783204,88.40048217783203,239.76320477783204,91.12426762783203L140.84986477783204,124.00987252783203C137.58010877783204,125.09696952783203,135.37377977783203,128.15557852783203,135.37377977783203,131.60131052783203L135.37377977783203,187.979896527832Q110.36145377783203,206.39992852783203,91.91033172783203,231.29782852783202C91.25267028783203,232.18527852783203,91.45416259783204,233.43310852783202,92.34779357783204,234.08234852783204L101.33021547783203,240.60814852783204C102.22384677783204,241.25737852783203,103.48256677783203,241.04652852783204,104.14099877783204,240.15965852783202Q117.80681777783204,221.75247852783204,135.37377977783203,207.15375852783203L135.37377977783203,207.16845852783203C135.42538077783203,207.12065852783203,135.47701677783203,207.07290852783203,135.52869377783202,207.02515852783205Q150.71423377783202,194.43231852783202,168.80918877783205,184.679801527832Q209.221374777832,162.89910852783203,251.50217477783204,162.39883452783204C251.59465477783203,162.39774352783203,251.68558477783202,162.39046452783202,251.77458477783202,162.377410527832C251.97704477783202,162.37673952783203,252.17955477783204,162.37640352783203,252.38211477783204,162.37640352783203C296.51404477783205,162.37640352783203,338.303324777832,178.37404652783204,369.391824777832,207.16971852783203ZM252.38291477783204,295.414878527832C279.10971477783204,295.414878527832,300.776084777832,273.74850852783203,300.776084777832,247.02170852783203C300.776084777832,240.21207852783203,299.33893477783204,233.47909852783204,296.55858477783204,227.26292852783203C294.66187477783205,235.80182852783204,287.548164777832,242.19144852783202,278.85541477783204,243.16412852783202C279.03736477783207,244.42372852783203,279.131504777832,245.71170852783203,279.131504777832,247.02168852783203C279.131504777832,261.794608527832,267.155694777832,273.770428527832,252.38277477783203,273.770428527832C237.60985477783203,273.770428527832,225.63404477783203,261.794608527832,225.63404477783203,247.02168852783203C225.63404477783203,232.24876852783203,237.60985477783203,220.27295852783203,252.38277477783203,220.27295852783203C253.69280477783204,220.27295852783203,254.98084477783203,220.36711852783202,256.240474777832,220.54907852783202C257.21321477783204,211.85636852783205,263.60280477783203,204.742728527832,272.141634777832,202.84602852783203C265.925484777832,200.06567852783203,259.19254477783204,198.62853852783203,252.38291477783204,198.62853852783203C225.65610477783204,198.62853852783203,203.98974477783202,220.29489852783203,203.98974477783202,247.02170852783203C203.98974477783202,273.74850852783203,225.65610477783204,295.414878527832,252.38291477783204,295.414878527832ZM274.81439477783204,243.21481852783202C264.90529477783207,242.35698852783204,257.04755477783203,234.49919852783202,256.1897847778321,224.59009852783203C254.95186477783204,224.38151852783204,253.68000477783204,224.27295852783203,252.38277477783203,224.27295852783203C239.81899477783202,224.27295852783203,229.63404477783203,234.45790852783202,229.63404477783203,247.02168852783203C229.63404477783203,259.58546852783206,239.81899477783202,269.770428527832,252.38277477783203,269.770428527832C264.94655477783203,269.770428527832,275.131504777832,259.58546852783206,275.131504777832,247.02168852783203C275.131504777832,245.72450852783203,275.02294477783204,244.45268852783204,274.81439477783204,243.21481852783202ZM313.98419477783204,373.06705852783205C339.51094477783204,356.76340852783204,357.58451477783206,331.66420852783205,365.26810477783204,303.12996852783203Q389.75952477783204,285.49681852783203,408.076424777832,260.794778527832C408.73435477783204,259.907508527832,408.54584477783203,258.641948527832,407.65219477783205,257.99271852783204L398.669774777832,251.46689852783203C397.77616477783204,250.81766852783204,396.535404777832,251.00403852783202,395.87693477783205,251.89087852783203Q383.89679477783204,268.02557852783207,369.057804777832,280.89197852783207L369.05826477783205,280.88595852783203C369.02341477783204,280.91804852783207,368.98856477783204,280.950138527832,368.95362477783203,280.98224852783204Q352.70179477783205,295.05160852783206,333.025454777832,305.20590852783204Q296.652744777832,323.976658527832,256.24428477783204,325.33029852783204C254.95902477783204,325.35753852783205,253.67157477783203,325.37118852783203,252.38211477783204,325.37118852783203C208.41640477783204,325.37118852783203,166.76860077783203,309.49237852783205,135.70742077783203,280.88730852783203C138.50842277783204,318.39349852783204,158.79284677783204,352.636328527832,190.78138777783204,373.067088527832L248.07660477783202,409.660928527832C250.70246477783203,411.33801852783205,254.06308477783202,411.33801852783205,256.68894477783203,409.660928527832L313.98419477783204,373.06705852783205Z" fill-rule="evenodd" fill="#35BD5F" fill-opacity="1"/></g></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" version="1.1" width="64" height="64" viewBox="0 0 64 64"><path d="M16.011564254260254,24.651044499999998C14.199108154260253,26.0486085,12.604812654260254,27.6949085,11.290275574260255,29.5567475C11.202753064260254,29.6807115,10.984476089260253,29.5737765,11.051337242260255,29.4375555C12.365951554260254,26.7591665,14.005819354260254,24.3629835,15.886684454260255,22.313341100000002L15.886684454260255,14.091053C15.886684454260255,13.28568935,16.539560354260253,12.6328125,17.344924954260254,12.6328125L46.644013054260256,12.6328125C47.449376054260256,12.6328125,48.10225405426026,13.28568935,48.10225405426026,14.091054L48.10225405426026,24.7461315C43.604340054260255,21.2891407,37.94170905426026,19.4149723,31.994634054260253,19.4149723C26.104784054260254,19.4149723,20.491794554260252,21.2537956,16.011564254260254,24.651044499999998ZM31.994557054260255,36.8882445C35.14015305426025,36.8882445,37.690160054260254,34.3323665,37.690160054260254,31.1795235C37.690160054260254,30.5937725,37.60022405426025,30.0115585,37.423505054260254,29.4532315C36.96355905426026,30.4290525,35.98299105426025,31.0517195,34.906236054260255,31.0517195C33.36864905426025,31.0517195,32.122189054260254,29.8023895,32.122189054260254,28.2612605C32.122189054260254,27.1816535,32.74318005426025,26.199264499999998,33.71711105426026,25.738142500000002C33.160027054260254,25.5609745,32.57901505426025,25.4708005,31.994557054260255,25.4708005C28.848966054260252,25.4708005,26.298958054260254,28.026681500000002,26.298958054260254,31.1795235C26.298958054260254,34.3323665,28.848966054260252,36.8882445,31.994557054260255,36.8882445ZM47.15295105426026,40.7200085C49.430203054260254,38.5980795,51.40581205426025,36.0023425,52.94698805426025,33.029174499999996C53.01721305426025,32.8936925,52.805627054260256,32.7626725,52.716546054260256,32.8865775C51.36659305426026,34.7642635,49.73017205426025,36.4189305,47.87169405426025,37.8158765C47.87339505426026,37.8053205,47.87509205426026,37.7947615,47.87677505426026,37.7842025C43.46611505426026,41.092453500000005,37.971620054260256,42.9006615,32.199830054260254,42.9434055C32.19153705426025,42.9434665,32.18324405426026,42.9435235,32.174951054260255,42.9435765C32.11482705426025,42.943946499999996,32.054662054260255,42.9441415,31.994454054260252,42.9441415C26.150606054260255,42.9441185,20.577615754260254,41.1334415,16.112119654260255,37.7839245C17.329820654260253,45.4193075,23.367437054260254,51.7093845,31.457871054260252,54.2405735C31.808347054260253,54.3502275,32.18059205426025,54.3502275,32.53106805426025,54.2405775C39.557904054260256,52.0421445,45.03618705426025,47.0081745,47.15295105426026,40.7200085Z" fill-rule="evenodd" fill="#2BDE5E"/></svg>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alibaba-group/open-code-review",
3
- "version": "1.6.6",
3
+ "version": "1.7.1",
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.6.6",
32
- "@alibaba-group/ocr-darwin-x64": "1.6.6",
33
- "@alibaba-group/ocr-linux-arm64": "1.6.6",
34
- "@alibaba-group/ocr-linux-x64": "1.6.6",
35
- "@alibaba-group/ocr-win32-arm64": "1.6.6",
36
- "@alibaba-group/ocr-win32-x64": "1.6.6"
31
+ "@alibaba-group/ocr-darwin-arm64": "1.7.1",
32
+ "@alibaba-group/ocr-darwin-x64": "1.7.1",
33
+ "@alibaba-group/ocr-linux-arm64": "1.7.1",
34
+ "@alibaba-group/ocr-linux-x64": "1.7.1",
35
+ "@alibaba-group/ocr-win32-arm64": "1.7.1",
36
+ "@alibaba-group/ocr-win32-x64": "1.7.1"
37
37
  },
38
38
  "engines": {
39
39
  "node": ">=14"