@anthropic-ai/claude-code 2.1.76 → 2.1.78
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/cli.js +2753 -2300
- package/package.json +1 -1
- package/sdk-tools.d.ts +0 -15
package/package.json
CHANGED
package/sdk-tools.d.ts
CHANGED
|
@@ -110,17 +110,6 @@ export type AgentOutput =
|
|
|
110
110
|
* Whether the calling agent has Read/Bash tools to check progress
|
|
111
111
|
*/
|
|
112
112
|
canReadOutputFile?: boolean;
|
|
113
|
-
}
|
|
114
|
-
| {
|
|
115
|
-
status: "queued_to_running";
|
|
116
|
-
/**
|
|
117
|
-
* The ID of the running agent
|
|
118
|
-
*/
|
|
119
|
-
agentId: string;
|
|
120
|
-
/**
|
|
121
|
-
* The prompt that was queued
|
|
122
|
-
*/
|
|
123
|
-
prompt: string;
|
|
124
113
|
};
|
|
125
114
|
export type FileReadOutput =
|
|
126
115
|
| {
|
|
@@ -285,10 +274,6 @@ export interface AgentInput {
|
|
|
285
274
|
* Optional model override for this agent. Takes precedence over the agent definition's model frontmatter. If omitted, uses the agent definition's model, or inherits from the parent.
|
|
286
275
|
*/
|
|
287
276
|
model?: "sonnet" | "opus" | "haiku";
|
|
288
|
-
/**
|
|
289
|
-
* Optional agent ID to resume from. If provided, the agent will continue from the previous execution transcript.
|
|
290
|
-
*/
|
|
291
|
-
resume?: string;
|
|
292
277
|
/**
|
|
293
278
|
* Set to true to run this agent in the background. You will be notified when it completes.
|
|
294
279
|
*/
|