fix(cli): remove 'Next step' hint from ao start output (#947)
Remove the post-startup "Next step: ao spawn <issue-number>" hint per reviewer feedback — the dashboard already guides users. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
2f4968c461
commit
6ecaabe3e6
|
|
@ -1120,16 +1120,6 @@ async function runStartup(
|
|||
|
||||
console.log(chalk.dim(`Config: ${config.configPath}`));
|
||||
|
||||
// Show next step hint (only if no existing orchestrators requiring selection)
|
||||
if (!hasExistingOrchestrators) {
|
||||
const projectIds = Object.keys(config.projects);
|
||||
if (projectIds.length > 0) {
|
||||
console.log(chalk.bold("\nNext step:\n"));
|
||||
console.log(` Spawn an agent session:`);
|
||||
console.log(chalk.cyan(` ao spawn <issue-number>\n`));
|
||||
}
|
||||
}
|
||||
|
||||
// Auto-open browser once the server is ready.
|
||||
// With a single orchestrator (or a newly created one), navigate directly to the session page.
|
||||
// With multiple existing orchestrators, open the selection page so the user can choose or
|
||||
|
|
|
|||
Loading…
Reference in New Issue