Skip to content

Commit 58045a7

Browse files
authored
Merge pull request #4613 from fs2016l/dev
Fix translation issues in README.zh-cn.md
2 parents 88982ec + 5320984 commit 58045a7

1 file changed

Lines changed: 12 additions & 6 deletions

File tree

README.zh-cn.md

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767

6868
## 评价
6969

70-
> "因为它,我取消了 Cursor 的订阅。开源社区正在发生令人难以置信的事情。" - [Arthur Guiot](https://x.com/arthur_guiot/status/2008736347092382053?s=20)
70+
> "因为它,我取消了 Cursor 的订阅。令人震撼的事在开源社区发生了。" - [Arthur Guiot](https://x.com/arthur_guiot/status/2008736347092382053?s=20)
7171
7272
> "如果人类需要 3 个月完成的事情 Claude Code 需要 7 天,那么 Sisyphus 只需要 1 小时。它会一直工作直到任务完成。它是一个极度自律的智能体。" <br/>- B, 量化研究员
7373
@@ -93,7 +93,7 @@
9393

9494
你同时折腾着 Claude Code、Codex、各种奇奇怪怪的开源模型。配工作流。给 Agent 调 Bug。
9595

96-
这些事我们替你做完了。全部测试过。只留下真正跑得起来的
96+
这些事我们替你做完了。全部测试过。只留下真正跑得起来的代码
9797

9898
装上 oh-my-openagent。敲 `ultrawork`。就完事了。
9999

@@ -109,7 +109,7 @@ Install and configure oh-my-openagent by following the instructions here:
109109
https://raw.githubusercontent.com/code-yeongyu/oh-my-openagent/refs/heads/dev/docs/guide/installation.md
110110
```
111111

112-
或者你也可以直接去读 [安装指南](docs/guide/installation.md),但说真的,让 Agent 去干吧。人类配环境总是容易敲错字母
112+
或者你也可以直接去读 [安装指南](docs/guide/installation.md),但说真的,让 Agent 去干吧。人类在配置环境的时候,总是容易敲错字母
113113

114114
### 给 LLM Agent 看的
115115

@@ -133,6 +133,12 @@ curl -s https://raw.githubusercontent.com/code-yeongyu/oh-my-openagent/refs/head
133133
Read this and tell me why it's not just another boilerplate: https://raw.githubusercontent.com/code-yeongyu/oh-my-openagent/refs/heads/dev/README.md
134134
```
135135

136+
## 路线图
137+
138+
我们正在重构代码库以支持多个代理 harness(OpenCode、Codex、Pi、Claude Code 等)。当前最紧迫的任务是包分层重构:将纯 TypeScript 核心逻辑、MCP 服务器、技能和适配器 shim 分离到不同的层,以便跨 harness 复用而不产生重复。
139+
140+
如果你有兴趣贡献,请先阅读 [ROADMAP](./ROADMAP.md)。与此重构相关的 PR 请使用 `ROADMAP` 标签,以便我们追踪。
141+
136142

137143
## 核心亮点
138144

@@ -352,7 +358,7 @@ Agent 会自动顺藤摸瓜加载对应的 Context,免去了你所有的手动
352358
- **基于哈希的编辑工具**: `LINE#ID` 引用在应用每次修改前都会验证内容。外科手术级编辑,零陈旧行错误
353359
- **上下文注入**: 自动注入 AGENTS.md、README.md、条件规则
354360
- **Claude Code 兼容**: 完整的 Hook 系统、命令、技能、Agents、MCP
355-
- **内置 MCP**: websearch(Exa)、context7(文档)、grep_app(GitHub 检索)
361+
- **内置 MCP**: websearch(Exa)、context7(文档)、grep_app(GitHub 检索) ——由插件在运行时注入,不会显示在 `opencode mcp list` 中(参见文档 [MCP docs](docs/reference/features.md#native-vs-plugin-injected-mcps))
356362
- **会话工具**: 列出、读取、搜索、分析会话历史
357363
- **效率功能**: Ralph Loop、Todo Enforcer、Comment Checker、Think Mode 等
358364
- **Doctor 命令**: 内置诊断(`bunx oh-my-opencode doctor`),验证插件注册、配置、模型和环境
@@ -368,15 +374,15 @@ Agent 会自动顺藤摸瓜加载对应的 Context,免去了你所有的手动
368374
详细内容见 [Configuration Documentation](docs/reference/configuration.md)
369375

370376
**简要概览:**
371-
- **配置文件位置**: 兼容性层同时识别 `oh-my-openagent.json[c]` 和旧的 `oh-my-opencode.json[c]` 插件配置文件。现有安装仍大多使用旧文件名
377+
- **配置文件位置**: 使用用户全局配置,同时会从当前目录向上查找 `.opencode/oh-my-openagent.json[c]`(查到 `$HOME` 为止),离当前目录越近的优先级越高。旧版 `oh-my-opencode.json[c]` 仍然有效
372378
- **JSONC 支持**: 支持注释和尾逗号
373379
- **Agents**: 可对任意 Agent 覆盖模型、temperature、prompts 和权限
374380
- **内置技能**: `playwright`(浏览器自动化)、`git-master`(原子提交)
375381
- **Sisyphus Agent**: 主调度器,搭配 Prometheus(规划师)和 Metis(计划顾问)
376382
- **后台任务**: 按 provider/model 配置并发上限
377383
- **类别**: 按领域的任务委托(`visual``business-logic`、自定义)
378384
- **Hooks**: 54+ 内置生命周期 Hook(启用 Team Mode 时为 61 个),都可以通过 `disabled_hooks` 控制
379-
- **MCPs**: 内置 websearch(Exa)、context7(文档)、grep_app(GitHub 检索)
385+
- **MCPs**: 内置 websearch(Exa)、context7(文档)、grep_app(GitHub 检索)——由插件在运行时注入,不会显示在 `opencode mcp list`
380386
- **LSP**: 包括重构工具的完整 LSP 支持
381387
- **Experimental**: 激进截断、自动 resume 等
382388

0 commit comments

Comments
 (0)