/** * Main interactive menu when CLI is called without arguments. * Shows banner + infrastructure tree + interactive navigation. * * @module */ import { showAutoBanner } from "../ui/banner.js"; /** * Main interactive menu entry point. */ export async function mainMenu(): Promise { if (process.stdout.isTTY) { console.clear(); } showAutoBanner("0.9.0"); // Go directly to status which shows tree + interactive navigation await (await import("./status.js")).statusCommand(); }