@posthog/agent 2.3.73 → 2.3.74

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/dist/agent.js CHANGED
@@ -281,7 +281,7 @@ import { v7 as uuidv7 } from "uuid";
281
281
  // package.json
282
282
  var package_default = {
283
283
  name: "@posthog/agent",
284
- version: "2.3.73",
284
+ version: "2.3.74",
285
285
  repository: "https://github.com/PostHog/code",
286
286
  description: "TypeScript agent framework wrapping Claude Agent SDK with Git-based task execution for PostHog",
287
287
  exports: {
@@ -2843,6 +2843,7 @@ function buildSessionOptions(params) {
2843
2843
  const tools = params.userProvidedOptions?.tools ?? (params.disableBuiltInTools ? [] : { type: "preset", preset: "claude_code" });
2844
2844
  const options = {
2845
2845
  ...params.userProvidedOptions,
2846
+ betas: ["context-1m-2025-08-07"],
2846
2847
  systemPrompt: params.systemPrompt ?? buildSystemPrompt(),
2847
2848
  settingSources: ["user", "project", "local"],
2848
2849
  stderr: (err) => params.logger.error(err),