@posthog/agent 2.3.10 → 2.3.11

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.3.10",
907
+ version: "2.3.11",
908
908
  repository: "https://github.com/PostHog/code",
909
909
  description: "TypeScript agent framework wrapping Claude Agent SDK with Git-based task execution for PostHog",
910
910
  exports: {
@@ -2950,7 +2950,12 @@ var BASH_TOOLS = /* @__PURE__ */ new Set([
2950
2950
  ]);
2951
2951
  var SEARCH_TOOLS = /* @__PURE__ */ new Set(["Glob", "Grep", "LS"]);
2952
2952
  var WEB_TOOLS = /* @__PURE__ */ new Set(["WebSearch", "WebFetch"]);
2953
- var AGENT_TOOLS = /* @__PURE__ */ new Set(["Task", "TodoWrite", "Skill"]);
2953
+ var AGENT_TOOLS = /* @__PURE__ */ new Set([
2954
+ "Task",
2955
+ "Agent",
2956
+ "TodoWrite",
2957
+ "Skill"
2958
+ ]);
2954
2959
  var BASE_ALLOWED_TOOLS = [
2955
2960
  ...READ_TOOLS,
2956
2961
  ...SEARCH_TOOLS,