@alibaba-group/open-code-review 1.0.9 → 1.1.3
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.zh-CN.md +288 -0
- package/package.json +1 -1
- package/CHANGELOG.md +0 -111
package/README.zh-CN.md
ADDED
|
@@ -0,0 +1,288 @@
|
|
|
1
|
+
<div align="center">
|
|
2
|
+
|
|
3
|
+
[English](README.md) | 简体中文
|
|
4
|
+
|
|
5
|
+
</div>
|
|
6
|
+
|
|
7
|
+
# OpenCodeReview
|
|
8
|
+
|
|
9
|
+
AI 驱动的代码审查 CLI 工具,读取 Git diff,通过具备工具调用能力的 Agent 将变更文件发送至可配置的 LLM,生成具有行级精度的结构化审查意见。
|
|
10
|
+
|
|
11
|
+
Agent 可以读取完整文件内容、搜索代码库、检查其他变更文件以获取上下文,从而进行深度审查 —— 而非仅停留在表面的 diff 反馈。
|
|
12
|
+
|
|
13
|
+

|
|
14
|
+
|
|
15
|
+
## 安装
|
|
16
|
+
|
|
17
|
+
### 通过 NPM 安装(推荐)
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
npm install -g @alibaba-group/open-code-review
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
安装后,`ocr` 命令即可全局使用。
|
|
24
|
+
|
|
25
|
+
### 从 GitHub Release 下载
|
|
26
|
+
|
|
27
|
+
从 [GitHub Releases](https://github.com/alibaba/open-code-review/releases) 下载最新二进制文件:
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
# macOS (Apple Silicon)
|
|
31
|
+
curl -Lo ocr https://github.com/alibaba/open-code-review/releases/latest/download/opencodereview-darwin-arm64
|
|
32
|
+
chmod +x ocr && sudo mv ocr /usr/local/bin/ocr
|
|
33
|
+
|
|
34
|
+
# macOS (Intel)
|
|
35
|
+
curl -Lo ocr https://github.com/alibaba/open-code-review/releases/latest/download/opencodereview-darwin-amd64
|
|
36
|
+
chmod +x ocr && sudo mv ocr /usr/local/bin/ocr
|
|
37
|
+
|
|
38
|
+
# Linux (x86_64)
|
|
39
|
+
curl -Lo ocr https://github.com/alibaba/open-code-review/releases/latest/download/opencodereview-linux-amd64
|
|
40
|
+
chmod +x ocr && sudo mv ocr /usr/local/bin/ocr
|
|
41
|
+
|
|
42
|
+
# Linux (ARM64)
|
|
43
|
+
curl -Lo ocr https://github.com/alibaba/open-code-review/releases/latest/download/opencodereview-linux-arm64
|
|
44
|
+
chmod +x ocr && sudo mv ocr /usr/local/bin/ocr
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
### 从源码构建
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
git clone https://github.com/alibaba/open-code-review.git
|
|
51
|
+
cd open-code-review
|
|
52
|
+
make build
|
|
53
|
+
sudo cp dist/opencodereview /usr/local/bin/ocr
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
## 快速开始
|
|
57
|
+
|
|
58
|
+
### 1. 配置 LLM
|
|
59
|
+
|
|
60
|
+
**在审查代码之前,必须先配置 LLM。**
|
|
61
|
+
|
|
62
|
+
```bash
|
|
63
|
+
# 方式 A:交互式配置
|
|
64
|
+
ocr config set llm.url https://api.anthropic.com/v1/messages
|
|
65
|
+
ocr config set llm.auth_token your-api-key-here
|
|
66
|
+
ocr config set llm.model claude-opus-4-6
|
|
67
|
+
ocr config set llm.use_anthropic true
|
|
68
|
+
|
|
69
|
+
# 方式 B:环境变量(优先级最高)
|
|
70
|
+
export OCR_LLM_URL=https://api.anthropic.com/v1/messages
|
|
71
|
+
export OCR_LLM_TOKEN=your-api-key-here
|
|
72
|
+
export OCR_LLM_MODEL=claude-opus-4-6
|
|
73
|
+
export OCR_USE_ANTHROPIC=true
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
配置存储于 `~/.open-code-review/config.json`。
|
|
77
|
+
|
|
78
|
+
工具也会回退使用 Claude Code 环境变量(`ANTHROPIC_BASE_URL`、`ANTHROPIC_AUTH_TOKEN`、`ANTHROPIC_MODEL`),并解析 `~/.zshrc` / `~/.bashrc` 中的相关导出。
|
|
79
|
+
|
|
80
|
+
### 2. 测试连通性
|
|
81
|
+
|
|
82
|
+
```bash
|
|
83
|
+
ocr llm test
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
### 3. 开始审查
|
|
87
|
+
|
|
88
|
+
```bash
|
|
89
|
+
cd your-project
|
|
90
|
+
|
|
91
|
+
# 工作区模式 —— 审查所有暂存、未暂存和未跟踪的变更
|
|
92
|
+
ocr review
|
|
93
|
+
|
|
94
|
+
# 分支范围 —— 比较两个引用
|
|
95
|
+
ocr review --from main --to feature-branch
|
|
96
|
+
|
|
97
|
+
# 单个提交
|
|
98
|
+
ocr review --commit abc123
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
## 命令
|
|
102
|
+
|
|
103
|
+
| 命令 | 别名 | 描述 |
|
|
104
|
+
|------|------|------|
|
|
105
|
+
| `ocr review` | `ocr r` | 开始代码审查 |
|
|
106
|
+
| `ocr config set <key> <value>` | — | 设置配置项 |
|
|
107
|
+
| `ocr llm test` | — | 测试 LLM 连通性 |
|
|
108
|
+
| `ocr viewer` | `ocr v` | 启动 WebUI 会话查看器,地址 `localhost:5483` |
|
|
109
|
+
| `ocr version` | — | 显示版本信息 |
|
|
110
|
+
|
|
111
|
+
### `ocr review` 参数
|
|
112
|
+
|
|
113
|
+
| 参数 | 缩写 | 默认值 | 描述 |
|
|
114
|
+
|------|------|--------|------|
|
|
115
|
+
| `--repo` | — | 当前目录 | Git 仓库根目录 |
|
|
116
|
+
| `--from` | — | — | 源引用(如 `main`) |
|
|
117
|
+
| `--to` | — | — | 目标引用(如 `feature-branch`) |
|
|
118
|
+
| `--commit` | `-c` | — | 审查单个提交 |
|
|
119
|
+
| `--format` | `-f` | `text` | 输出格式:`text` 或 `json` |
|
|
120
|
+
| `--concurrency` | — | `8` | 最大并发文件审查数 |
|
|
121
|
+
| `--timeout` | — | `10` | 并发任务超时时间(分钟) |
|
|
122
|
+
| `--audience` | — | `human` | `human`(显示进度)或 `agent`(仅输出摘要) |
|
|
123
|
+
| `--rule` | — | — | 自定义 JSON 审查规则路径 |
|
|
124
|
+
| `--tools` | — | — | 自定义 JSON 工具配置路径 |
|
|
125
|
+
|
|
126
|
+
## 示例
|
|
127
|
+
|
|
128
|
+
```bash
|
|
129
|
+
# 使用默认设置审查工作区变更
|
|
130
|
+
ocr review
|
|
131
|
+
|
|
132
|
+
# 以更高并发审查分支差异
|
|
133
|
+
ocr review --from main --to my-feature --concurrency 4
|
|
134
|
+
|
|
135
|
+
# 审查特定提交并以 JSON 格式输出详细信息
|
|
136
|
+
ocr review --commit abc123 --format json --audience agent
|
|
137
|
+
|
|
138
|
+
# 使用自定义审查规则
|
|
139
|
+
ocr review --rule /path/to/my-rules.json
|
|
140
|
+
|
|
141
|
+
# 在浏览器中查看审查会话历史
|
|
142
|
+
ocr viewer
|
|
143
|
+
ocr viewer --addr :3000
|
|
144
|
+
```
|
|
145
|
+
|
|
146
|
+
## 评审规则
|
|
147
|
+
|
|
148
|
+
OCR 通过四层优先级链解析评审规则。每层采用首次匹配原则:如果文件路径匹配到某个模式,则使用该规则;否则穿透到下一层。
|
|
149
|
+
|
|
150
|
+
| 优先级 | 来源 | 路径 | 描述 |
|
|
151
|
+
|--------|------|------|------|
|
|
152
|
+
| 1(最高) | `--rule` 参数 | 用户指定路径 | CLI 显式覆盖 |
|
|
153
|
+
| 2 | 项目配置 | `<repoDir>/.open-code-review/rule.json` | 项目级规则,可提交到 git |
|
|
154
|
+
| 3 | 全局配置 | `~/.open-code-review/rule.json` | 用户级个人偏好 |
|
|
155
|
+
| 4(最低) | 系统默认 | 内嵌 `system_rules.json` | 覆盖常见语言和文件类型的内置规则 |
|
|
156
|
+
|
|
157
|
+
### 规则文件格式
|
|
158
|
+
|
|
159
|
+
第 1–3 层使用相同的 JSON 格式:
|
|
160
|
+
|
|
161
|
+
```json
|
|
162
|
+
{
|
|
163
|
+
"rules": [
|
|
164
|
+
{
|
|
165
|
+
"path": "force-api/**/*.java",
|
|
166
|
+
"rule": "所有新方法必须对必填参数进行空值校验"
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"path": "**/*mapper*.xml",
|
|
170
|
+
"rule": "检查 SQL 注入风险、参数错误和缺少闭合标签"
|
|
171
|
+
}
|
|
172
|
+
]
|
|
173
|
+
}
|
|
174
|
+
```
|
|
175
|
+
|
|
176
|
+
- `path` 支持 `**` 递归匹配和 `{java,kt}` 大括号展开。
|
|
177
|
+
- 在每一层内,规则按声明顺序评估 —— 首次匹配生效。
|
|
178
|
+
- 如果规则文件不存在,将被静默跳过。
|
|
179
|
+
|
|
180
|
+
## 架构
|
|
181
|
+
|
|
182
|
+
审查 Agent 遵循**三阶段工作流**:
|
|
183
|
+
|
|
184
|
+
1. **计划阶段** —— 对于超过 50 行的变更,Agent 会在审查前进行风险分析。较小的 diff 直接跳至主阶段。
|
|
185
|
+
2. **主任务循环** —— 每个变更文件分配独立的 goroutine。LLM 在对话循环中与内置工具交互(读取文件、搜索代码、读取 diff、提交评论),直到调用 `task_done`。
|
|
186
|
+
3. **记忆压缩** —— 当提示上下文超过 token 阈值(异步 60%,同步 80%)时,Agent 使用三区分区(冻结 / 压缩 / 活跃)管理上下文窗口大小。
|
|
187
|
+
|
|
188
|
+
### 关键设计决策
|
|
189
|
+
|
|
190
|
+
- **按文件并发处理** —— 文件并行审查(默认 8 个 worker)。超时机制防止单个文件阻塞其他文件。
|
|
191
|
+
- **双协议支持** —— 同时支持 Anthropic Messages API 和 OpenAI Chat Completions API,自动 URL 规范化。
|
|
192
|
+
- **工具调用 Agent** —— LLM 可以访问领域特定工具(`code_search`、`file_read`、`code_comment`、`file_find`、`file_read_diff`),实现跨引用的上下文感知审查,而非孤立的 diff 扫描。
|
|
193
|
+
|
|
194
|
+
## 配置参考
|
|
195
|
+
|
|
196
|
+
配置文件:`~/.open-code-review/config.json`
|
|
197
|
+
|
|
198
|
+
| 键 | 类型 | 示例 |
|
|
199
|
+
|----|------|------|
|
|
200
|
+
| `llm.url` | string | `https://api.openai.com/v1/chat/completions` |
|
|
201
|
+
| `llm.auth_token` | string | `sk-xxxxxxx` |
|
|
202
|
+
| `llm.model` | string | `claude-opus-4-6` |
|
|
203
|
+
| `llm.use_anthropic` | boolean | `true` \| `false` |
|
|
204
|
+
| `language` | string | `English` \| `Chinese`(默认:Chinese) |
|
|
205
|
+
| `telemetry.enabled` | boolean | `true` \| `false` |
|
|
206
|
+
| `telemetry.exporter` | string | `console` \| `otlp` |
|
|
207
|
+
| `telemetry.otlp_endpoint` | string | OTLP 采集器地址 |
|
|
208
|
+
| `telemetry.content_logging` | boolean | 在遥测数据中包含提示词 |
|
|
209
|
+
|
|
210
|
+
环境变量优先级高于配置文件。
|
|
211
|
+
|
|
212
|
+
### 环境变量
|
|
213
|
+
|
|
214
|
+
| 变量 | 用途 |
|
|
215
|
+
|------|------|
|
|
216
|
+
| `OCR_LLM_URL` | LLM API 端点 URL |
|
|
217
|
+
| `OCR_LLM_TOKEN` | API 密钥 / 认证令牌 |
|
|
218
|
+
| `OCR_LLM_MODEL` | 模型名称 |
|
|
219
|
+
| `OCR_USE_ANTHROPIC` | `true` = Anthropic,`false` = OpenAI |
|
|
220
|
+
|
|
221
|
+
### 模板参数
|
|
222
|
+
|
|
223
|
+
内部默认值定义于 `internal/config/template/task_template.json`:
|
|
224
|
+
|
|
225
|
+
| 参数 | 默认值 | 描述 |
|
|
226
|
+
|------|--------|------|
|
|
227
|
+
| `MAX_TOKENS` | 58888 | 每次 LLM 请求最大 token 数 |
|
|
228
|
+
| `MAX_TOOL_REQUEST_TIMES` | 20 | 每个文件最大工具调用迭代次数 |
|
|
229
|
+
| `PLAN_MODE_LINE_THRESHOLD` | 50 | 低于此行数跳过计划阶段 |
|
|
230
|
+
| `TOOL_REQUEST_WAIT_TIME_MS` | 10000 | 单次工具请求超时时间 |
|
|
231
|
+
|
|
232
|
+
## 内置工具
|
|
233
|
+
|
|
234
|
+
审查过程中 LLM Agent 可调用的工具:
|
|
235
|
+
|
|
236
|
+
| 工具 | 可用阶段 | 用途 |
|
|
237
|
+
|------|----------|------|
|
|
238
|
+
| `task_done` | main_task | 终止审查(DONE/FAILED) |
|
|
239
|
+
| `code_comment` | main_task | 提交行级审查意见 |
|
|
240
|
+
| `file_read` | main_task | 按行范围读取文件内容 |
|
|
241
|
+
| `code_search` | plan + main | 跨文件搜索文本/正则表达式 |
|
|
242
|
+
| `file_read_diff` | plan + main | 查看其他变更文件的 diff 内容 |
|
|
243
|
+
| `file_find` | plan + main | 按文件名关键词查找文件 |
|
|
244
|
+
|
|
245
|
+
## 系统审查规则
|
|
246
|
+
|
|
247
|
+
按文件类型通过 glob 模式匹配的内置审查清单,定义于 `internal/config/rules/system_rules.json`:
|
|
248
|
+
|
|
249
|
+
| 模式 | 关注领域 |
|
|
250
|
+
|------|----------|
|
|
251
|
+
| `*.java` | NPE 风险、死循环、switch 穿透、N+1 查询、线程安全 |
|
|
252
|
+
| `*.{ts,js,tsx,jsx}` | 代码质量、React 最佳实践、异步规范、XSS/安全 |
|
|
253
|
+
| `*.kt` | 空安全、协程使用、惯用模式 |
|
|
254
|
+
| `*{go,py,ets,lua,dart,swift,groovy}` | 逻辑缺陷、拼写错误 |
|
|
255
|
+
| `*{cpp,cc,hpp}` | 智能指针、RAII、STL、const 正确性 |
|
|
256
|
+
| `*.c` | malloc/free 配对、缓冲区溢出 |
|
|
257
|
+
| `pom.xml` / `build.gradle` | 禁止 SNAPSHOT 版本 |
|
|
258
|
+
| `package.json` | latest/通配符版本、依赖冲突 |
|
|
259
|
+
| `*mapper*.xml` / `*dao*.xml` | SQL 注入、性能、逻辑错误 |
|
|
260
|
+
| `*.properties` | 拼写检测、重复键、安全问题 |
|
|
261
|
+
|
|
262
|
+
可通过 `--rule path/to/rules.json` 覆盖。
|
|
263
|
+
|
|
264
|
+
## 遥测
|
|
265
|
+
|
|
266
|
+
OpenTelemetry 集成,用于可观测性(spans、metrics)。默认关闭。
|
|
267
|
+
|
|
268
|
+
```bash
|
|
269
|
+
ocr config set telemetry.enabled true
|
|
270
|
+
ocr config set telemetry.exporter otlp
|
|
271
|
+
ocr config set telemetry.otlp_endpoint localhost:4317
|
|
272
|
+
```
|
|
273
|
+
|
|
274
|
+
设置 `telemetry.content_logging` 可在导出数据中包含 LLM 提示词和响应。
|
|
275
|
+
|
|
276
|
+
## 开发
|
|
277
|
+
|
|
278
|
+
```bash
|
|
279
|
+
make build # 为当前平台构建
|
|
280
|
+
make test # 带竞态检测运行测试
|
|
281
|
+
make clean # 清除 dist/
|
|
282
|
+
make build-all # 交叉编译(linux/amd64, linux/arm64, darwin/amd64, darwin/arm64)
|
|
283
|
+
make dist # 完整发布流水线
|
|
284
|
+
```
|
|
285
|
+
|
|
286
|
+
## 许可证
|
|
287
|
+
|
|
288
|
+
[Apache-2.0](LICENSE) — Copyright 2026 Alibaba
|
package/package.json
CHANGED
package/CHANGELOG.md
DELETED
|
@@ -1,111 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
## v1.0.0 (2026-05-20)
|
|
4
|
-
|
|
5
|
-
First public release of OpenCodeReview.
|
|
6
|
-
|
|
7
|
-
- feat: AI-powered code review with OpenAI-compatible LLM endpoints
|
|
8
|
-
- feat: three review modes — workspace changes, branch range, single commit
|
|
9
|
-
- feat: Agent mode with context-aware file reading and `git grep` search
|
|
10
|
-
- feat: plan phase for large diffs (>50 lines) with risk analysis
|
|
11
|
-
- feat: concurrent file reviews with configurable parallelism
|
|
12
|
-
- feat: session viewer WebUI for inspecting review history
|
|
13
|
-
- feat: cross-platform support (linux/darwin, amd64/arm64)
|
|
14
|
-
- feat: npm distribution with automatic binary download
|
|
15
|
-
|
|
16
|
-
## v0.2.2 (2026-05-18)
|
|
17
|
-
|
|
18
|
-
- feat(viewer): Enhance session viewer UI and tool call handling (d9a425a)
|
|
19
|
-
- chore(release): bump version to v0.2.1 (e58eb56)
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
## v0.2.1 (2026-05-16)
|
|
23
|
-
|
|
24
|
-
- fix(version): correct program name output from 'opencodereview' to 'open-code-review' (a97ff48)
|
|
25
|
-
- chore(release): bump version to v0.2.0 (2911231)
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
## v0.2.0 (2026-05-16)
|
|
29
|
-
|
|
30
|
-
- fix(publish): use sparse checkout in git add for internal repo copy (b9278cc)
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
## v0.1.8 (2026-05-16)
|
|
34
|
-
|
|
35
|
-
- feat: add User-Agent header and update LLM client context handling (93e02db)
|
|
36
|
-
- chore(release): bump version to v0.1.7 (3586cf7)
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
## v0.1.7 (2026-05-15)
|
|
40
|
-
|
|
41
|
-
- fix: display timestamps in Asia/Shanghai timezone in viewer (0e02aaf)
|
|
42
|
-
- feat: rm CHANGELOG.md (32ed4f4)
|
|
43
|
-
- chore(release): bump version to v0.1.6 (b36b867)
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
## v0.1.6 (2026-05-14)
|
|
47
|
-
|
|
48
|
-
- chore: Optimize release process and change log management (16e28fb)
|
|
49
|
-
- feat: task template to english (e54c56c)
|
|
50
|
-
- feat: remove llm provider (acf2bb6)
|
|
51
|
-
- chore(release): bump version to v0.1.5 (c3439c2)
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
## v0.1.5 (2026-05-14)
|
|
55
|
-
|
|
56
|
-
- refactor: rename per-file timeout to concurrent task timeout and improve CLI help docs (067084d)
|
|
57
|
-
- chore(release): bump version to v0.1.4 (b6269d9)
|
|
58
|
-
|
|
59
|
-
## v0.1.4 (2026-05-13)
|
|
60
|
-
|
|
61
|
-
- feat: ocr.js 可执行权限 (3b1f793)
|
|
62
|
-
- chore(release): bump version to v0.1.3 (33d6380)
|
|
63
|
-
- feat: update publish readme (c79d952)
|
|
64
|
-
|
|
65
|
-
## v0.1.3 (2026-05-13)
|
|
66
|
-
|
|
67
|
-
- feat: remove deprecated sh (0ec83ae)
|
|
68
|
-
- feat: 为 llm test 增加来源和 url (f40872f)
|
|
69
|
-
- chore(release): bump version to v0.1.2 (92c4119)
|
|
70
|
-
- feat: fix bug (d9f9cb3)
|
|
71
|
-
|
|
72
|
-
## v0.1.2 (2026-05-13)
|
|
73
|
-
|
|
74
|
-
- feat: 增加发包的 readme (1d4b783)
|
|
75
|
-
- feat: 增加内部打包分发的脚本 (fd3b5d3)
|
|
76
|
-
- feat: 增加内部打包分发的脚本 (01a809a)
|
|
77
|
-
- feat: update --audience agent (8391e1e)
|
|
78
|
-
- feat: update output note (dd12b72)
|
|
79
|
-
- feat: update scripts/release.sh (1319f3a)
|
|
80
|
-
- feat: Adding the parameter distinguishes between human and agent input. (5f09e5e)
|
|
81
|
-
- feat: fix tokens count (b73e05c)
|
|
82
|
-
- feat: add TODO note (1135690)
|
|
83
|
-
- feat: update Examples (2babfe8)
|
|
84
|
-
- feat: 记忆压缩三层分区 + 双阈值异步压 (14adf6f)
|
|
85
|
-
- feat: 四层模型端点,适配 anthropic (8a93673)
|
|
86
|
-
- feat: 增加一些边界提示 (b680c29)
|
|
87
|
-
- feat: 区分没有diff和没有评论的反馈 (a217a6f)
|
|
88
|
-
- feat: --format json 模式下静默进度输出,保持 stdout 纯净 (5aea3ac)
|
|
89
|
-
- feat: 增加 git 仓库校验 (39d02d1)
|
|
90
|
-
- feat: 修改配置项内容 (22d93ed)
|
|
91
|
-
- feat: 增加评论块与diff渲染 (d0e4832)
|
|
92
|
-
- chore: 移除 .claude 追踪并更新 .gitignore (e99092a)
|
|
93
|
-
- feat: 增加viewer能力 (d99e3eb)
|
|
94
|
-
- feat: 配置化默认允许评审的文件 (576180d)
|
|
95
|
-
- feat: 大diff拦截 (21a4b66)
|
|
96
|
-
- feat: add license (2cd09e6)
|
|
97
|
-
- feat: 修改文件名 (84df403)
|
|
98
|
-
- feat: 更新readme (49cb629)
|
|
99
|
-
- feat: token used 展示拆分成 input 和 output (1c76de0)
|
|
100
|
-
- feat: 移除历史文件索引 (9589cb6)
|
|
101
|
-
- feat: 支持类似claude code 会话历史的能力 (daa7181)
|
|
102
|
-
- feat: add .gitignore (edd6854)
|
|
103
|
-
- feat: 修复一些问题 (9ecadd7)
|
|
104
|
-
- feat: 修复一些问题 (52e035d)
|
|
105
|
-
- feat: 修复一些问题 (07b6ba2)
|
|
106
|
-
- feat: 修复一些问题 (e2d6a54)
|
|
107
|
-
- feat: 增加 --debug模式 (a896ba5)
|
|
108
|
-
- feat: 修复评论重复的问题 (223a6ef)
|
|
109
|
-
- feat: 改名 (2f2aaa1)
|
|
110
|
-
- feat: argus 改名 opencodereview (3d2029d)
|
|
111
|
-
- feat: 修复了一些问题 (9e449d5)
|