@vibecodr/cli 1.0.9 → 1.0.10

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.
@@ -1,3 +1,3 @@
1
- export declare const CLI_VERSION = "1.0.9";
2
- export declare const VC_TOOLS_VERSION = "1.0.9";
1
+ export declare const CLI_VERSION = "1.0.10";
2
+ export declare const VC_TOOLS_VERSION = "1.0.10";
3
3
  //# sourceMappingURL=version.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../../../src/legacy/core/version.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,WAAW,UAAU,CAAC;AACnC,eAAO,MAAM,gBAAgB,UAAc,CAAC"}
1
+ {"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../../../src/legacy/core/version.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,WAAW,WAAW,CAAC;AACpC,eAAO,MAAM,gBAAgB,WAAc,CAAC"}
@@ -1,3 +1,3 @@
1
- export const CLI_VERSION = "1.0.9";
1
+ export const CLI_VERSION = "1.0.10";
2
2
  export const VC_TOOLS_VERSION = CLI_VERSION;
3
3
  //# sourceMappingURL=version.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"version.js","sourceRoot":"","sources":["../../../src/legacy/core/version.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,WAAW,GAAG,OAAO,CAAC;AACnC,MAAM,CAAC,MAAM,gBAAgB,GAAG,WAAW,CAAC"}
1
+ {"version":3,"file":"version.js","sourceRoot":"","sources":["../../../src/legacy/core/version.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,WAAW,GAAG,QAAQ,CAAC;AACpC,MAAM,CAAC,MAAM,gBAAgB,GAAG,WAAW,CAAC"}
package/docs/auth.md CHANGED
@@ -1,13 +1,20 @@
1
1
  # Auth
2
2
 
3
- `vibecodr login` defaults to authenticating the CLI itself to the hosted Vibecodr MCP server. It does not log Codex, Cursor, VS Code, Windsurf, ChatGPT, or any other MCP client into MCP.
3
+ The normal public setup path is `vibecodr start`. It opens the browser approval
4
+ flow shown on the Vibecodr CLI pages, stores the hosted Agent Computer
5
+ credential for this machine, and returns the connection details an agent needs.
6
+
7
+ `vibecodr login` is still the explicit MCP Gateway login for publishing,
8
+ uploads, Pulses, and direct MCP Gateway tools. It does not log Codex, Cursor, VS
9
+ Code, Windsurf, ChatGPT, or any other MCP client into MCP.
4
10
 
5
11
  Vibecodr now has two CLI credential lanes:
6
12
 
7
13
  - MCP Gateway: `vibecodr login` or `vibecodr login mcp`, stored under the historical `@vibecodr/mcp` service.
8
14
  - Hosted Agent Computer: `vibecodr login agent` or the automatic `vibecodr start` approval flow, stored under the historical `@vibecodr/vc-tools` service.
9
15
 
10
- The token types are intentionally separate. Status and doctor can read both lanes, but the CLI does not merge or copy credentials between them.
16
+ The token types are intentionally separate. Status and doctor can read both lanes,
17
+ but the CLI does not merge or copy credentials between them.
11
18
 
12
19
  Compatibility alias:
13
20
 
package/docs/commands.md CHANGED
@@ -10,9 +10,10 @@ The Vibecodr CLI talks to two hosted endpoints. Every command targets exactly on
10
10
 
11
11
  The three bin entries — `vibecodr`, `vibecodr-mcp`, `vc-tools` — all resolve to the same dispatcher. The `vc-tools` bin remains for back-compat and routes every command through the legacy code path so output is byte-equivalent to `@vibecodr/vc-tools@0.1.4`. The `vibecodr` bin runs the MCP-gateway commands inline and cross-routes the hosted Agent Computer commands into the legacy code path. The `vibecodr-mcp` bin is the alias preserved from `@vibecodr/cli@0.2.x`.
12
12
 
13
- The human-facing command experience is deliberately guided: `vibecodr`,
14
- `vibecodr status`, and `vibecodr doctor` should answer what to do next before
15
- they teach service names. The architecture underneath remains explicit:
13
+ The human-facing command experience is deliberately guided: `vibecodr start` is
14
+ the normal public setup path, and `vibecodr`, `vibecodr status`, and
15
+ `vibecodr doctor` should answer what to do next before they teach service names.
16
+ The architecture underneath remains explicit:
16
17
  commands still route to one hosted endpoint, JSON stays stable for scripts, and
17
18
  diagnostics preserve the real credential/service boundary.
18
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibecodr/cli",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "description": "The official Vibecodr CLI: hosted browser, hosted computer, capsule uploads, Pulse operations, and agent-client MCP setup under one command.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",