UNPKG

@mariozechner/pi-coding-agent

Version:

Coding agent CLI with read, bash, edit, write tools and session management

15 lines 486 B
#!/usr/bin/env node /** * CLI entry point for the refactored coding agent. * Uses main.ts with AgentSession and new mode modules. * * Test with: npx tsx src/cli-new.ts [args...] */ process.title = "pi"; process.env.PI_CODING_AGENT = "true"; process.emitWarning = (() => { }); import { EnvHttpProxyAgent, setGlobalDispatcher } from "undici"; import { main } from "./main.js"; setGlobalDispatcher(new EnvHttpProxyAgent()); main(process.argv.slice(2)); //# sourceMappingURL=cli.js.map