zox-code 0.1.0
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 +24 -0
- package/dist/cli.js +503 -0
- package/package.json +38 -0
package/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# zox-code
|
|
2
|
+
|
|
3
|
+
CLI for **Zox**, a Bun-first local coding agent harness (TUI, embedded server, tools, sandbox, BYOK).
|
|
4
|
+
|
|
5
|
+
Requires **[Bun](https://bun.sh)** ≥ 1.2.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```sh
|
|
10
|
+
bun add -g zox-code
|
|
11
|
+
# or one-shot
|
|
12
|
+
bunx zox-code
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Binaries: `zox` and `zox-code` (same entry).
|
|
16
|
+
|
|
17
|
+
```sh
|
|
18
|
+
export ANTHROPIC_API_KEY=sk-ant-... # or OPENAI_API_KEY, etc.
|
|
19
|
+
zox --model anthropic/claude-sonnet-4-20250514
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
Default sandbox is a git **worktree** under `.zox/worktrees/`. Use `--sandbox host` to edit the current checkout.
|
|
23
|
+
|
|
24
|
+
Full docs: [github.com/JayTheCoder77/Zox](https://github.com/JayTheCoder77/Zox)
|