@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.
@@ -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.73",
907
+ version: "2.3.74",
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: {
@@ -3707,6 +3707,7 @@ function buildSessionOptions(params) {
3707
3707
  const tools = params.userProvidedOptions?.tools ?? (params.disableBuiltInTools ? [] : { type: "preset", preset: "claude_code" });
3708
3708
  const options = {
3709
3709
  ...params.userProvidedOptions,
3710
+ betas: ["context-1m-2025-08-07"],
3710
3711
  systemPrompt: params.systemPrompt ?? buildSystemPrompt(),
3711
3712
  settingSources: ["user", "project", "local"],
3712
3713
  stderr: (err) => params.logger.error(err),