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 +1 -1
- package/src/commands/auth.js +6 -6
package/package.json
CHANGED
package/src/commands/auth.js
CHANGED
|
@@ -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
|
|
134
|
-
|
|
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
|
|