Standalone npm package at packages/buildthis/. Probes running Nexus instance, opens browser if found, guides install with hardware-aware provider recommendations if not. 14 tests. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
13 lines
305 B
TypeScript
13 lines
305 B
TypeScript
// CLI entry point — shebang handled by esbuild banner
|
|
import { program } from "commander";
|
|
import { bootstrap } from "./bootstrap.js";
|
|
|
|
program
|
|
.name("buildthis")
|
|
.description("Bootstrap your AI workspace")
|
|
.version("0.1.0")
|
|
.action(async () => {
|
|
await bootstrap();
|
|
});
|
|
|
|
program.parse();
|