@posthog/agent 2.1.60 → 2.1.62

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1183,7 +1183,7 @@ import { v7 as uuidv7 } from "uuid";
1183
1183
  // package.json
1184
1184
  var package_default = {
1185
1185
  name: "@posthog/agent",
1186
- version: "2.1.60",
1186
+ version: "2.1.62",
1187
1187
  repository: "https://github.com/PostHog/twig",
1188
1188
  description: "TypeScript agent framework wrapping Claude Agent SDK with Git-based task execution for PostHog",
1189
1189
  exports: {
@@ -3729,6 +3729,11 @@ function findCodexBinary(options) {
3729
3729
  if (options.binaryPath && existsSync3(options.binaryPath)) {
3730
3730
  return { command: options.binaryPath, args: configArgs };
3731
3731
  }
3732
+ if (options.binaryPath) {
3733
+ throw new Error(
3734
+ `codex-acp binary not found at ${options.binaryPath}. Run "node apps/twig/scripts/download-binaries.mjs" to download it.`
3735
+ );
3736
+ }
3732
3737
  return { command: "npx", args: ["@zed-industries/codex-acp", ...configArgs] };
3733
3738
  }
3734
3739
  function spawnCodexProcess(options) {