@anthropic-ai/claude-code 2.1.69 → 2.1.70

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.
Files changed (3) hide show
  1. package/cli.js +1980 -1911
  2. package/package.json +1 -1
  3. package/sdk-tools.d.ts +6 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anthropic-ai/claude-code",
3
- "version": "2.1.69",
3
+ "version": "2.1.70",
4
4
  "bin": {
5
5
  "claude": "cli.js"
6
6
  },
package/sdk-tools.d.ts CHANGED
@@ -263,13 +263,13 @@ export interface AgentInput {
263
263
  /**
264
264
  * The type of specialized agent to use for this task
265
265
  */
266
- subagent_type: string;
266
+ subagent_type?: string;
267
267
  /**
268
268
  * Optional agent ID to resume from. If provided, the agent will continue from the previous execution transcript.
269
269
  */
270
270
  resume?: string;
271
271
  /**
272
- * Set to true to run this agent in the background. The tool result will include an output_file path - use Read tool or Bash tail to check on output.
272
+ * Set to true to run this agent in the background. You will be notified when it completes.
273
273
  */
274
274
  run_in_background?: boolean;
275
275
  /**
@@ -2270,6 +2270,10 @@ export interface BashOutput {
2270
2270
  * Total size of the output in bytes (set when output is too large for inline)
2271
2271
  */
2272
2272
  persistedOutputSize?: number;
2273
+ /**
2274
+ * Compressed output sent to model when token-saver is active (UI still uses stdout)
2275
+ */
2276
+ tokenSaverOutput?: string;
2273
2277
  }
2274
2278
  export interface ExitPlanModeOutput {
2275
2279
  /**