insta 0.0.41 → 0.0.42
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/dist/commands/setup.js +6 -3
- package/package.json +1 -1
package/dist/commands/setup.js
CHANGED
|
@@ -443,9 +443,12 @@ export async function setupAgent(opts, run = defaultRunner, mint, installConfigs
|
|
|
443
443
|
if (claude === 'new' && !opts.mcpToken) {
|
|
444
444
|
info(' Claude Code first use: run `/mcp` and authorize in the browser (headless machines: `insta setup agent --mcp-token`)');
|
|
445
445
|
}
|
|
446
|
-
// The checkmarks end the install, but the user's next move shouldn't be guesswork.
|
|
446
|
+
// The checkmarks end the install, but the user's next move shouldn't be guesswork. Agent-first:
|
|
447
|
+
// the whole point of setup is that the machine's coding agents now know InstaCloud (skill + MCP)
|
|
448
|
+
// and can drive `insta` themselves — project create/link, deploys, and (via the device flow)
|
|
449
|
+
// even login. The human's next move is simply to go build.
|
|
447
450
|
info(loggedIn
|
|
448
|
-
? 'next:
|
|
449
|
-
: 'next:
|
|
451
|
+
? 'next: open a coding-agent session in your app directory and keep building — your agents know InstaCloud now'
|
|
452
|
+
: 'next: open a coding-agent session in your app directory and keep building — your agents know InstaCloud now (they will walk you through `insta login` when it is needed)');
|
|
450
453
|
}
|
|
451
454
|
//# sourceMappingURL=setup.js.map
|