18 lines
681 B
JavaScript
Executable file
18 lines
681 B
JavaScript
Executable file
#!/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...]
|
|
*/
|
|
import { APP_NAME } from "./config.js";
|
|
import { configureHttpDispatcher } from "./core/http-dispatcher.js";
|
|
import { main } from "./main.js";
|
|
process.title = APP_NAME;
|
|
process.env.PI_CODING_AGENT = "true";
|
|
process.emitWarning = (() => { });
|
|
// Configure undici's global dispatcher before provider SDKs issue requests.
|
|
// Runtime settings are applied once SettingsManager has loaded global/project settings.
|
|
configureHttpDispatcher();
|
|
main(process.argv.slice(2));
|
|
//# sourceMappingURL=cli.js.map
|