@anthropic-ai/claude-code 2.1.74 → 2.1.76
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 +2379 -2319
- package/package.json +1 -1
- package/sdk-tools.d.ts +16 -1
- package/vendor/audio-capture/arm64-darwin/audio-capture.node +0 -0
- package/vendor/audio-capture/arm64-linux/audio-capture.node +0 -0
- package/vendor/audio-capture/arm64-win32/audio-capture.node +0 -0
- package/vendor/audio-capture/x64-darwin/audio-capture.node +0 -0
- package/vendor/audio-capture/x64-linux/audio-capture.node +0 -0
- package/vendor/audio-capture/x64-win32/audio-capture.node +0 -0
package/package.json
CHANGED
package/sdk-tools.d.ts
CHANGED
|
@@ -110,6 +110,17 @@ 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;
|
|
113
124
|
};
|
|
114
125
|
export type FileReadOutput =
|
|
115
126
|
| {
|
|
@@ -135,6 +146,10 @@ export type FileReadOutput =
|
|
|
135
146
|
* Total number of lines in the file
|
|
136
147
|
*/
|
|
137
148
|
totalLines: number;
|
|
149
|
+
/**
|
|
150
|
+
* True when output was clipped to the byte cap (partial content)
|
|
151
|
+
*/
|
|
152
|
+
resultWasTruncated?: boolean;
|
|
138
153
|
};
|
|
139
154
|
}
|
|
140
155
|
| {
|
|
@@ -279,7 +294,7 @@ export interface AgentInput {
|
|
|
279
294
|
*/
|
|
280
295
|
run_in_background?: boolean;
|
|
281
296
|
/**
|
|
282
|
-
* Name for the spawned agent
|
|
297
|
+
* Name for the spawned agent. Makes it addressable via SendMessage({to: name}) while running.
|
|
283
298
|
*/
|
|
284
299
|
name?: string;
|
|
285
300
|
/**
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|