docs(update):更新Arabica v0.1.1 README文件中关于json配置的输入和导入

Signed-off-by: gzkoala <guohao@gitconomy.org>
This commit is contained in:
gzkoala
2026-03-07 17:06:57 +08:00
parent a2d4d145d0
commit 7f3ef73e6c

View File

@@ -18,7 +18,7 @@ license: "CC BY-SA 4.0"
-->
# Project Caffeine - Arabica Sprint1 QuickStart
## 1. Sprint1 `0.1.0` 版本核心特性
## 1. Sprint1 版本`0.1.0`核心特性
- **零网络开销通信**:作为本地集成版本,本系统采用 `stdio` 传输协议,利用同一台机器上本地进程间的 stdin 和 stdout 管道进行直接通信,实现零网络传输开销。
@@ -97,7 +97,29 @@ Sprint1 采用纯本地 `stdio` 架构,推荐使用 VS Code 配合客户端进
- **名称**: `ProjectCaffeine-Sprint1`
- **Command**: `node`
- **Args**: `["--inspect=9229", "/你的实际克隆路径/Project-Caffeine/projects/arabica/sprint1/dist/app.js"]` _(⚠️ 必须为编译后的 js 文件绝对路径,且 `--inspect` 需放在首位以开启调试)_
- **Args**: `[--inspect=9229", /你的实际克隆路径/Project-Caffeine/projects/arabica/sprint1/dist/app.js]` _(⚠️ 必须为编译后的 js 文件绝对路径,且 `--inspect` 需放在首位以开启调试)_
或者通过导入json
```json
{
"mcpServers": {
"Project Caffeine": {
"isActive": true,
"name": "Project Caffeine",
"type": "stdio",
"description": "",
"baseUrl": "",
"command": "node",
"args": [
"--inspect=9229",
"/home/wguo/Downloads/Project-Caffeine/projects/arabica/sprint2/dist/app.js"
],
"env": {}
}
}
}
```
3. 保存后确认状态灯变为绿色。
@@ -107,8 +129,8 @@ Sprint1 采用纯本地 `stdio` 架构,推荐使用 VS Code 配合客户端进
## 8. Sprint1 文档
- Sprint1 [设计文档](./docs/arabica-sprint1-architecture-specification.md)
- Sprint1 [开发文档](./docs/arabica-sprint1-development-specification.md)
- Sprint1 [设计文档](./docs/arabica-sprint1-architecture-design-specification.md)
- Srpint1 [开发文档](./docs/arabica-sprint1-development-specification-guide.md)
---