@factadev/cli 0.2.3 → 0.2.5
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 +13 -13
- package/package.json +11 -11
package/README.md
CHANGED
|
@@ -43,29 +43,29 @@ Run Claude Code, Codex, Cursor Agent, Gemini, or OpenCode sessions from your ter
|
|
|
43
43
|
|
|
44
44
|
See `src/commands/auth.ts`.
|
|
45
45
|
|
|
46
|
-
###
|
|
46
|
+
### Worker management
|
|
47
47
|
|
|
48
|
-
- `nest
|
|
49
|
-
- `nest
|
|
50
|
-
- `nest
|
|
51
|
-
- `nest
|
|
52
|
-
- `nest
|
|
53
|
-
- `nest
|
|
48
|
+
- `nest worker start` - Start worker as detached process.
|
|
49
|
+
- `nest worker stop` - Stop worker gracefully.
|
|
50
|
+
- `nest worker status` - Show worker diagnostics.
|
|
51
|
+
- `nest worker list` - List active sessions managed by worker.
|
|
52
|
+
- `nest worker stop-session <sessionId>` - Terminate specific session.
|
|
53
|
+
- `nest worker logs` - Print path to latest worker log file.
|
|
54
54
|
|
|
55
55
|
See `src/runner/run.ts`.
|
|
56
56
|
|
|
57
57
|
### Diagnostics
|
|
58
58
|
|
|
59
|
-
- `nest
|
|
60
|
-
- `nest
|
|
59
|
+
- `nest diagnose` - Show full diagnostics (version, worker status, logs, processes).
|
|
60
|
+
- `nest diagnose clean` - Kill runaway NEST processes.
|
|
61
61
|
|
|
62
62
|
See `src/ui/doctor.ts`.
|
|
63
63
|
|
|
64
64
|
### Other
|
|
65
65
|
|
|
66
66
|
- `nest mcp` - Start MCP stdio bridge. See `src/codex/happyMcpStdioBridge.ts`.
|
|
67
|
-
- `nest
|
|
68
|
-
- `nest
|
|
67
|
+
- `nest server` - Start the bundled server (single binary workflow).
|
|
68
|
+
- `nest hub` - Alias for `nest server`.
|
|
69
69
|
|
|
70
70
|
## Configuration
|
|
71
71
|
|
|
@@ -73,8 +73,8 @@ See `src/configuration.ts` for all options.
|
|
|
73
73
|
|
|
74
74
|
### Required
|
|
75
75
|
|
|
76
|
-
- `CLI_API_TOKEN` - Shared secret; must match the
|
|
77
|
-
- `NEST_API_URL` -
|
|
76
|
+
- `CLI_API_TOKEN` - Shared secret; must match the server. Can be set via env or `~/.nest/settings.json` (env wins).
|
|
77
|
+
- `NEST_API_URL` - Server base URL (default: http://localhost:3006).
|
|
78
78
|
|
|
79
79
|
### Optional
|
|
80
80
|
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@factadev/cli",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"description": "NEST CLI -
|
|
3
|
+
"version": "0.2.5",
|
|
4
|
+
"description": "NEST CLI - Enterprise AI coding agent control center. Run Claude Code, Codex, Cursor, Gemini, OpenCode locally and control remotely via web.",
|
|
5
5
|
"author": "Carlos Matias Baglieri",
|
|
6
6
|
"license": "UNLICENSED",
|
|
7
7
|
"type": "module",
|
|
8
|
-
"homepage": "https://github.com/
|
|
9
|
-
"bugs": "https://github.com/
|
|
8
|
+
"homepage": "https://github.com/Facta-Dev/ctx0_nest_terminal",
|
|
9
|
+
"bugs": "https://github.com/Facta-Dev/ctx0_nest_terminal/issues",
|
|
10
10
|
"repository": {
|
|
11
11
|
"type": "git",
|
|
12
|
-
"url": "git+https://github.com/
|
|
12
|
+
"url": "git+https://github.com/Facta-Dev/ctx0_nest_terminal.git",
|
|
13
13
|
"directory": "cli"
|
|
14
14
|
},
|
|
15
15
|
"bin": {
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
}
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@factadev/api-nest": "0.1.
|
|
29
|
+
"@factadev/api-nest": "0.1.2",
|
|
30
30
|
"@modelcontextprotocol/sdk": "^1.25.1",
|
|
31
31
|
"@types/cross-spawn": "^6.0.6",
|
|
32
32
|
"@types/ps-list": "^6.2.1",
|
|
@@ -77,10 +77,10 @@
|
|
|
77
77
|
},
|
|
78
78
|
"packageManager": "bun@1.3.5",
|
|
79
79
|
"optionalDependencies": {
|
|
80
|
-
"@factadev/cli-darwin-arm64": "0.2.
|
|
81
|
-
"@factadev/cli-darwin-x64": "0.2.
|
|
82
|
-
"@factadev/cli-linux-arm64": "0.2.
|
|
83
|
-
"@factadev/cli-linux-x64": "0.2.
|
|
84
|
-
"@factadev/cli-win32-x64": "0.2.
|
|
80
|
+
"@factadev/cli-darwin-arm64": "0.2.5",
|
|
81
|
+
"@factadev/cli-darwin-x64": "0.2.5",
|
|
82
|
+
"@factadev/cli-linux-arm64": "0.2.5",
|
|
83
|
+
"@factadev/cli-linux-x64": "0.2.5",
|
|
84
|
+
"@factadev/cli-win32-x64": "0.2.5"
|
|
85
85
|
}
|
|
86
86
|
}
|