@xonovex/agent-cli-go 0.1.22 → 0.1.23
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 -15
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
#
|
|
1
|
+
# @xonovex/agent-cli-go
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Go implementation of agent-cli. Configures sandboxes, providers, and terminal sessions, then launches the agent.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
|
|
8
|
+
npm install -g @xonovex/agent-cli-go
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
## Usage
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
14
|
# Run with default agent (Claude)
|
|
15
|
-
|
|
15
|
+
agent-cli run
|
|
16
16
|
|
|
17
17
|
# Run with specific agent
|
|
18
|
-
|
|
19
|
-
|
|
18
|
+
agent-cli run -a claude
|
|
19
|
+
agent-cli run -a opencode
|
|
20
20
|
|
|
21
21
|
# Run with sandbox
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
22
|
+
agent-cli run -s bwrap
|
|
23
|
+
agent-cli run -s docker
|
|
24
|
+
agent-cli run -s nix
|
|
25
25
|
|
|
26
26
|
# Run with worktree
|
|
27
|
-
|
|
27
|
+
agent-cli run --worktree-branch feature/my-feature
|
|
28
28
|
|
|
29
29
|
# Run with terminal wrapper
|
|
30
|
-
|
|
30
|
+
agent-cli run -t tmux
|
|
31
31
|
```
|
|
32
32
|
|
|
33
33
|
## Commands
|
|
@@ -54,13 +54,13 @@ Generate shell completion script.
|
|
|
54
54
|
|
|
55
55
|
```bash
|
|
56
56
|
# Bash
|
|
57
|
-
source <(
|
|
57
|
+
source <(agent-cli completion bash)
|
|
58
58
|
|
|
59
59
|
# Zsh
|
|
60
|
-
|
|
60
|
+
agent-cli completion zsh > "${fpath[1]}/_agent-cli"
|
|
61
61
|
|
|
62
62
|
# Fish
|
|
63
|
-
|
|
63
|
+
agent-cli completion fish | source
|
|
64
64
|
```
|
|
65
65
|
|
|
66
66
|
## Configuration
|
|
@@ -80,7 +80,7 @@ provider: anthropic
|
|
|
80
80
|
Load with:
|
|
81
81
|
|
|
82
82
|
```bash
|
|
83
|
-
|
|
83
|
+
agent-cli run -c config.yaml
|
|
84
84
|
```
|
|
85
85
|
|
|
86
86
|
## Testing
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xonovex/agent-cli-go",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.23",
|
|
4
4
|
"description": "Agent wrapper CLI (Go implementation)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -29,11 +29,11 @@
|
|
|
29
29
|
"@xonovex/ts-config-cli": "0.1.22"
|
|
30
30
|
},
|
|
31
31
|
"optionalDependencies": {
|
|
32
|
-
"@xonovex/agent-cli-go-linux-x64": "0.1.
|
|
33
|
-
"@xonovex/agent-cli-go-linux-arm64": "0.1.
|
|
34
|
-
"@xonovex/agent-cli-go-darwin-x64": "0.1.
|
|
35
|
-
"@xonovex/agent-cli-go-darwin-arm64": "0.1.
|
|
36
|
-
"@xonovex/agent-cli-go-win32-x64": "0.1.
|
|
32
|
+
"@xonovex/agent-cli-go-linux-x64": "0.1.23",
|
|
33
|
+
"@xonovex/agent-cli-go-linux-arm64": "0.1.23",
|
|
34
|
+
"@xonovex/agent-cli-go-darwin-x64": "0.1.23",
|
|
35
|
+
"@xonovex/agent-cli-go-darwin-arm64": "0.1.23",
|
|
36
|
+
"@xonovex/agent-cli-go-win32-x64": "0.1.23"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@xonovex/eslint-config-cli": "0.1.22",
|