UNPKG

framework

Version:

The (AI) Framework: turnkey, zero-config AI orchestration that wraps a coding-agent CLI (Claude Code) as a black box and takes you from an idea to a running app. Vite for AI.

11 lines 244 B
#!/usr/bin/env node import { runCli } from './cli.js'; runCli(process.argv.slice(2)) .then(code => { process.exitCode = code; }) .catch((err) => { console.error(err); process.exitCode = 1; }); //# sourceMappingURL=bin.js.map