@anturno/cli 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 +39 -0
- package/dist/bridge.js +6514 -0
- package/dist/main.js +30643 -0
- package/package.json +61 -0
package/README.md
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# anturno
|
|
2
|
+
|
|
3
|
+
A coding agent, in the terminal or one shot.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
Needs [Bun](https://bun.sh) 1.3 or newer — the agent's tools are written
|
|
8
|
+
against `Bun.*`, so it is the runtime, not just the installer.
|
|
9
|
+
|
|
10
|
+
```sh
|
|
11
|
+
bun install -g @anturno/cli
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
## Use
|
|
15
|
+
|
|
16
|
+
```sh
|
|
17
|
+
anturno # open the terminal app in this directory
|
|
18
|
+
anturno "fix the flaky test" # answer one prompt and exit
|
|
19
|
+
anturno login # sign in to a model provider
|
|
20
|
+
anturno help # everything else
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
`anturno bridge` lends this machine to a hosted anturno: the laptop dials the
|
|
24
|
+
server and answers file and shell operations locally, so a hosted session can
|
|
25
|
+
work in a folder that never leaves it.
|
|
26
|
+
|
|
27
|
+
## Sessions
|
|
28
|
+
|
|
29
|
+
Every run is a session with a transcript on disk. `--resume <id>` continues
|
|
30
|
+
one, `--fork <id>` continues a copy of one under a new id, and in the terminal
|
|
31
|
+
app `/resume` and `/fork` do the same. With `ANTURNO_CHECKPOINTS=1` on a local
|
|
32
|
+
git checkout, the working tree is snapshotted before every turn: `/undo` in the
|
|
33
|
+
app, or `anturno --resume <id> --undo`, puts it back. `/verify` asks a fresh
|
|
34
|
+
verifier subagent whether the work is actually done before you believe it.
|
|
35
|
+
|
|
36
|
+
## Developing
|
|
37
|
+
|
|
38
|
+
From a checkout of the monorepo, `bun run cli` runs this package from source
|
|
39
|
+
and `bun run build --filter=@anturno/cli` produces the bundle that ships.
|