Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,9 @@ Long-running work continues in background agent or shell sessions. Use `list_age
## Testing

```bash
bun run hx:test # full regression
bun run hx:test:unit # unit tests
bun run hx:test:integration # integration tests
npm run hx:test # full regression
npm run hx:test:unit # unit tests
npm run hx:test:integration # integration tests
```

---
Expand Down
12 changes: 9 additions & 3 deletions README.zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,12 @@ runtime:

---

## Agent 会话

长任务会在后台 agent 或 shell 会话中持续执行。用 `list_agents` 和 `read_agent` 查看 agent 输出,仅在 idle 且明确等待输入时使用 `write_agent`。shell 会话使用 `list_bash`、`read_bash`、`write_bash`;不要混用两类接口。

---

## 环境要求

- Bun >= 1.0.0;未安装 Bun 时可通过 `npx tsx` 执行脚本
Expand All @@ -123,9 +129,9 @@ runtime:
## 测试

```bash
bun run hx:test # 全量回归
bun run hx:test:unit # 单元测试
bun run hx:test:integration # 集成测试
npm run hx:test # 全量回归
npm run hx:test:unit # 单元测试
npm run hx:test:integration # 集成测试
```

---
Expand Down