vesper-wizard 2.3.7 → 2.3.9

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 (3) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
  3. package/wizard.js +7 -5
package/README.md CHANGED
@@ -14,7 +14,7 @@ That's it. The wizard handles everything:
14
14
  2. Initializes a local credentials vault in unified-key mode (no external API keys required)
15
15
  3. Installs `@vespermcp/mcp-server` and auto-configures MCP for all detected agents (Claude, Cursor, VS Code, Codex, Gemini CLI)
16
16
  4. Verifies the installation
17
- 5. Prints a sign-in URL for manual browser login (no forced auto-open)
17
+ 5. Opens browser onboarding during wizard auth (can be disabled with `VESPER_WIZARD_AUTO_OPEN=0`)
18
18
 
19
19
  ## What you get
20
20
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vesper-wizard",
3
- "version": "2.3.7",
3
+ "version": "2.3.9",
4
4
  "description": "Zero-friction setup wizard for Vesper — local MCP server, unified dataset API, and agent auto-config in 60 seconds",
5
5
  "bin": {
6
6
  "vesper-wizard": "wizard.js"
package/wizard.js CHANGED
@@ -313,13 +313,15 @@ async function deviceAuthFlow() {
313
313
  console.log(` │ │`);
314
314
  console.log(` └───────────────────────────────────────────────┘\n`);
315
315
 
316
- const shouldAutoOpenBrowser = process.env.VESPER_WIZARD_AUTO_OPEN === '1';
317
- if (shouldAutoOpenBrowser && !hasCompletedOnboarding()) {
316
+ const shouldAutoOpenBrowser = process.env.VESPER_WIZARD_AUTO_OPEN !== '0';
317
+ if (shouldAutoOpenBrowser) {
318
318
  openBrowser(loginUrl);
319
- markOnboardingCompleted();
320
- console.log(` ${dim('Browser opened automatically (enabled via VESPER_WIZARD_AUTO_OPEN=1).')}`);
319
+ if (!hasCompletedOnboarding()) {
320
+ markOnboardingCompleted();
321
+ }
322
+ console.log(` ${dim('Browser opened automatically for device auth.')}`);
321
323
  } else {
322
- console.log(` ${dim('Browser auto-open disabled. Open the URL manually to continue.')}`);
324
+ console.log(` ${dim('Browser auto-open disabled via VESPER_WIZARD_AUTO_OPEN=0. Open the URL manually to continue.')}`);
323
325
  }
324
326
  console.log(` ${dim('Waiting for you to sign in...')}\n`);
325
327