gbos 1.3.12 → 1.3.13

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gbos",
3
- "version": "1.3.12",
3
+ "version": "1.3.13",
4
4
  "description": "GBOS - Command line interface for GBOS services",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -3,6 +3,7 @@ const config = require('../lib/config');
3
3
  const { checkForUpdates } = require('../lib/version');
4
4
  const { displayAuthBanner, displayMessageBox, printBanner } = require('../lib/display');
5
5
  const { registerMCPServer } = require('../lib/skills');
6
+ const connectCommand = require('./connect');
6
7
 
7
8
  // Sleep helper
8
9
  function sleep(ms) {
@@ -130,13 +131,12 @@ async function authCommand(options) {
130
131
  console.log('MCP server registration:', mcpResults);
131
132
  }
132
133
 
133
- // Display success with banner
134
- displayAuthBanner({
135
- userName: displayUserName,
136
- accountName: account_name || `Account ${account_id}`,
137
- sessionId: session_id,
138
- });
134
+ // Display success message
135
+ console.log('\n ✓ Authentication successful!\n');
139
136
 
137
+ // Automatically proceed to connect
138
+ console.log(' Proceeding to connect to a development node...\n');
139
+ await connectCommand({ force: false });
140
140
  return;
141
141
  }
142
142