@anturno/cli 0.1.0 → 0.2.0-linux-arm64
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 +9 -6
- package/package.json +9 -52
- package/vendor/linux-arm64/bin/anturno +0 -0
- package/dist/bridge.js +0 -6514
- package/dist/main.js +0 -30643
package/README.md
CHANGED
|
@@ -4,13 +4,13 @@ A coding agent, in the terminal or one shot.
|
|
|
4
4
|
|
|
5
5
|
## Install
|
|
6
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
7
|
```sh
|
|
11
|
-
bun install -g @anturno/cli
|
|
8
|
+
bun install -g @anturno/cli # or: npm install -g @anturno/cli
|
|
12
9
|
```
|
|
13
10
|
|
|
11
|
+
A single compiled binary with its own runtime inside it, so nothing else has to
|
|
12
|
+
be installed first. Darwin and Linux, arm64 and x64.
|
|
13
|
+
|
|
14
14
|
## Use
|
|
15
15
|
|
|
16
16
|
```sh
|
|
@@ -35,5 +35,8 @@ verifier subagent whether the work is actually done before you believe it.
|
|
|
35
35
|
|
|
36
36
|
## Developing
|
|
37
37
|
|
|
38
|
-
From a checkout of the monorepo, `bun run cli` runs this package from source
|
|
39
|
-
|
|
38
|
+
From a checkout of the monorepo, `bun run cli` runs this package from source.
|
|
39
|
+
`bun run release` in `apps/cli` compiles the binaries that ship and writes the
|
|
40
|
+
npm packages around them under `release/` — see the header of `release.ts`. The
|
|
41
|
+
cross-compile needs every platform's native modules on disk, so run
|
|
42
|
+
`bun install --os='*' --cpu='*'` at the root first.
|
package/package.json
CHANGED
|
@@ -1,61 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@anturno/cli",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "The anturno coding agent, in your terminal.",
|
|
5
|
-
"type": "module",
|
|
3
|
+
"version": "0.2.0-linux-arm64",
|
|
4
|
+
"description": "The anturno coding agent, in your terminal. (linux-arm64)",
|
|
6
5
|
"license": "MIT",
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
|
|
10
|
-
|
|
6
|
+
"os": [
|
|
7
|
+
"linux"
|
|
8
|
+
],
|
|
9
|
+
"cpu": [
|
|
10
|
+
"arm64"
|
|
11
|
+
],
|
|
11
12
|
"files": [
|
|
12
|
-
"
|
|
13
|
-
"README.md"
|
|
13
|
+
"vendor/linux-arm64/bin"
|
|
14
14
|
],
|
|
15
|
-
"engines": {
|
|
16
|
-
"bun": ">=1.3.0"
|
|
17
|
-
},
|
|
18
15
|
"publishConfig": {
|
|
19
16
|
"access": "public"
|
|
20
|
-
},
|
|
21
|
-
"scripts": {
|
|
22
|
-
"build": "bun run ./build.ts",
|
|
23
|
-
"prepublishOnly": "bun run build",
|
|
24
|
-
"start": "bun --env-file=../../.env --env-file=../../.env.local run ./src/main.ts",
|
|
25
|
-
"dev": "bun --env-file=../../.env --env-file=../../.env.local run --watch ./src/main.ts",
|
|
26
|
-
"login": "bun --env-file=../../.env --env-file=../../.env.local run ./src/main.ts login",
|
|
27
|
-
"bridge": "bun --env-file=../../.env --env-file=../../.env.local run ./src/main.ts bridge",
|
|
28
|
-
"typecheck": "tsc --noEmit",
|
|
29
|
-
"test": "bun test",
|
|
30
|
-
"clean": "rm -rf node_modules .turbo dist"
|
|
31
|
-
},
|
|
32
|
-
"dependencies": {
|
|
33
|
-
"@ai-sdk/provider": "4.0.10",
|
|
34
|
-
"@earendil-works/pi-ai": "^0.85.0",
|
|
35
|
-
"@github-tools/sdk": "^1.16.0",
|
|
36
|
-
"@opentui/core": "^0.5.10",
|
|
37
|
-
"@opentui/react": "^0.5.10",
|
|
38
|
-
"ai": "^7.0.92",
|
|
39
|
-
"just-bash": "^3.4.2",
|
|
40
|
-
"quickjs-emscripten": "^0.32.0",
|
|
41
|
-
"react": "^19.2.8",
|
|
42
|
-
"zod": "^4.5.4"
|
|
43
|
-
},
|
|
44
|
-
"devDependencies": {
|
|
45
|
-
"@anturno/agent": "0.0.0",
|
|
46
|
-
"@anturno/config": "0.0.0",
|
|
47
|
-
"@anturno/harness": "0.0.0",
|
|
48
|
-
"@anturno/linear": "0.0.0",
|
|
49
|
-
"@anturno/models": "0.0.0",
|
|
50
|
-
"@anturno/protocol": "0.0.0",
|
|
51
|
-
"@anturno/review": "0.0.0",
|
|
52
|
-
"@anturno/sandbox": "0.0.0",
|
|
53
|
-
"@anturno/settings": "0.0.0",
|
|
54
|
-
"@anturno/telemetry": "0.0.0",
|
|
55
|
-
"@anturno/transcript": "0.0.0",
|
|
56
|
-
"@anturno/tsconfig": "0.0.0",
|
|
57
|
-
"@anturno/tui-kit": "0.0.0",
|
|
58
|
-
"@anturno/web-client": "0.0.0",
|
|
59
|
-
"@types/react": "^19.2.18"
|
|
60
17
|
}
|
|
61
18
|
}
|
|
Binary file
|