@anthropic-ai/claude-code 2.0.30 → 2.0.32
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 +1011 -998
- package/package.json +1 -1
- package/sdk-tools.d.ts +6 -2
package/package.json
CHANGED
package/sdk-tools.d.ts
CHANGED
|
@@ -182,7 +182,7 @@ export interface GrepInput {
|
|
|
182
182
|
*/
|
|
183
183
|
"-C"?: number;
|
|
184
184
|
/**
|
|
185
|
-
* Show line numbers in output (rg -n). Requires output_mode: "content", ignored otherwise.
|
|
185
|
+
* Show line numbers in output (rg -n). Requires output_mode: "content", ignored otherwise. Defaults to true.
|
|
186
186
|
*/
|
|
187
187
|
"-n"?: boolean;
|
|
188
188
|
/**
|
|
@@ -194,9 +194,13 @@ export interface GrepInput {
|
|
|
194
194
|
*/
|
|
195
195
|
type?: string;
|
|
196
196
|
/**
|
|
197
|
-
* Limit output to first N lines/entries, equivalent to "| head -N". Works across all output modes: content (limits output lines), files_with_matches (limits file paths), count (limits count entries).
|
|
197
|
+
* Limit output to first N lines/entries, equivalent to "| head -N". Works across all output modes: content (limits output lines), files_with_matches (limits file paths), count (limits count entries). Defaults based on "cap" experiment value: 0 (unlimited), 20, or 100.
|
|
198
198
|
*/
|
|
199
199
|
head_limit?: number;
|
|
200
|
+
/**
|
|
201
|
+
* Skip first N lines/entries before applying head_limit, equivalent to "| tail -n +N | head -N". Works across all output modes. Defaults to 0.
|
|
202
|
+
*/
|
|
203
|
+
offset?: number;
|
|
200
204
|
/**
|
|
201
205
|
* Enable multiline mode where . matches newlines and patterns can span lines (rg -U --multiline-dotall). Default: false.
|
|
202
206
|
*/
|