@meltstudio/meltctl 4.6.2 → 4.7.0

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.
@@ -59,9 +59,14 @@ export async function loginCommand() {
59
59
  });
60
60
  server.listen(port, () => {
61
61
  const authUrl = `${API_BASE}/auth/google?redirect_uri=${encodeURIComponent(redirectUri)}`;
62
- console.log(chalk.dim('Opening browser for authentication...'));
63
- openBrowser(authUrl);
64
- console.log(chalk.dim(`If the browser doesn't open, visit: ${authUrl}`));
62
+ console.log();
63
+ console.log(chalk.bold(' A browser window will open shortly.'));
64
+ console.log(chalk.dim(' Please log in with your @meltstudio.co Google Workspace account.'));
65
+ console.log();
66
+ setTimeout(() => {
67
+ openBrowser(authUrl);
68
+ console.log(chalk.dim(` If the browser didn't open, visit: ${authUrl}`));
69
+ }, 2000);
65
70
  });
66
71
  });
67
72
  console.log(chalk.dim('Exchanging authorization code...'));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meltstudio/meltctl",
3
- "version": "4.6.2",
3
+ "version": "4.7.0",
4
4
  "description": "AI-first development tools for teams - set up AGENTS.md, Claude Code, Cursor, and Copilot standards",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",