@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@posthog/agent",
3
- "version": "2.3.478",
3
+ "version": "2.3.502",
4
4
  "repository": "https://github.com/PostHog/code",
5
5
  "description": "TypeScript agent framework wrapping Claude Agent SDK with Git-based task execution for PostHog",
6
6
  "exports": {
@@ -1309,7 +1309,7 @@ export class ClaudeAcpAgent extends BaseAcpAgent {
1309
1309
  const configOptions = this.buildConfigOptions(
1310
1310
  permissionMode,
1311
1311
  modelOptions,
1312
- effort ?? "high",
1312
+ effort ?? "medium",
1313
1313
  );
1314
1314
  session.configOptions = configOptions;
1315
1315
 
@@ -1406,7 +1406,7 @@ export class ClaudeAcpAgent extends BaseAcpAgent {
1406
1406
  currentModelId: string;
1407
1407
  options: SessionConfigSelectOption[];
1408
1408
  },
1409
- currentEffort: EffortLevel = "high",
1409
+ currentEffort: EffortLevel = "medium",
1410
1410
  ): SessionConfigOption[] {
1411
1411
  const modeOptions = getAvailableModes().map((mode) => ({
1412
1412
  value: mode.id,