@autohq/cli 0.1.271 → 0.1.272

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.
@@ -23353,7 +23353,7 @@ Object.assign(lookup, {
23353
23353
  // package.json
23354
23354
  var package_default = {
23355
23355
  name: "@autohq/cli",
23356
- version: "0.1.271",
23356
+ version: "0.1.272",
23357
23357
  license: "SEE LICENSE IN README.md",
23358
23358
  publishConfig: {
23359
23359
  access: "public"
@@ -23802,6 +23802,7 @@ function outputLogContext(output, socketId) {
23802
23802
  role: "role" in output ? output.role : void 0,
23803
23803
  kind: "kind" in output ? output.kind : void 0,
23804
23804
  output_status: "status" in output ? output.status : void 0,
23805
+ delta_type: output.type === "conversation.delta" ? output.delta.type : void 0,
23805
23806
  message_id: "messageId" in output ? output.messageId : void 0
23806
23807
  };
23807
23808
  }
@@ -28398,6 +28399,7 @@ var AgentBridgeOutputBuffer = class {
28398
28399
  role: output && "role" in output ? output.role : void 0,
28399
28400
  kind: output && "kind" in output ? output.kind : void 0,
28400
28401
  output_status: output && "status" in output ? output.status : void 0,
28402
+ delta_type: output?.type === "conversation.delta" ? output.delta.type : void 0,
28401
28403
  message_id: output && "messageId" in output ? output.messageId : void 0,
28402
28404
  ...fields
28403
28405
  };
@@ -48210,6 +48212,8 @@ function claudeAgentOptions(config2, input = {}) {
48210
48212
  input.clientApp ?? CLAUDE_AGENT_SDK_CLIENT_APP
48211
48213
  ),
48212
48214
  includePartialMessages: true,
48215
+ thinking: { type: "adaptive", display: "summarized" },
48216
+ settings: { showThinkingSummaries: true },
48213
48217
  model: CLAUDE_CODE_DEFAULT_MODEL,
48214
48218
  permissionMode: "bypassPermissions",
48215
48219
  allowDangerouslySkipPermissions: true,
package/dist/index.js CHANGED
@@ -22956,7 +22956,7 @@ var init_package = __esm({
22956
22956
  "package.json"() {
22957
22957
  package_default = {
22958
22958
  name: "@autohq/cli",
22959
- version: "0.1.271",
22959
+ version: "0.1.272",
22960
22960
  license: "SEE LICENSE IN README.md",
22961
22961
  publishConfig: {
22962
22962
  access: "public"
@@ -33298,6 +33298,7 @@ function outputLogContext(output, socketId) {
33298
33298
  role: "role" in output ? output.role : void 0,
33299
33299
  kind: "kind" in output ? output.kind : void 0,
33300
33300
  output_status: "status" in output ? output.status : void 0,
33301
+ delta_type: output.type === "conversation.delta" ? output.delta.type : void 0,
33301
33302
  message_id: "messageId" in output ? output.messageId : void 0
33302
33303
  };
33303
33304
  }
@@ -33492,6 +33493,7 @@ var AgentBridgeOutputBuffer = class {
33492
33493
  role: output && "role" in output ? output.role : void 0,
33493
33494
  kind: output && "kind" in output ? output.kind : void 0,
33494
33495
  output_status: output && "status" in output ? output.status : void 0,
33496
+ delta_type: output?.type === "conversation.delta" ? output.delta.type : void 0,
33495
33497
  message_id: output && "messageId" in output ? output.messageId : void 0,
33496
33498
  ...fields
33497
33499
  };
@@ -33733,6 +33735,8 @@ function claudeAgentOptions(config2, input = {}) {
33733
33735
  input.clientApp ?? CLAUDE_AGENT_SDK_CLIENT_APP
33734
33736
  ),
33735
33737
  includePartialMessages: true,
33738
+ thinking: { type: "adaptive", display: "summarized" },
33739
+ settings: { showThinkingSummaries: true },
33736
33740
  model: CLAUDE_CODE_DEFAULT_MODEL,
33737
33741
  permissionMode: "bypassPermissions",
33738
33742
  allowDangerouslySkipPermissions: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@autohq/cli",
3
- "version": "0.1.271",
3
+ "version": "0.1.272",
4
4
  "license": "SEE LICENSE IN README.md",
5
5
  "publishConfig": {
6
6
  "access": "public"