@alibaba-group/open-code-review 1.6.6 → 1.7.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 +42 -0
- package/README.ko-KR.md +42 -0
- package/README.md +42 -0
- package/README.ru-RU.md +42 -0
- package/README.zh-CN.md +42 -0
- package/imgs/logo-core.svg +1 -1
- package/package.json +7 -7
package/README.ja-JP.md
CHANGED
|
@@ -673,6 +673,11 @@ OCRは4層の優先度チェーンを使ってレビュールールを解決し
|
|
|
673
673
|
| `llm.extra_headers` | string | カンマ区切りの `key=value` HTTPヘッダー |
|
|
674
674
|
| `llm.model` | string | `claude-opus-4-6` |
|
|
675
675
|
| `llm.use_anthropic` | boolean | `true` \| `false` |
|
|
676
|
+
| `mcp_servers.<name>.command` | string | MCPサーバーを起動するコマンド |
|
|
677
|
+
| `mcp_servers.<name>.args` | array | MCPサーバーのコマンドライン引数 |
|
|
678
|
+
| `mcp_servers.<name>.env` | array | 環境変数(`KEY=VALUE`形式) |
|
|
679
|
+
| `mcp_servers.<name>.tools` | array | 許可するツール名(空の場合はすべてのツール) |
|
|
680
|
+
| `mcp_servers.<name>.setup` | string | サーバー起動前に実行するセットアップコマンド |
|
|
676
681
|
| `language` | string | 任意の言語名、例:`English`、`Chinese`(デフォルト:`English`) |
|
|
677
682
|
| `telemetry.enabled` | boolean | `true` \| `false` |
|
|
678
683
|
| `telemetry.exporter` | string | `console` \| `otlp` |
|
|
@@ -681,6 +686,43 @@ OCRは4層の優先度チェーンを使ってレビュールールを解決し
|
|
|
681
686
|
|
|
682
687
|
環境変数は設定ファイルより優先されます。
|
|
683
688
|
|
|
689
|
+
### MCPサーバー
|
|
690
|
+
|
|
691
|
+
Open Code Reviewは[Model Context Protocol (MCP)](https://modelcontextprotocol.io/)サーバーをサポートしており、レビューエージェントがstdioトランスポートを介してコードレビュー中に外部ツールを使用できます。
|
|
692
|
+
|
|
693
|
+
CLIからMCPサーバーを設定します:
|
|
694
|
+
|
|
695
|
+
```bash
|
|
696
|
+
# MCPサーバーを追加
|
|
697
|
+
ocr config set mcp_servers.<name>.command <command>
|
|
698
|
+
ocr config set mcp_servers.<name>.args '["arg1","arg2"]'
|
|
699
|
+
ocr config set mcp_servers.<name>.env '["KEY=VALUE"]'
|
|
700
|
+
ocr config set mcp_servers.<name>.tools '["tool_name"]'
|
|
701
|
+
ocr config set mcp_servers.<name>.setup '<setup command>'
|
|
702
|
+
|
|
703
|
+
# MCPサーバーを削除
|
|
704
|
+
ocr config unset mcp_servers.<name>
|
|
705
|
+
```
|
|
706
|
+
|
|
707
|
+
| フィールド | 必須 | 説明 |
|
|
708
|
+
|-----------|------|------|
|
|
709
|
+
| `command` | はい | MCPサーバーを起動する実行コマンド |
|
|
710
|
+
| `args` | いいえ | サーバーに渡すコマンドライン引数 |
|
|
711
|
+
| `env` | いいえ | 環境変数(`KEY=VALUE`形式) |
|
|
712
|
+
| `tools` | いいえ | 許可するツール名。空の場合、サーバーのすべてのツールが利用可能 |
|
|
713
|
+
| `setup` | いいえ | サーバー起動前に実行するシェルコマンド(例:インデックスの構築) |
|
|
714
|
+
|
|
715
|
+
> **注意:** MCPツールの名前が組み込みツールと競合する場合、そのツールは警告付きでスキップされます。`setup`コマンドのタイムアウトは5分です。
|
|
716
|
+
|
|
717
|
+
**例:[CodeGraph](https://github.com/nicholasgasior/codegraph)を追加してコード構造分析を強化**
|
|
718
|
+
|
|
719
|
+
```bash
|
|
720
|
+
ocr config set mcp_servers.codegraph.command codegraph
|
|
721
|
+
ocr config set mcp_servers.codegraph.args '["serve","--mcp"]'
|
|
722
|
+
ocr config set mcp_servers.codegraph.tools '["codegraph_explore"]'
|
|
723
|
+
ocr config set mcp_servers.codegraph.setup 'codegraph init && codegraph index'
|
|
724
|
+
```
|
|
725
|
+
|
|
684
726
|
### 環境変数
|
|
685
727
|
|
|
686
728
|
| 変数 | 用途 |
|
package/README.ko-KR.md
CHANGED
|
@@ -631,6 +631,11 @@ Config file: `~/.opencodereview/config.json`
|
|
|
631
631
|
| `llm.extra_headers` | string | 쉼표로 구분된 `key=value` HTTP 헤더 |
|
|
632
632
|
| `llm.model` | string | `claude-opus-4-6` |
|
|
633
633
|
| `llm.use_anthropic` | boolean | `true` \| `false` |
|
|
634
|
+
| `mcp_servers.<name>.command` | string | MCP 서버를 시작하는 명령어 |
|
|
635
|
+
| `mcp_servers.<name>.args` | array | MCP 서버의 커맨드라인 인수 |
|
|
636
|
+
| `mcp_servers.<name>.env` | array | 환경 변수 (`KEY=VALUE` 형식) |
|
|
637
|
+
| `mcp_servers.<name>.tools` | array | 허용할 도구 이름 (비어 있으면 모든 도구 허용) |
|
|
638
|
+
| `mcp_servers.<name>.setup` | string | 서버 시작 전에 실행할 설정 명령어 |
|
|
634
639
|
| `language` | string | 임의의 언어 이름, 예: `English`, `Chinese` (기본값: `English`) |
|
|
635
640
|
| `telemetry.enabled` | boolean | `true` \| `false` |
|
|
636
641
|
| `telemetry.exporter` | string | `console` \| `otlp` |
|
|
@@ -639,6 +644,43 @@ Config file: `~/.opencodereview/config.json`
|
|
|
639
644
|
|
|
640
645
|
환경 변수는 config file보다 우선합니다.
|
|
641
646
|
|
|
647
|
+
### MCP Server
|
|
648
|
+
|
|
649
|
+
Open Code Review는 [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) 서버를 지원하여 리뷰 에이전트가 stdio 전송을 통해 코드 리뷰 중에 외부 도구를 사용할 수 있습니다.
|
|
650
|
+
|
|
651
|
+
CLI로 MCP 서버를 설정합니다:
|
|
652
|
+
|
|
653
|
+
```bash
|
|
654
|
+
# MCP 서버 추가
|
|
655
|
+
ocr config set mcp_servers.<name>.command <command>
|
|
656
|
+
ocr config set mcp_servers.<name>.args '["arg1","arg2"]'
|
|
657
|
+
ocr config set mcp_servers.<name>.env '["KEY=VALUE"]'
|
|
658
|
+
ocr config set mcp_servers.<name>.tools '["tool_name"]'
|
|
659
|
+
ocr config set mcp_servers.<name>.setup '<setup command>'
|
|
660
|
+
|
|
661
|
+
# MCP 서버 삭제
|
|
662
|
+
ocr config unset mcp_servers.<name>
|
|
663
|
+
```
|
|
664
|
+
|
|
665
|
+
| 필드 | 필수 | 설명 |
|
|
666
|
+
|------|------|------|
|
|
667
|
+
| `command` | 예 | MCP 서버를 시작하는 실행 명령어 |
|
|
668
|
+
| `args` | 아니오 | 서버에 전달할 커맨드라인 인수 |
|
|
669
|
+
| `env` | 아니오 | 환경 변수 (`KEY=VALUE` 형식) |
|
|
670
|
+
| `tools` | 아니오 | 허용할 도구 이름. 비어 있으면 서버의 모든 도구 사용 가능 |
|
|
671
|
+
| `setup` | 아니오 | 서버 시작 전에 실행할 셸 명령어 (예: 인덱스 빌드) |
|
|
672
|
+
|
|
673
|
+
> **참고:** MCP 도구의 이름이 내장 도구와 충돌하면 경고와 함께 건너뜁니다. `setup` 명령어의 타임아웃은 5분입니다.
|
|
674
|
+
|
|
675
|
+
**예시: [CodeGraph](https://github.com/nicholasgasior/codegraph)를 추가하여 코드 구조 분석 강화**
|
|
676
|
+
|
|
677
|
+
```bash
|
|
678
|
+
ocr config set mcp_servers.codegraph.command codegraph
|
|
679
|
+
ocr config set mcp_servers.codegraph.args '["serve","--mcp"]'
|
|
680
|
+
ocr config set mcp_servers.codegraph.tools '["codegraph_explore"]'
|
|
681
|
+
ocr config set mcp_servers.codegraph.setup 'codegraph init && codegraph index'
|
|
682
|
+
```
|
|
683
|
+
|
|
642
684
|
### Environment Variables
|
|
643
685
|
|
|
644
686
|
| Variable | Purpose |
|
package/README.md
CHANGED
|
@@ -678,6 +678,11 @@ Config file: `~/.opencodereview/config.json`
|
|
|
678
678
|
| `llm.extra_headers` | string | Comma-separated `key=value` HTTP headers |
|
|
679
679
|
| `llm.model` | string | `claude-opus-4-6` |
|
|
680
680
|
| `llm.use_anthropic` | boolean | `true` \| `false` |
|
|
681
|
+
| `mcp_servers.<name>.command` | string | Command to start the MCP server |
|
|
682
|
+
| `mcp_servers.<name>.args` | array | Command-line arguments for the MCP server |
|
|
683
|
+
| `mcp_servers.<name>.env` | array | Environment variables in `KEY=VALUE` format |
|
|
684
|
+
| `mcp_servers.<name>.tools` | array | Allowed tool names (empty = all tools) |
|
|
685
|
+
| `mcp_servers.<name>.setup` | string | Setup command to run before starting the server |
|
|
681
686
|
| `language` | string | Any language name, e.g. `English`, `Chinese` (default: `English`) |
|
|
682
687
|
| `telemetry.enabled` | boolean | `true` \| `false` |
|
|
683
688
|
| `telemetry.exporter` | string | `console` \| `otlp` |
|
|
@@ -686,6 +691,43 @@ Config file: `~/.opencodereview/config.json`
|
|
|
686
691
|
|
|
687
692
|
Environment variables take precedence over the config file.
|
|
688
693
|
|
|
694
|
+
### MCP Server
|
|
695
|
+
|
|
696
|
+
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.
|
|
697
|
+
|
|
698
|
+
Configure MCP servers via the CLI:
|
|
699
|
+
|
|
700
|
+
```bash
|
|
701
|
+
# Add an MCP server
|
|
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
|
+
# Delete an MCP server
|
|
709
|
+
ocr config unset mcp_servers.<name>
|
|
710
|
+
```
|
|
711
|
+
|
|
712
|
+
| Field | Required | Description |
|
|
713
|
+
|-------|----------|-------------|
|
|
714
|
+
| `command` | Yes | The executable command to start the MCP server |
|
|
715
|
+
| `args` | No | Command-line arguments passed to the server |
|
|
716
|
+
| `env` | No | Environment variables in `KEY=VALUE` format |
|
|
717
|
+
| `tools` | No | Allowed tool names; if empty, all tools from the server are available |
|
|
718
|
+
| `setup` | No | A shell command to run before starting the server (e.g. build an index) |
|
|
719
|
+
|
|
720
|
+
> **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.
|
|
721
|
+
|
|
722
|
+
**Example: Add [CodeGraph](https://github.com/nicholasgasior/codegraph) for code structure analysis**
|
|
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
|
+
|
|
689
731
|
### Environment Variables
|
|
690
732
|
|
|
691
733
|
| Variable | Purpose |
|
package/README.ru-RU.md
CHANGED
|
@@ -675,6 +675,11 @@ OCR разрешает правила ревью по цепочке приор
|
|
|
675
675
|
| `llm.extra_headers` | string | HTTP-заголовки `key=value` через запятую |
|
|
676
676
|
| `llm.model` | string | `claude-opus-4-6` |
|
|
677
677
|
| `llm.use_anthropic` | boolean | `true` \| `false` |
|
|
678
|
+
| `mcp_servers.<name>.command` | string | Команда для запуска MCP-сервера |
|
|
679
|
+
| `mcp_servers.<name>.args` | array | Аргументы командной строки для MCP-сервера |
|
|
680
|
+
| `mcp_servers.<name>.env` | array | Переменные окружения в формате `KEY=VALUE` |
|
|
681
|
+
| `mcp_servers.<name>.tools` | array | Разрешённые имена инструментов (пусто = все инструменты) |
|
|
682
|
+
| `mcp_servers.<name>.setup` | string | Команда настройки перед запуском сервера |
|
|
678
683
|
| `language` | string | Любое название языка, например `English`, `Chinese` (по умолчанию: `English`) |
|
|
679
684
|
| `telemetry.enabled` | boolean | `true` \| `false` |
|
|
680
685
|
| `telemetry.exporter` | string | `console` \| `otlp` |
|
|
@@ -683,6 +688,43 @@ OCR разрешает правила ревью по цепочке приор
|
|
|
683
688
|
|
|
684
689
|
Переменные окружения имеют приоритет над файлом конфигурации.
|
|
685
690
|
|
|
691
|
+
### MCP-сервер
|
|
692
|
+
|
|
693
|
+
Open Code Review поддерживает серверы [Model Context Protocol (MCP)](https://modelcontextprotocol.io/), позволяя агенту ревью использовать внешние инструменты во время проверки кода через stdio-транспорт.
|
|
694
|
+
|
|
695
|
+
Настройка MCP-серверов через CLI:
|
|
696
|
+
|
|
697
|
+
```bash
|
|
698
|
+
# Добавить MCP-сервер
|
|
699
|
+
ocr config set mcp_servers.<name>.command <command>
|
|
700
|
+
ocr config set mcp_servers.<name>.args '["arg1","arg2"]'
|
|
701
|
+
ocr config set mcp_servers.<name>.env '["KEY=VALUE"]'
|
|
702
|
+
ocr config set mcp_servers.<name>.tools '["tool_name"]'
|
|
703
|
+
ocr config set mcp_servers.<name>.setup '<setup command>'
|
|
704
|
+
|
|
705
|
+
# Удалить MCP-сервер
|
|
706
|
+
ocr config unset mcp_servers.<name>
|
|
707
|
+
```
|
|
708
|
+
|
|
709
|
+
| Поле | Обязательно | Описание |
|
|
710
|
+
|------|-------------|----------|
|
|
711
|
+
| `command` | Да | Исполняемая команда для запуска MCP-сервера |
|
|
712
|
+
| `args` | Нет | Аргументы командной строки для сервера |
|
|
713
|
+
| `env` | Нет | Переменные окружения в формате `KEY=VALUE` |
|
|
714
|
+
| `tools` | Нет | Разрешённые имена инструментов; если пусто — доступны все инструменты сервера |
|
|
715
|
+
| `setup` | Нет | Shell-команда для выполнения перед запуском сервера (например, построение индекса) |
|
|
716
|
+
|
|
717
|
+
> **Примечание:** Если имя MCP-инструмента конфликтует со встроенным инструментом, он будет пропущен с предупреждением. Таймаут команды `setup` составляет 5 минут.
|
|
718
|
+
|
|
719
|
+
**Пример: добавление [CodeGraph](https://github.com/nicholasgasior/codegraph) для усиления анализа структуры кода**
|
|
720
|
+
|
|
721
|
+
```bash
|
|
722
|
+
ocr config set mcp_servers.codegraph.command codegraph
|
|
723
|
+
ocr config set mcp_servers.codegraph.args '["serve","--mcp"]'
|
|
724
|
+
ocr config set mcp_servers.codegraph.tools '["codegraph_explore"]'
|
|
725
|
+
ocr config set mcp_servers.codegraph.setup 'codegraph init && codegraph index'
|
|
726
|
+
```
|
|
727
|
+
|
|
686
728
|
### Переменные окружения
|
|
687
729
|
|
|
688
730
|
| Переменная | Назначение |
|
package/README.zh-CN.md
CHANGED
|
@@ -663,6 +663,11 @@ OCR 通过四层优先级链解析评审规则。每层采用首次匹配原则
|
|
|
663
663
|
| `llm.extra_headers` | string | 逗号分隔的 `key=value` HTTP 头 |
|
|
664
664
|
| `llm.model` | string | `claude-opus-4-6` |
|
|
665
665
|
| `llm.use_anthropic` | boolean | `true` \| `false` |
|
|
666
|
+
| `mcp_servers.<name>.command` | string | 启动 MCP 服务器的命令 |
|
|
667
|
+
| `mcp_servers.<name>.args` | array | MCP 服务器的命令行参数 |
|
|
668
|
+
| `mcp_servers.<name>.env` | array | 环境变量,`KEY=VALUE` 格式 |
|
|
669
|
+
| `mcp_servers.<name>.tools` | array | 允许使用的工具名称(为空则允许所有工具) |
|
|
670
|
+
| `mcp_servers.<name>.setup` | string | 启动服务器前运行的初始化命令 |
|
|
666
671
|
| `language` | string | 任意语言名称,例如 `English`、`Chinese`(默认:`English`) |
|
|
667
672
|
| `telemetry.enabled` | boolean | `true` \| `false` |
|
|
668
673
|
| `telemetry.exporter` | string | `console` \| `otlp` |
|
|
@@ -671,6 +676,43 @@ OCR 通过四层优先级链解析评审规则。每层采用首次匹配原则
|
|
|
671
676
|
|
|
672
677
|
环境变量优先级高于配置文件。
|
|
673
678
|
|
|
679
|
+
### MCP Server
|
|
680
|
+
|
|
681
|
+
Open Code Review 支持 [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) 服务器,允许评审 Agent 在代码评审过程中通过 stdio 传输协议调用外部工具。
|
|
682
|
+
|
|
683
|
+
通过 CLI 配置 MCP 服务器:
|
|
684
|
+
|
|
685
|
+
```bash
|
|
686
|
+
# 添加 MCP 服务器
|
|
687
|
+
ocr config set mcp_servers.<name>.command <command>
|
|
688
|
+
ocr config set mcp_servers.<name>.args '["arg1","arg2"]'
|
|
689
|
+
ocr config set mcp_servers.<name>.env '["KEY=VALUE"]'
|
|
690
|
+
ocr config set mcp_servers.<name>.tools '["tool_name"]'
|
|
691
|
+
ocr config set mcp_servers.<name>.setup '<setup command>'
|
|
692
|
+
|
|
693
|
+
# 删除 MCP 服务器
|
|
694
|
+
ocr config unset mcp_servers.<name>
|
|
695
|
+
```
|
|
696
|
+
|
|
697
|
+
| 字段 | 必填 | 说明 |
|
|
698
|
+
|------|------|------|
|
|
699
|
+
| `command` | 是 | 启动 MCP 服务器的可执行命令 |
|
|
700
|
+
| `args` | 否 | 传递给服务器的命令行参数 |
|
|
701
|
+
| `env` | 否 | 环境变量,`KEY=VALUE` 格式 |
|
|
702
|
+
| `tools` | 否 | 允许使用的工具名称;为空则服务器的所有工具均可用 |
|
|
703
|
+
| `setup` | 否 | 启动服务器前运行的 shell 命令(例如构建索引) |
|
|
704
|
+
|
|
705
|
+
> **注意:** 如果 MCP 工具的名称与内置工具冲突,该工具将被跳过并输出警告。`setup` 命令的超时时间为 5 分钟。
|
|
706
|
+
|
|
707
|
+
**示例:添加 [CodeGraph](https://github.com/nicholasgasior/codegraph) 增强代码结构分析能力**
|
|
708
|
+
|
|
709
|
+
```bash
|
|
710
|
+
ocr config set mcp_servers.codegraph.command codegraph
|
|
711
|
+
ocr config set mcp_servers.codegraph.args '["serve","--mcp"]'
|
|
712
|
+
ocr config set mcp_servers.codegraph.tools '["codegraph_explore"]'
|
|
713
|
+
ocr config set mcp_servers.codegraph.setup 'codegraph init && codegraph index'
|
|
714
|
+
```
|
|
715
|
+
|
|
674
716
|
### 环境变量
|
|
675
717
|
|
|
676
718
|
| 变量 | 用途 |
|
package/imgs/logo-core.svg
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/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.
|
|
3
|
+
"version": "1.7.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.
|
|
32
|
-
"@alibaba-group/ocr-darwin-x64": "1.
|
|
33
|
-
"@alibaba-group/ocr-linux-arm64": "1.
|
|
34
|
-
"@alibaba-group/ocr-linux-x64": "1.
|
|
35
|
-
"@alibaba-group/ocr-win32-arm64": "1.
|
|
36
|
-
"@alibaba-group/ocr-win32-x64": "1.
|
|
31
|
+
"@alibaba-group/ocr-darwin-arm64": "1.7.0",
|
|
32
|
+
"@alibaba-group/ocr-darwin-x64": "1.7.0",
|
|
33
|
+
"@alibaba-group/ocr-linux-arm64": "1.7.0",
|
|
34
|
+
"@alibaba-group/ocr-linux-x64": "1.7.0",
|
|
35
|
+
"@alibaba-group/ocr-win32-arm64": "1.7.0",
|
|
36
|
+
"@alibaba-group/ocr-win32-x64": "1.7.0"
|
|
37
37
|
},
|
|
38
38
|
"engines": {
|
|
39
39
|
"node": ">=14"
|