clawt 3.10.2 → 3.10.4
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.md +6 -6
- package/README.zh-CN.md +5 -5
- package/docs/images/architecture.png +0 -0
- package/docs/images/layer-architecture.png +0 -0
- package/docs/images/parallel-timeline.png +0 -0
- package/docs/images/serial-timeline.png +0 -0
- package/docs/images/status-panel-en.png +0 -0
- package/docs/images/status-panel-zh.png +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/clawt) [](https://github.com/afk101/clawt)
|
|
4
4
|
|
|
5
|
-
**[English](./README.md)** | [中文](
|
|
5
|
+
**[English](./README.md)** | [中文](https://github.com/afk101/clawt/blob/main/README.zh-CN.md)
|
|
6
6
|
|
|
7
7
|
Run multiple Claude Code Agent tasks in parallel based on Git Worktree — all agents' code changes are fully isolated from each other.
|
|
8
8
|
|
|
@@ -19,7 +19,7 @@ Claude Code can independently complete feature development, bug fixes, and refac
|
|
|
19
19
|
|
|
20
20
|
This is how most developers use Claude Code today — **serial execution**:
|
|
21
21
|
|
|
22
|
-

|
|
23
23
|
|
|
24
24
|
**3 tasks total ≈ 49.5 min.** The biggest problem: **while Claude is working on task A, B, C — you're just waiting.**
|
|
25
25
|
|
|
@@ -33,7 +33,7 @@ The core idea is simple:
|
|
|
33
33
|
|
|
34
34
|
Same 3 tasks, with Clawt:
|
|
35
35
|
|
|
36
|
-

|
|
37
37
|
|
|
38
38
|
**3 tasks total ≈ 26.5 min (parallel execution, sequential review)**
|
|
39
39
|
|
|
@@ -60,11 +60,11 @@ Git Worktree is a native Git mechanism (`git worktree add`) that creates multipl
|
|
|
60
60
|
|
|
61
61
|
> **Human's job: think about requirements, write prompts, review code(Optional). AI's job: write code. Git Worktree is the isolation layer between them.**
|
|
62
62
|
|
|
63
|
-

|
|
64
64
|
|
|
65
65
|
> **Clawt does not modify, replace, or wrap Claude Code itself. It only manages "where" and "how many" Claude Code instances run — at a higher level.**
|
|
66
66
|
|
|
67
|
-

|
|
68
68
|
|
|
69
69
|
Everything you use inside each worktree is vanilla Claude Code — same interaction, same commands, same `CLAUDE.md`, same MCP config. Any Claude Code update automatically benefits Clawt with zero adaptation needed.
|
|
70
70
|
|
|
@@ -118,7 +118,7 @@ clawt status -i
|
|
|
118
118
|
| `q` | Quit panel | — |
|
|
119
119
|
|
|
120
120
|
Example:
|
|
121
|
-

|
|
122
122
|
> All operations can also be executed via standalone commands — see "Command Reference" below.
|
|
123
123
|
|
|
124
124
|
## Command Reference
|
package/README.zh-CN.md
CHANGED
|
@@ -19,7 +19,7 @@ Claude Code 可以独立完成需求开发、Bug 修复、代码重构等任务
|
|
|
19
19
|
|
|
20
20
|
这是大多数开发者使用 Claude Code 的现状——**串行执行**:
|
|
21
21
|
|
|
22
|
-

|
|
23
23
|
|
|
24
24
|
**3 个任务总耗时 ≈ 49.5 分钟**。最大的问题是:**Claude 在执行任务的时候,你完全在干等。**
|
|
25
25
|
|
|
@@ -33,7 +33,7 @@ Claude Code 可以独立完成需求开发、Bug 修复、代码重构等任务
|
|
|
33
33
|
|
|
34
34
|
同样的 3 个任务,使用 Clawt 后:
|
|
35
35
|
|
|
36
|
-

|
|
37
37
|
|
|
38
38
|
**3 个任务总耗时 ≈ 26.5 分钟(并行执行,串行验证)**
|
|
39
39
|
|
|
@@ -62,11 +62,11 @@ Git Worktree 是 Git 原生支持的机制(`git worktree add`),它允许
|
|
|
62
62
|
|
|
63
63
|
> **人做的事情:思考需求、写 Prompt、审查代码(可选)。AI 做的事情:写代码。用 Git Worktree 作为两者之间的隔离层。**
|
|
64
64
|
|
|
65
|
-

|
|
66
66
|
|
|
67
67
|
> **Clawt 不修改、不替换、不包装 Claude Code 本身。它只是在更高一层管理"在哪里"以及"同时启动多少个" Claude Code。**
|
|
68
68
|
|
|
69
|
-

|
|
70
70
|
|
|
71
71
|
你在每个 Worktree 里使用的,就是原汁原味的 Claude Code——同样的交互方式、同样的命令、同样的 CLAUDE.md、同样的 MCP 配置。Claude Code 的任何更新,Clawt 自动受益,无需适配。
|
|
72
72
|
|
|
@@ -120,7 +120,7 @@ clawt status -i
|
|
|
120
120
|
| `q` | 退出面板 | — |
|
|
121
121
|
|
|
122
122
|
示例:
|
|
123
|
-

|
|
124
124
|
> 所有操作也可通过独立命令执行,详见下方「命令一览」。
|
|
125
125
|
|
|
126
126
|
## 命令一览
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|