Skip to content

Commit b815902

Browse files
authored
Merge pull request #27 from Yumiue/fork-pr-573-1778211694
fix: resolve mainline conflicts for checkpoint diff
2 parents 5710f53 + d68f5ef commit b815902

11 files changed

Lines changed: 772 additions & 107 deletions

README.md

Lines changed: 21 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,21 @@
88
<a href="https://go.dev/">
99
<img src="https://img.shields.io/badge/Go-1.25%2B-00ADD8?logo=go&logoColor=white" alt="Go Version" />
1010
</a>
11-
<a href="https://github.com/1024XEngineer/neo-code/actions/workflows/ci.yml">
12-
<img src="https://img.shields.io/github/actions/workflow/status/1024XEngineer/neo-code/ci.yml?branch=main&label=CI" alt="CI Status" />
11+
<a href="https://github.com/1024XEngineer/neo-code">
12+
<img src="https://codecov.io/gh/1024XEngineer/neo-code/branch/main/graph/badge.svg" alt="Codecov Coverage" />
1313
</a>
1414
<a href="https://github.com/1024XEngineer/neo-code/blob/main/LICENSE">
15-
<img src="https://img.shields.io/github/license/1024XEngineer/neo-code?color=97CA00" alt="License" />
15+
<img src="https://img.shields.io/badge/License-MIT-purple?logo=opensourceinitiative&logoColor=white" alt="License MIT" />
1616
</a>
1717
<a href="https://neocode-docs.pages.dev/">
1818
<img src="https://img.shields.io/badge/Docs-Official-1677FF?logo=readthedocs&logoColor=white" alt="Docs" />
1919
</a>
20-
<a href="https://neocode-docs.pages.dev/guide/install">
20+
<a href="https://neocode-docs.pages.dev/en/guide/install">
2121
<img src="https://img.shields.io/badge/Platform-Windows%20%7C%20macOS%20%7C%20Linux-4EAA25" alt="Platform" />
2222
</a>
2323
</p>
2424

25+
2526
<p align="center">
2627
<a href="https://neocode-docs.pages.dev/">文档</a>
2728
·
@@ -56,6 +57,7 @@ NeoCode 是一个运行在本地开发环境中的 AI Coding Agent。
5657
- MCP 接入:通过 MCP stdio server 扩展外部工具能力。
5758
- Gateway 模式:通过本地 JSON-RPC / SSE / WebSocket 接口连接桌面端、脚本和第三方客户端。
5859
- Feishu Adapter:支持 Webhook 与 SDK 长连接接入,并用单张状态卡片持续回传 run 状态。
60+
- Local Runner:`neocode runner` 在本机执行工具,通过 WebSocket 主动连接云端 Gateway,无需开放入站端口。
5961

6062
---
6163

@@ -183,6 +185,21 @@ neocode use <provider> --model <model-id>
183185
neocode use openai --model gpt-4.1
184186
```
185187

188+
#### Local Runner
189+
190+
在本机启动执行守护进程,主动连接云端 Gateway 接收工具执行请求。
191+
192+
```bash
193+
# 启动 runner(默认连接 127.0.0.1:8080)
194+
neocode runner
195+
196+
# 指定远程 Gateway 地址和 token
197+
neocode runner --gateway-address "your-gateway.com:8080" --token-file ~/.neocode/auth.json
198+
199+
# 指定 Runner 名称与工作目录
200+
neocode runner --runner-name "我的本机" --workdir /path/to/project
201+
```
202+
186203
### 6. Shell 诊断代理
187204

188205
用于进入代理 shell、初始化 shell integration、手动触发诊断和控制自动诊断模式。

0 commit comments

Comments
 (0)