This commit is contained in:
Dax Raad
2025-07-12 20:25:41 -04:00
parent f04a5e50ee
commit 91f8477ef5
7 changed files with 117 additions and 25 deletions

View File

@@ -15,6 +15,7 @@ import { ServeCommand } from "./cli/cmd/serve"
import { TuiCommand } from "./cli/cmd/tui"
import { DebugCommand } from "./cli/cmd/debug"
import { StatsCommand } from "./cli/cmd/stats"
import { McpCommand } from "./cli/cmd/mcp"
const cancel = new AbortController()
@@ -65,6 +66,7 @@ const cli = yargs(hideBin(process.argv))
})
})
.usage("\n" + UI.logo())
.command(McpCommand)
.command(TuiCommand)
.command(RunCommand)
.command(GenerateCommand)