co-mono/packages/agent/src/cli.ts
2025-08-09 20:16:59 +02:00

9 lines
210 B
JavaScript

#!/usr/bin/env node
import { main } from "./main.js";
// Run as CLI - this file should always be executed, not imported
main(process.argv.slice(2)).catch((err) => {
console.error(err);
process.exit(1);
});