axios+telemetry cleanup

This commit is contained in:
2026-04-02 15:19:11 +03:00
parent a3cbca1e11
commit 7e1eac8002
100 changed files with 3048 additions and 4491 deletions

17
bin/claude.js Normal file
View File

@@ -0,0 +1,17 @@
#!/usr/bin/env bun
import { spawn } from "child_process";
import { fileURLToPath } from "url";
import { dirname, join } from "path";
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
const mainPath = join(__dirname, "../main.tsx");
const proc = spawn("bun", ["run", mainPath, ...process.argv.slice(2)], {
stdio: "inherit",
});
proc.on("exit", (code) => {
process.exit(code ?? 0);
});