rovecode 0.3.2 → 0.3.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 +9 -6
- package/package.json +72 -56
package/README.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# Rovecode
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/rovecode)
|
|
4
|
+
[](./LICENSE)
|
|
5
|
+
|
|
3
6
|
A coding agent for the terminal. The cockpit is a panelled TUI called sextant; the mascot is a
|
|
4
7
|
weather cloud whose mood follows the run. Under the hood, rovecode is a research-derived harness in
|
|
5
8
|
TypeScript on Bun: instead of inventing architecture it ports evidence-based patterns from open-source
|
|
@@ -48,6 +51,9 @@ repository for now).
|
|
|
48
51
|
Requires [Bun](https://bun.sh) ≥ 1.3.14 (the CLI entry is TypeScript, executed by bun — node cannot run it).
|
|
49
52
|
|
|
50
53
|
```bash
|
|
54
|
+
# npm — the supported install
|
|
55
|
+
npm install -g rovecode
|
|
56
|
+
|
|
51
57
|
# from source
|
|
52
58
|
git clone https://github.com/9Code-Labs/rovecode.git && cd rovecode && bun install
|
|
53
59
|
bun run src/cli/main.ts --help # or: bun link → `rovecode` on PATH
|
|
@@ -56,14 +62,11 @@ bun run build:cli # optional: pre-bundle (TUI cold start ~
|
|
|
56
62
|
# single binary (~110 MB: bun runtime + bundled deps + embedded native addons)
|
|
57
63
|
bun run build # scripts/build.ts → dist/rovecode(.exe) + smoke
|
|
58
64
|
dist/rovecode.exe --version
|
|
59
|
-
|
|
60
|
-
# from an npm tarball (npm pack) — global install shims to bun via the shebang
|
|
61
|
-
npm install -g ./rovecode-0.3.1.tgz
|
|
62
65
|
```
|
|
63
66
|
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
self-update: `git pull` and rebuild, or reinstall the
|
|
67
|
+
Published on the npm registry as [`rovecode`](https://www.npmjs.com/package/rovecode) — the global
|
|
68
|
+
install shims to bun via the shebang. GitHub Releases still carry cut versions and there is no
|
|
69
|
+
self-update: `git pull` and rebuild, or reinstall the package. Rovecode does tell you when that is worth doing: the
|
|
67
70
|
TUI's startup card carries `update available: 0.3.0 → 0.4.0 · <release url>` when a newer release exists. The check
|
|
68
71
|
(`src/core/update-check.ts`) asks GitHub once every six hours (cached in `~/.rovecode/update-check.json`), never
|
|
69
72
|
blocks the start and never throws. The repository is private, so it needs `GITHUB_TOKEN`, `GH_TOKEN` or a
|
package/package.json
CHANGED
|
@@ -1,56 +1,72 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "rovecode",
|
|
3
|
-
"version": "0.3.
|
|
4
|
-
"license": "AGPL-3.0-only",
|
|
5
|
-
"author": "9Code Labs",
|
|
6
|
-
"repository": {
|
|
7
|
-
"type": "git",
|
|
8
|
-
"url": "https://github.com/9Code-Labs/rovecode.git"
|
|
9
|
-
},
|
|
10
|
-
"homepage": "https://
|
|
11
|
-
"description": "Rovecode: a coding agent for the terminal. Research-derived harness on Bun/TypeScript with evidence-based ports from open-source harnesses (sextant TUI, MCP, ACP, headless server, repo-map, shadow-git checkpoints, execpolicy, model routers).",
|
|
12
|
-
"type": "module",
|
|
13
|
-
"module": "src/index.ts",
|
|
14
|
-
"bin": {
|
|
15
|
-
"rovecode": "bin/rovecode.ts"
|
|
16
|
-
},
|
|
17
|
-
"files": [
|
|
18
|
-
"bin",
|
|
19
|
-
"src",
|
|
20
|
-
"vendor",
|
|
21
|
-
"tsconfig.json",
|
|
22
|
-
"THIRD_PARTY_NOTICES.md"
|
|
23
|
-
],
|
|
24
|
-
"engines": {
|
|
25
|
-
"bun": ">=1.3.14"
|
|
26
|
-
},
|
|
27
|
-
"scripts": {
|
|
28
|
-
"build": "bun run scripts/build.ts",
|
|
29
|
-
"build:cli": "bun -e \"require('node:fs').rmSync('dist/cli', { recursive: true, force: true })\" && bun build --target=bun --splitting --sourcemap=external src/cli/main.ts --outdir dist/cli && bun -e \"require('node:fs').copyFileSync('src/providers/models-index.json', 'dist/cli/models-index.json')\" && bun run smoke:cli && bun run smoke:dist",
|
|
30
|
-
"smoke:cli": "bun dist/cli/main.js --version",
|
|
31
|
-
"smoke:dist": "bun dist/cli/main.js smoke-tui --sextant",
|
|
32
|
-
"test": "bun test",
|
|
33
|
-
"gauntlet": "bun src/cli/main.ts gauntlet",
|
|
34
|
-
"typecheck": "tsc --noEmit",
|
|
35
|
-
"check": "node scripts/build-model-index.mjs --check && tsc --noEmit && bun test",
|
|
36
|
-
"smoke": "bun src/cli/main.ts smoke-tui --sextant",
|
|
37
|
-
"publish:site": "bash scripts/publish-site-data.sh",
|
|
38
|
-
"build:model-index": "node scripts/build-model-index.mjs"
|
|
39
|
-
},
|
|
40
|
-
"dependencies": {
|
|
41
|
-
"@ast-grep/napi": "^0.45.3",
|
|
42
|
-
"@modelcontextprotocol/sdk": "^1.30.0",
|
|
43
|
-
"@zed-industries/agent-client-protocol": "^0.4.5",
|
|
44
|
-
"diff": "^9.0.0",
|
|
45
|
-
"get-east-asian-width": "1.6.0",
|
|
46
|
-
"gpt-tokenizer": "^4.0.0",
|
|
47
|
-
"marked": "18.0.11",
|
|
48
|
-
"tokenlens": "^1.3.1"
|
|
49
|
-
},
|
|
50
|
-
"devDependencies": {
|
|
51
|
-
"@opencode-ai/models": "^0.0.64",
|
|
52
|
-
"@types/bun": "latest",
|
|
53
|
-
"@xterm/headless": "6.0.0",
|
|
54
|
-
"typescript": "^5.9.3"
|
|
55
|
-
}
|
|
56
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "rovecode",
|
|
3
|
+
"version": "0.3.3",
|
|
4
|
+
"license": "AGPL-3.0-only",
|
|
5
|
+
"author": "9Code Labs",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/9Code-Labs/rovecode.git"
|
|
9
|
+
},
|
|
10
|
+
"homepage": "https://www.rovecode.dev",
|
|
11
|
+
"description": "Rovecode: a coding agent for the terminal. Research-derived harness on Bun/TypeScript with evidence-based ports from open-source harnesses (sextant TUI, MCP, ACP, headless server, repo-map, shadow-git checkpoints, execpolicy, model routers).",
|
|
12
|
+
"type": "module",
|
|
13
|
+
"module": "src/index.ts",
|
|
14
|
+
"bin": {
|
|
15
|
+
"rovecode": "bin/rovecode.ts"
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"bin",
|
|
19
|
+
"src",
|
|
20
|
+
"vendor",
|
|
21
|
+
"tsconfig.json",
|
|
22
|
+
"THIRD_PARTY_NOTICES.md"
|
|
23
|
+
],
|
|
24
|
+
"engines": {
|
|
25
|
+
"bun": ">=1.3.14"
|
|
26
|
+
},
|
|
27
|
+
"scripts": {
|
|
28
|
+
"build": "bun run scripts/build.ts",
|
|
29
|
+
"build:cli": "bun -e \"require('node:fs').rmSync('dist/cli', { recursive: true, force: true })\" && bun build --target=bun --splitting --sourcemap=external src/cli/main.ts --outdir dist/cli && bun -e \"require('node:fs').copyFileSync('src/providers/models-index.json', 'dist/cli/models-index.json')\" && bun run smoke:cli && bun run smoke:dist",
|
|
30
|
+
"smoke:cli": "bun dist/cli/main.js --version",
|
|
31
|
+
"smoke:dist": "bun dist/cli/main.js smoke-tui --sextant",
|
|
32
|
+
"test": "bun test",
|
|
33
|
+
"gauntlet": "bun src/cli/main.ts gauntlet",
|
|
34
|
+
"typecheck": "tsc --noEmit",
|
|
35
|
+
"check": "node scripts/build-model-index.mjs --check && tsc --noEmit && bun test",
|
|
36
|
+
"smoke": "bun src/cli/main.ts smoke-tui --sextant",
|
|
37
|
+
"publish:site": "bash scripts/publish-site-data.sh",
|
|
38
|
+
"build:model-index": "node scripts/build-model-index.mjs"
|
|
39
|
+
},
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"@ast-grep/napi": "^0.45.3",
|
|
42
|
+
"@modelcontextprotocol/sdk": "^1.30.0",
|
|
43
|
+
"@zed-industries/agent-client-protocol": "^0.4.5",
|
|
44
|
+
"diff": "^9.0.0",
|
|
45
|
+
"get-east-asian-width": "1.6.0",
|
|
46
|
+
"gpt-tokenizer": "^4.0.0",
|
|
47
|
+
"marked": "18.0.11",
|
|
48
|
+
"tokenlens": "^1.3.1"
|
|
49
|
+
},
|
|
50
|
+
"devDependencies": {
|
|
51
|
+
"@opencode-ai/models": "^0.0.64",
|
|
52
|
+
"@types/bun": "latest",
|
|
53
|
+
"@xterm/headless": "6.0.0",
|
|
54
|
+
"typescript": "^5.9.3"
|
|
55
|
+
},
|
|
56
|
+
"keywords": [
|
|
57
|
+
"coding-agent",
|
|
58
|
+
"cli",
|
|
59
|
+
"terminal",
|
|
60
|
+
"tui",
|
|
61
|
+
"ai",
|
|
62
|
+
"llm",
|
|
63
|
+
"agent",
|
|
64
|
+
"bun",
|
|
65
|
+
"typescript",
|
|
66
|
+
"mcp",
|
|
67
|
+
"agpl"
|
|
68
|
+
],
|
|
69
|
+
"bugs": {
|
|
70
|
+
"url": "https://github.com/9Code-Labs/rovecode/issues"
|
|
71
|
+
}
|
|
72
|
+
}
|