@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.
Files changed (2) hide show
  1. package/README.md +13 -13
  2. 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
- ### Runner management
46
+ ### Worker management
47
47
 
48
- - `nest runner start` - Start runner as detached process.
49
- - `nest runner stop` - Stop runner gracefully.
50
- - `nest runner status` - Show runner diagnostics.
51
- - `nest runner list` - List active sessions managed by runner.
52
- - `nest runner stop-session <sessionId>` - Terminate specific session.
53
- - `nest runner logs` - Print path to latest runner log file.
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 doctor` - Show full diagnostics (version, runner status, logs, processes).
60
- - `nest doctor clean` - Kill runaway NEST processes.
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 hub` - Start the bundled hub (single binary workflow).
68
- - `nest server` - Alias for `nest hub`.
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 hub. Can be set via env or `~/.nest/settings.json` (env wins).
77
- - `NEST_API_URL` - Hub base URL (default: http://localhost:3006).
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.3",
4
- "description": "NEST CLI - Run AI coding agents and control them remotely",
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/ctx0/nest",
9
- "bugs": "https://github.com/ctx0/nest/issues",
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/ctx0/nest.git",
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.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.3",
81
- "@factadev/cli-darwin-x64": "0.2.3",
82
- "@factadev/cli-linux-arm64": "0.2.3",
83
- "@factadev/cli-linux-x64": "0.2.3",
84
- "@factadev/cli-win32-x64": "0.2.3"
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
  }