mirror of
https://github.com/harivansh-afk/clanker-agent.git
synced 2026-04-15 10:05:14 +00:00
Restore the bedrock provider import through an explicit workspace path mapping, align pi-grind package metadata with the existing package manifests, remove the unused controller-failure state path, and parse bare ISO dates in local time. Co-authored-by: Codex <noreply@openai.com>
18 lines
576 B
JavaScript
18 lines
576 B
JavaScript
#!/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";
|
|
|
|
import { bedrockProviderModule } from "@mariozechner/pi-ai/bedrock-provider";
|
|
import { setBedrockProviderModule } from "@mariozechner/pi-ai";
|
|
import { EnvHttpProxyAgent, setGlobalDispatcher } from "undici";
|
|
import { main } from "./main.js";
|
|
|
|
setGlobalDispatcher(new EnvHttpProxyAgent());
|
|
setBedrockProviderModule(bedrockProviderModule);
|
|
|
|
main(process.argv.slice(2));
|