@posthog/agent 2.1.29 → 2.1.35

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@posthog/agent",
3
- "version": "2.1.29",
3
+ "version": "2.1.35",
4
4
  "repository": "https://github.com/PostHog/twig",
5
5
  "description": "TypeScript agent framework wrapping Claude Agent SDK with Git-based task execution for PostHog",
6
6
  "exports": {
@@ -26,7 +26,7 @@ export const SEARCH_TOOLS: Set<string> = new Set(["Glob", "Grep", "LS"]);
26
26
 
27
27
  export const WEB_TOOLS: Set<string> = new Set(["WebSearch", "WebFetch"]);
28
28
 
29
- export const AGENT_TOOLS: Set<string> = new Set(["Task", "TodoWrite"]);
29
+ export const AGENT_TOOLS: Set<string> = new Set(["Task", "TodoWrite", "Skill"]);
30
30
 
31
31
  const BASE_ALLOWED_TOOLS = [
32
32
  ...READ_TOOLS,