import { Command } from "commander"; import { log } from "console"; import fs from "fs"; import path from "path"; import { dirname } from "path"; const __dirname = process.cwd(); /** * Sets up the quickstart command for the FastAgent CLI. * @param program - The Commander program instance. */ export function setupQuickstartCommand(program: Command): void { program .command("quickstart [appName]") .description("Create a new FastAgent application with an optional app name") .option( "-t, --template