@getmonoceros/workbench 1.19.0 → 1.19.1

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/dist/bin.js CHANGED
@@ -6407,7 +6407,7 @@ var CLI_VERSION;
6407
6407
  var init_version = __esm({
6408
6408
  "src/version.ts"() {
6409
6409
  "use strict";
6410
- CLI_VERSION = true ? "1.19.0" : "dev";
6410
+ CLI_VERSION = true ? "1.19.1" : "dev";
6411
6411
  }
6412
6412
  });
6413
6413
 
@@ -8045,7 +8045,6 @@ exit 0
8045
8045
  const servers = [];
8046
8046
  let handledUrl = false;
8047
8047
  const onAuthUrl = (authUrl) => {
8048
- consola16.info("Opening the Claude sign-in page in your browser\u2026");
8049
8048
  openInBrowser(authUrl);
8050
8049
  const target = parseCallbackTarget(authUrl);
8051
8050
  if (!target) {
@@ -8091,9 +8090,7 @@ exit 0
8091
8090
  handledUrl = true;
8092
8091
  onAuthUrl(content.trim());
8093
8092
  }, 250);
8094
- consola16.info(
8095
- "Starting Claude login. Pick your account in Claude's menu \u2014 the browser opens for you, no copying."
8096
- );
8093
+ consola16.info("Logging in to Claude \u2014 a browser window will open for you.");
8097
8094
  const child = spawn8(
8098
8095
  process.execPath,
8099
8096
  [
@@ -8104,7 +8101,7 @@ exit 0
8104
8101
  "--mount-workspace-git-root=false",
8105
8102
  "bash",
8106
8103
  "-lc",
8107
- `export PATH="/workspaces/${name}/${RELAY_DIRNAME}:$PATH"; exec claude`
8104
+ `export PATH="/workspaces/${name}/${RELAY_DIRNAME}:$PATH"; exec claude auth login`
8108
8105
  ],
8109
8106
  {
8110
8107
  cwd: root,