@axelgar/opentree 0.1.18 → 0.1.19
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 +1 -7
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -213,7 +213,7 @@ args = [] # Additional arguments
|
|
|
213
213
|
session_prefix = "opentree" # Prefix for the tmux session name
|
|
214
214
|
|
|
215
215
|
[github]
|
|
216
|
-
auto_push =
|
|
216
|
+
auto_push = true # Push branch before creating a PR (set false to push manually)
|
|
217
217
|
```
|
|
218
218
|
|
|
219
219
|
### Using Different Agents
|
|
@@ -226,12 +226,6 @@ command = "claude" # Or "aider", "cursor", etc.
|
|
|
226
226
|
args = ["--some-flag"]
|
|
227
227
|
```
|
|
228
228
|
|
|
229
|
-
Or override per workspace:
|
|
230
|
-
|
|
231
|
-
```bash
|
|
232
|
-
OPENTREE_AGENT_COMMAND="claude" opentree new feat/my-feature
|
|
233
|
-
```
|
|
234
|
-
|
|
235
229
|
## How It Works
|
|
236
230
|
|
|
237
231
|
1. **Worktrees**: Git worktrees allow multiple checkouts of the same repo in different directories. Each workspace lives in `.opentree/<branch-name>/`.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@axelgar/opentree",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.19",
|
|
4
4
|
"description": "Git worktree manager CLI for orchestrating parallel AI coding sessions",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -15,10 +15,10 @@
|
|
|
15
15
|
"bin/opentree"
|
|
16
16
|
],
|
|
17
17
|
"optionalDependencies": {
|
|
18
|
-
"@axelgar/opentree-linux-x64": "0.1.
|
|
19
|
-
"@axelgar/opentree-linux-arm64": "0.1.
|
|
20
|
-
"@axelgar/opentree-darwin-x64": "0.1.
|
|
21
|
-
"@axelgar/opentree-darwin-arm64": "0.1.
|
|
18
|
+
"@axelgar/opentree-linux-x64": "0.1.19",
|
|
19
|
+
"@axelgar/opentree-linux-arm64": "0.1.19",
|
|
20
|
+
"@axelgar/opentree-darwin-x64": "0.1.19",
|
|
21
|
+
"@axelgar/opentree-darwin-arm64": "0.1.19"
|
|
22
22
|
},
|
|
23
23
|
"engines": {
|
|
24
24
|
"node": ">=18"
|