vesper-wizard 2.3.7 → 2.3.8
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 +1 -1
- package/package.json +1 -1
- 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.
|
|
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
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
|
|
317
|
-
if (shouldAutoOpenBrowser
|
|
316
|
+
const shouldAutoOpenBrowser = process.env.VESPER_WIZARD_AUTO_OPEN !== '0';
|
|
317
|
+
if (shouldAutoOpenBrowser) {
|
|
318
318
|
openBrowser(loginUrl);
|
|
319
|
-
|
|
320
|
-
|
|
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
|
|