@opencloudtool/agentty 0.1.1 → 0.1.3
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 +15 -3
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -27,19 +27,31 @@ npx @opencloudtool/agentty
|
|
|
27
27
|
## Prerequisites
|
|
28
28
|
|
|
29
29
|
- Rust nightly toolchain (configured via `rust-toolchain.toml`)
|
|
30
|
-
- Git (
|
|
30
|
+
- Git (required for session worktree integration)
|
|
31
|
+
- One supported agent CLI installed: `gemini`, `claude`, or `codex`
|
|
32
|
+
|
|
33
|
+
## Agent Selection
|
|
34
|
+
|
|
35
|
+
Use `AGENTTY_AGENT` to choose the backend:
|
|
36
|
+
|
|
37
|
+
```sh
|
|
38
|
+
AGENTTY_AGENT=gemini agentty
|
|
39
|
+
AGENTTY_AGENT=claude agentty
|
|
40
|
+
AGENTTY_AGENT=codex agentty
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
If not set, Agentty defaults to `gemini`.
|
|
31
44
|
|
|
32
45
|
## Features
|
|
33
46
|
|
|
34
47
|
### Git Worktree Integration
|
|
35
48
|
|
|
36
|
-
|
|
49
|
+
Agentty creates isolated worktrees for each session:
|
|
37
50
|
|
|
38
51
|
- **Isolated Branches:** Each session gets its own branch named `agentty/<hash>` based on your current branch
|
|
39
52
|
- **Separate Working Directory:** Sessions work in isolated directories under `/var/tmp/.agentty/`
|
|
40
53
|
- **Diff View:** Press `d` in the chat view to see real-time changes made by the agent
|
|
41
54
|
- **Automatic Cleanup:** Worktrees and branches are automatically removed when sessions are deleted
|
|
42
|
-
- **No Git Interference:** Works seamlessly in non-git directories without any special configuration
|
|
43
55
|
|
|
44
56
|
This allows agents to work on code changes without affecting your main working directory.
|
|
45
57
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
},
|
|
23
23
|
"hasInstallScript": true,
|
|
24
24
|
"name": "@opencloudtool/agentty",
|
|
25
|
-
"version": "0.1.
|
|
25
|
+
"version": "0.1.3"
|
|
26
26
|
},
|
|
27
27
|
"node_modules/@isaacs/balanced-match": {
|
|
28
28
|
"engines": {
|
|
@@ -514,5 +514,5 @@
|
|
|
514
514
|
}
|
|
515
515
|
},
|
|
516
516
|
"requires": true,
|
|
517
|
-
"version": "0.1.
|
|
517
|
+
"version": "0.1.3"
|
|
518
518
|
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"artifactDownloadUrl": "https://github.com/opencloudtool/agentty/releases/download/v0.1.
|
|
2
|
+
"artifactDownloadUrl": "https://github.com/opencloudtool/agentty/releases/download/v0.1.3",
|
|
3
3
|
"author": "Vladimir Minev",
|
|
4
4
|
"bin": {
|
|
5
5
|
"agentty": "run-agentty.js"
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"zipExt": ".tar.xz"
|
|
63
63
|
}
|
|
64
64
|
},
|
|
65
|
-
"version": "0.1.
|
|
65
|
+
"version": "0.1.3",
|
|
66
66
|
"volta": {
|
|
67
67
|
"node": "18.14.1",
|
|
68
68
|
"npm": "9.5.0"
|