@posthog/agent 2.3.478 → 2.3.502

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
@@ -4030,7 +4030,7 @@ import { v7 as uuidv7 } from "uuid";
4030
4030
  // package.json
4031
4031
  var package_default = {
4032
4032
  name: "@posthog/agent",
4033
- version: "2.3.478",
4033
+ version: "2.3.502",
4034
4034
  repository: "https://github.com/PostHog/code",
4035
4035
  description: "TypeScript agent framework wrapping Claude Agent SDK with Git-based task execution for PostHog",
4036
4036
  exports: {
@@ -17306,7 +17306,7 @@ var ClaudeAcpAgent = class extends BaseAcpAgent {
17306
17306
  const configOptions = this.buildConfigOptions(
17307
17307
  permissionMode,
17308
17308
  modelOptions,
17309
- effort ?? "high"
17309
+ effort ?? "medium"
17310
17310
  );
17311
17311
  session.configOptions = configOptions;
17312
17312
  if (!creationOpts.skipBackgroundFetches) {
@@ -17372,7 +17372,7 @@ var ClaudeAcpAgent = class extends BaseAcpAgent {
17372
17372
  configOptions: this.session.configOptions
17373
17373
  };
17374
17374
  }
17375
- buildConfigOptions(currentModeId, modelOptions, currentEffort = "high") {
17375
+ buildConfigOptions(currentModeId, modelOptions, currentEffort = "medium") {
17376
17376
  const modeOptions = getAvailableModes().map((mode) => ({
17377
17377
  value: mode.id,
17378
17378
  name: mode.name,