@claudetree/cli 0.2.0 → 0.2.1
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 +57 -0
- package/package.json +7 -5
package/README.md
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
# @claudetree/cli
|
|
2
|
+
|
|
3
|
+
**Run multiple Claude Code sessions in parallel** — each in its own isolated git worktree.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g @claudetree/cli
|
|
9
|
+
# or
|
|
10
|
+
pnpm add -g @claudetree/cli
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Quick Start
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
# Initialize in your project
|
|
17
|
+
ct init
|
|
18
|
+
|
|
19
|
+
# Start working on a GitHub issue
|
|
20
|
+
ct start https://github.com/you/repo/issues/42
|
|
21
|
+
|
|
22
|
+
# Monitor progress
|
|
23
|
+
ct status
|
|
24
|
+
|
|
25
|
+
# Open web dashboard
|
|
26
|
+
ct web
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
## Commands
|
|
30
|
+
|
|
31
|
+
| Command | Description |
|
|
32
|
+
|---------|-------------|
|
|
33
|
+
| `ct init` | Initialize claudetree in your project |
|
|
34
|
+
| `ct start <issue>` | Create worktree and start Claude session |
|
|
35
|
+
| `ct status` | Show all session statuses |
|
|
36
|
+
| `ct stop [id]` | Stop a session |
|
|
37
|
+
| `ct doctor` | Check environment health |
|
|
38
|
+
| `ct demo` | Interactive demo (no tokens used) |
|
|
39
|
+
| `ct batch` | Process multiple issues in parallel |
|
|
40
|
+
| `ct web` | Start web dashboard |
|
|
41
|
+
|
|
42
|
+
## Key Features
|
|
43
|
+
|
|
44
|
+
- **Multi-session**: Run unlimited Claude sessions in parallel
|
|
45
|
+
- **Isolated workspaces**: Each task gets its own git worktree
|
|
46
|
+
- **Fire and forget**: Pass a GitHub issue URL and Claude handles the rest
|
|
47
|
+
- **Token tracking**: See exactly how many tokens each session uses
|
|
48
|
+
- **Web dashboard**: Monitor all sessions in real-time
|
|
49
|
+
|
|
50
|
+
## Links
|
|
51
|
+
|
|
52
|
+
- [GitHub Repository](https://github.com/wonjangcloud9/claude-tree)
|
|
53
|
+
- [Full Documentation](https://github.com/wonjangcloud9/claude-tree#readme)
|
|
54
|
+
|
|
55
|
+
## License
|
|
56
|
+
|
|
57
|
+
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@claudetree/cli",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "CLI for claudetree - Manage Claude sessions with git worktrees",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -8,7 +8,8 @@
|
|
|
8
8
|
"ct": "./dist/index.js"
|
|
9
9
|
},
|
|
10
10
|
"files": [
|
|
11
|
-
"dist"
|
|
11
|
+
"dist",
|
|
12
|
+
"README.md"
|
|
12
13
|
],
|
|
13
14
|
"keywords": [
|
|
14
15
|
"claude",
|
|
@@ -20,14 +21,15 @@
|
|
|
20
21
|
],
|
|
21
22
|
"repository": {
|
|
22
23
|
"type": "git",
|
|
23
|
-
"url": "https://github.com/
|
|
24
|
+
"url": "https://github.com/wonjangcloud9/claude-tree.git",
|
|
24
25
|
"directory": "packages/cli"
|
|
25
26
|
},
|
|
27
|
+
"homepage": "https://github.com/wonjangcloud9/claude-tree#readme",
|
|
26
28
|
"license": "MIT",
|
|
27
29
|
"dependencies": {
|
|
28
30
|
"commander": "^13.0.0",
|
|
29
|
-
"@claudetree/core": "0.2.
|
|
30
|
-
"@claudetree/shared": "0.2.
|
|
31
|
+
"@claudetree/core": "0.2.1",
|
|
32
|
+
"@claudetree/shared": "0.2.1"
|
|
31
33
|
},
|
|
32
34
|
"devDependencies": {
|
|
33
35
|
"@types/node": "^22.10.0",
|