@posthog/agent 2.1.105 → 2.1.107

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.
@@ -904,7 +904,7 @@ var import_hono = require("hono");
904
904
  // package.json
905
905
  var package_default = {
906
906
  name: "@posthog/agent",
907
- version: "2.1.105",
907
+ version: "2.1.107",
908
908
  repository: "https://github.com/PostHog/twig",
909
909
  description: "TypeScript agent framework wrapping Claude Agent SDK with Git-based task execution for PostHog",
910
910
  exports: {
@@ -989,7 +989,7 @@ var package_default = {
989
989
  },
990
990
  dependencies: {
991
991
  "@agentclientprotocol/sdk": "^0.14.0",
992
- "@anthropic-ai/claude-agent-sdk": "0.2.42",
992
+ "@anthropic-ai/claude-agent-sdk": "0.2.58",
993
993
  "@anthropic-ai/sdk": "^0.71.0",
994
994
  "@hono/node-server": "^1.19.9",
995
995
  "@modelcontextprotocol/sdk": "^1.25.3",
@@ -3744,7 +3744,9 @@ var ClaudeAcpAgent = class extends BaseAcpAgent {
3744
3744
  case "tool_use_summary":
3745
3745
  return null;
3746
3746
  default:
3747
- unreachable(message, this.logger);
3747
+ this.logger.warn("Unhandled message type", {
3748
+ type: message.type
3749
+ });
3748
3750
  return null;
3749
3751
  }
3750
3752
  }