-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Expand file tree
/
Copy pathNativeToolCallParser.ts
More file actions
1095 lines (976 loc) · 30.4 KB
/
NativeToolCallParser.ts
File metadata and controls
1095 lines (976 loc) · 30.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import { parseJSON } from "partial-json"
import { type ToolName, toolNames, type FileEntry } from "@roo-code/types"
import { customToolRegistry } from "@roo-code/core"
import {
type ToolUse,
type McpToolUse,
type ToolParamName,
type NativeToolArgs,
toolParamNames,
} from "../../shared/tools"
import { resolveToolAlias } from "../prompts/tools/filter-tools-for-mode"
import type {
ApiStreamToolCallStartChunk,
ApiStreamToolCallDeltaChunk,
ApiStreamToolCallEndChunk,
} from "../../api/transform/stream"
import { MCP_TOOL_PREFIX, MCP_TOOL_SEPARATOR, parseMcpToolName, normalizeMcpToolName } from "../../utils/mcp-name"
/**
* Helper type to extract properly typed native arguments for a given tool.
* Returns the type from NativeToolArgs if the tool is defined there, otherwise never.
*/
type NativeArgsFor<TName extends ToolName> = TName extends keyof NativeToolArgs ? NativeToolArgs[TName] : never
/**
* Parser for native tool calls (OpenAI-style function calling).
* Converts native tool call format to ToolUse format for compatibility
* with existing tool execution infrastructure.
*
* For tools with refactored parsers (e.g., read_file), this parser provides
* typed arguments via nativeArgs. Tool-specific handlers should consume
* nativeArgs directly rather than relying on synthesized legacy params.
*/
/**
* Event types returned from raw chunk processing.
*/
export type ToolCallStreamEvent = ApiStreamToolCallStartChunk | ApiStreamToolCallDeltaChunk | ApiStreamToolCallEndChunk
/**
* Parser for native tool calls (OpenAI-style function calling).
* Converts native tool call format to ToolUse format for compatibility
* with existing tool execution infrastructure.
*
* For tools with refactored parsers (e.g., read_file), this parser provides
* typed arguments via nativeArgs. Tool-specific handlers should consume
* nativeArgs directly rather than relying on synthesized legacy params.
*
* This class also handles raw tool call chunk processing, converting
* provider-level raw chunks into start/delta/end events.
*/
export class NativeToolCallParser {
// Streaming state management for argument accumulation (keyed by tool call id)
// Note: name is string to accommodate dynamic MCP tools (mcp--serverName--toolName)
private static streamingToolCalls = new Map<
string,
{
id: string
name: string
argumentsAccumulator: string
}
>()
// Raw chunk tracking state (keyed by index from API stream)
private static rawChunkTracker = new Map<
number,
{
id: string
name: string
hasStarted: boolean
deltaBuffer: string[]
}
>()
private static coerceOptionalBoolean(value: unknown): boolean | undefined {
if (typeof value === "boolean") {
return value
}
if (typeof value === "string") {
const lower = value.trim().toLowerCase()
if (lower === "true") {
return true
}
if (lower === "false") {
return false
}
}
return undefined
}
/**
* Process a raw tool call chunk from the API stream.
* Handles tracking, buffering, and emits start/delta/end events.
*
* This is the entry point for providers that emit tool_call_partial chunks.
* Returns an array of events to be processed by the consumer.
*/
public static processRawChunk(chunk: {
index: number
id?: string
name?: string
arguments?: string
}): ToolCallStreamEvent[] {
const events: ToolCallStreamEvent[] = []
const { index, id, name, arguments: args } = chunk
let tracked = this.rawChunkTracker.get(index)
// Initialize new tool call tracking when we receive an id
if (id && !tracked) {
tracked = {
id,
name: name || "",
hasStarted: false,
deltaBuffer: [],
}
this.rawChunkTracker.set(index, tracked)
}
if (!tracked) {
return events
}
// Update name if present in chunk and not yet set
if (name) {
tracked.name = name
}
// Emit start event when we have the name
if (!tracked.hasStarted && tracked.name) {
events.push({
type: "tool_call_start",
id: tracked.id,
name: tracked.name,
})
tracked.hasStarted = true
// Flush buffered deltas
for (const bufferedDelta of tracked.deltaBuffer) {
events.push({
type: "tool_call_delta",
id: tracked.id,
delta: bufferedDelta,
})
}
tracked.deltaBuffer = []
}
// Emit delta event for argument chunks
if (args) {
if (tracked.hasStarted) {
events.push({
type: "tool_call_delta",
id: tracked.id,
delta: args,
})
} else {
tracked.deltaBuffer.push(args)
}
}
return events
}
/**
* Process stream finish reason.
* Emits end events when finish_reason is 'tool_calls'.
*/
public static processFinishReason(finishReason: string | null | undefined): ToolCallStreamEvent[] {
const events: ToolCallStreamEvent[] = []
if (finishReason === "tool_calls" && this.rawChunkTracker.size > 0) {
for (const [, tracked] of this.rawChunkTracker.entries()) {
events.push({
type: "tool_call_end",
id: tracked.id,
})
}
}
return events
}
/**
* Finalize any remaining tool calls that weren't explicitly ended.
* Should be called at the end of stream processing.
*/
public static finalizeRawChunks(): ToolCallStreamEvent[] {
const events: ToolCallStreamEvent[] = []
if (this.rawChunkTracker.size > 0) {
for (const [, tracked] of this.rawChunkTracker.entries()) {
if (tracked.hasStarted) {
events.push({
type: "tool_call_end",
id: tracked.id,
})
}
}
this.rawChunkTracker.clear()
}
return events
}
/**
* Clear all raw chunk tracking state.
* Should be called when a new API request starts.
*/
public static clearRawChunkState(): void {
this.rawChunkTracker.clear()
}
/**
* Start streaming a new tool call.
* Initializes tracking for incremental argument parsing.
* Accepts string to support both ToolName and dynamic MCP tools (mcp--serverName--toolName).
*/
public static startStreamingToolCall(id: string, name: string): void {
this.streamingToolCalls.set(id, {
id,
name,
argumentsAccumulator: "",
})
}
/**
* Clear all streaming tool call state.
* Should be called when a new API request starts to prevent memory leaks
* from interrupted streams.
*/
public static clearAllStreamingToolCalls(): void {
this.streamingToolCalls.clear()
}
/**
* Check if there are any active streaming tool calls.
* Useful for debugging and testing.
*/
public static hasActiveStreamingToolCalls(): boolean {
return this.streamingToolCalls.size > 0
}
/**
* Process a chunk of JSON arguments for a streaming tool call.
* Uses partial-json-parser to extract values from incomplete JSON immediately.
* Returns a partial ToolUse with currently parsed parameters.
*/
public static processStreamingChunk(id: string, chunk: string): ToolUse | null {
const toolCall = this.streamingToolCalls.get(id)
if (!toolCall) {
return null
}
// Accumulate the JSON string
toolCall.argumentsAccumulator += chunk
// For dynamic MCP tools, we don't return partial updates - wait for final
const mcpPrefix = MCP_TOOL_PREFIX + MCP_TOOL_SEPARATOR
if (toolCall.name.startsWith(mcpPrefix)) {
return null
}
// Parse whatever we can from the incomplete JSON!
// partial-json-parser extracts partial values (strings, arrays, objects) immediately
try {
const partialArgs = parseJSON(toolCall.argumentsAccumulator)
// Resolve tool alias to canonical name
const resolvedName = resolveToolAlias(toolCall.name) as ToolName
// Preserve original name if it differs from resolved (i.e., it was an alias)
const originalName = toolCall.name !== resolvedName ? toolCall.name : undefined
// Create partial ToolUse with extracted values
return this.createPartialToolUse(
toolCall.id,
resolvedName,
partialArgs || {},
true, // partial
originalName,
)
} catch {
// Even partial-json-parser can fail on severely malformed JSON
// Return null and wait for next chunk
return null
}
}
/**
* Finalize a streaming tool call.
* Parses the complete JSON and returns the final ToolUse or McpToolUse.
*/
public static finalizeStreamingToolCall(id: string): ToolUse | McpToolUse | null {
const toolCall = this.streamingToolCalls.get(id)
if (!toolCall) {
return null
}
// Parse the complete accumulated JSON
// Cast to any for the name since parseToolCall handles both ToolName and dynamic MCP tools
const finalToolUse = this.parseToolCall({
id: toolCall.id,
name: toolCall.name as ToolName,
arguments: toolCall.argumentsAccumulator,
})
// Clean up streaming state
this.streamingToolCalls.delete(id)
return finalToolUse
}
private static coerceOptionalNumber(value: unknown): number | undefined {
if (typeof value === "number" && Number.isFinite(value)) {
return value
}
if (typeof value === "string") {
const n = Number(value)
if (Number.isFinite(n)) {
return n
}
}
return undefined
}
/**
* Convert raw file entries from API (with line_ranges) to FileEntry objects
* (with lineRanges). Handles multiple formats for backward compatibility:
*
* New tuple format: { path: string, line_ranges: [[1, 50], [100, 150]] }
* Object format: { path: string, line_ranges: [{ start: 1, end: 50 }] }
* Legacy string format: { path: string, line_ranges: ["1-50"] }
*
* Returns: { path: string, lineRanges: [{ start: 1, end: 50 }] }
*/
private static convertFileEntries(files: unknown[]): FileEntry[] {
return files.map((file: unknown) => {
const f = file as Record<string, unknown>
const entry: FileEntry = { path: f.path as string }
if (f.line_ranges && Array.isArray(f.line_ranges)) {
entry.lineRanges = (f.line_ranges as unknown[])
.map((range: unknown) => {
// Handle tuple format: [start, end]
if (Array.isArray(range) && range.length >= 2) {
return { start: Number(range[0]), end: Number(range[1]) }
}
// Handle object format: { start: number, end: number }
if (typeof range === "object" && range !== null && "start" in range && "end" in range) {
const r = range as { start: unknown; end: unknown }
return { start: Number(r.start), end: Number(r.end) }
}
// Handle legacy string format: "1-50"
if (typeof range === "string") {
const match = range.match(/^(\d+)-(\d+)$/)
if (match) {
return { start: parseInt(match[1], 10), end: parseInt(match[2], 10) }
}
}
return null
})
.filter((r): r is { start: number; end: number } => r !== null)
}
return entry
})
}
/**
* Create a partial ToolUse from currently parsed arguments.
* Used during streaming to show progress.
* @param originalName - The original tool name as called by the model (if different from canonical name)
*/
private static createPartialToolUse(
id: string,
name: ToolName,
partialArgs: Record<string, any>,
partial: boolean,
originalName?: string,
): ToolUse | null {
// Build stringified params for display/partial-progress UI.
// NOTE: For streaming partial updates, we MUST populate params even for complex types
// because tool.handlePartial() methods rely on params to show UI updates.
const params: Partial<Record<ToolParamName, string>> = {}
for (const [key, value] of Object.entries(partialArgs)) {
if (toolParamNames.includes(key as ToolParamName)) {
params[key as ToolParamName] = typeof value === "string" ? value : JSON.stringify(value)
}
}
// Build partial nativeArgs based on what we have so far
let nativeArgs: any = undefined
// Track if legacy format was used (for telemetry)
let usedLegacyFormat = false
switch (name) {
case "read_file":
// Check for legacy format first: { files: [...] }
// Handle both array and stringified array (some models double-stringify)
if (partialArgs.files !== undefined) {
let filesArray: unknown[] | null = null
if (Array.isArray(partialArgs.files)) {
filesArray = partialArgs.files
} else if (typeof partialArgs.files === "string") {
// Handle double-stringified case: files is a string containing JSON array
try {
const parsed = JSON.parse(partialArgs.files)
if (Array.isArray(parsed)) {
filesArray = parsed
}
} catch {
// Not valid JSON, ignore
}
}
if (filesArray && filesArray.length > 0) {
usedLegacyFormat = true
nativeArgs = {
files: this.convertFileEntries(filesArray),
_legacyFormat: true as const,
}
}
}
// New format: { path: "...", mode: "..." }
if (!nativeArgs && partialArgs.path !== undefined) {
nativeArgs = {
path: partialArgs.path,
mode: partialArgs.mode,
offset: this.coerceOptionalNumber(partialArgs.offset),
limit: this.coerceOptionalNumber(partialArgs.limit),
indentation:
partialArgs.indentation && typeof partialArgs.indentation === "object"
? {
anchor_line: this.coerceOptionalNumber(partialArgs.indentation.anchor_line),
max_levels: this.coerceOptionalNumber(partialArgs.indentation.max_levels),
max_lines: this.coerceOptionalNumber(partialArgs.indentation.max_lines),
include_siblings: this.coerceOptionalBoolean(
partialArgs.indentation.include_siblings,
),
include_header: this.coerceOptionalBoolean(
partialArgs.indentation.include_header,
),
}
: undefined,
}
}
break
case "attempt_completion":
if (partialArgs.result) {
nativeArgs = { result: partialArgs.result }
}
break
case "execute_command":
if (partialArgs.command) {
nativeArgs = {
command: partialArgs.command,
cwd: partialArgs.cwd,
timeout: partialArgs.timeout,
}
}
break
case "write_to_file":
if (partialArgs.path || partialArgs.content) {
nativeArgs = {
path: partialArgs.path,
content: partialArgs.content,
}
}
break
case "ask_followup_question":
if (partialArgs.question !== undefined || partialArgs.follow_up !== undefined) {
nativeArgs = {
question: partialArgs.question,
follow_up: Array.isArray(partialArgs.follow_up) ? partialArgs.follow_up : undefined,
}
}
break
case "apply_diff":
if (partialArgs.path !== undefined || partialArgs.diff !== undefined) {
nativeArgs = {
path: partialArgs.path,
diff: partialArgs.diff,
}
}
break
case "codebase_search":
if (partialArgs.query !== undefined) {
nativeArgs = {
query: partialArgs.query,
path: partialArgs.path,
}
}
break
case "generate_image":
if (partialArgs.prompt !== undefined || partialArgs.path !== undefined) {
nativeArgs = {
prompt: partialArgs.prompt,
path: partialArgs.path,
image: partialArgs.image,
}
}
break
case "run_slash_command":
if (partialArgs.command !== undefined) {
nativeArgs = {
command: partialArgs.command,
args: partialArgs.args,
}
}
break
case "skill":
if (partialArgs.skill !== undefined) {
nativeArgs = {
skill: partialArgs.skill,
args: partialArgs.args,
}
}
break
case "search_files":
if (partialArgs.path !== undefined || partialArgs.regex !== undefined) {
nativeArgs = {
path: partialArgs.path,
regex: partialArgs.regex,
file_pattern: partialArgs.file_pattern,
}
}
break
case "switch_mode":
if (partialArgs.mode_slug !== undefined || partialArgs.reason !== undefined) {
nativeArgs = {
mode_slug: partialArgs.mode_slug,
reason: partialArgs.reason,
}
}
break
case "update_todo_list":
if (partialArgs.todos !== undefined) {
nativeArgs = {
todos: partialArgs.todos,
}
}
break
case "use_mcp_tool":
if (partialArgs.server_name !== undefined || partialArgs.tool_name !== undefined) {
nativeArgs = {
server_name: partialArgs.server_name,
tool_name: partialArgs.tool_name,
arguments: partialArgs.arguments,
}
}
break
case "delegate_to_agent":
if (partialArgs.agent_name !== undefined || partialArgs.message !== undefined) {
nativeArgs = {
agent_name: partialArgs.agent_name,
message: partialArgs.message,
}
}
break
case "apply_patch":
if (partialArgs.patch !== undefined) {
nativeArgs = {
patch: partialArgs.patch,
}
}
break
case "search_replace":
if (
partialArgs.file_path !== undefined ||
partialArgs.old_string !== undefined ||
partialArgs.new_string !== undefined
) {
nativeArgs = {
file_path: partialArgs.file_path,
old_string: partialArgs.old_string,
new_string: partialArgs.new_string,
}
}
break
case "edit":
case "search_and_replace":
if (
partialArgs.file_path !== undefined ||
partialArgs.old_string !== undefined ||
partialArgs.new_string !== undefined
) {
nativeArgs = {
file_path: partialArgs.file_path,
old_string: partialArgs.old_string,
new_string: partialArgs.new_string,
replace_all: this.coerceOptionalBoolean(partialArgs.replace_all),
}
}
break
case "edit_file":
if (
partialArgs.file_path !== undefined ||
partialArgs.old_string !== undefined ||
partialArgs.new_string !== undefined
) {
nativeArgs = {
file_path: partialArgs.file_path,
old_string: partialArgs.old_string,
new_string: partialArgs.new_string,
expected_replacements: partialArgs.expected_replacements,
}
}
break
case "list_files":
if (partialArgs.path !== undefined) {
nativeArgs = {
path: partialArgs.path,
recursive: this.coerceOptionalBoolean(partialArgs.recursive),
}
}
break
case "new_task":
if (partialArgs.mode !== undefined || partialArgs.message !== undefined) {
nativeArgs = {
mode: partialArgs.mode,
message: partialArgs.message,
todos: partialArgs.todos,
}
}
break
default:
break
}
const result: ToolUse = {
type: "tool_use" as const,
name,
params,
partial,
nativeArgs,
}
// Preserve original name for API history when an alias was used
if (originalName) {
result.originalName = originalName
}
// Track legacy format usage for telemetry
if (usedLegacyFormat) {
result.usedLegacyFormat = true
}
return result
}
/**
* Convert a native tool call chunk to a ToolUse object.
*
* @param toolCall - The native tool call from the API stream
* @returns A properly typed ToolUse object
*/
public static parseToolCall<TName extends ToolName>(toolCall: {
id: string
name: TName
arguments: string
}): ToolUse<TName> | McpToolUse | null {
// Check if this is a dynamic MCP tool (mcp--serverName--toolName)
// Also handle models that output underscores instead of hyphens (mcp__serverName__toolName)
const mcpPrefix = MCP_TOOL_PREFIX + MCP_TOOL_SEPARATOR
if (typeof toolCall.name === "string") {
// Normalize the tool name to handle models that output underscores instead of hyphens
const normalizedName = normalizeMcpToolName(toolCall.name)
if (normalizedName.startsWith(mcpPrefix)) {
// Pass the original tool call but with normalized name for parsing
return this.parseDynamicMcpTool({ ...toolCall, name: normalizedName })
}
}
// Resolve tool alias to canonical name
const resolvedName = resolveToolAlias(toolCall.name as string) as TName
// Validate tool name (after alias resolution).
if (!toolNames.includes(resolvedName as ToolName) && !customToolRegistry.has(resolvedName)) {
console.error(`Invalid tool name: ${toolCall.name} (resolved: ${resolvedName})`)
console.error(`Valid tool names:`, toolNames)
return null
}
try {
// Parse the arguments JSON string
const args = toolCall.arguments === "" ? {} : JSON.parse(toolCall.arguments)
// Build stringified params for display/logging.
// Tool execution MUST use nativeArgs (typed) and does not support legacy fallbacks.
const params: Partial<Record<ToolParamName, string>> = {}
for (const [key, value] of Object.entries(args)) {
// Validate parameter name
if (!toolParamNames.includes(key as ToolParamName) && !customToolRegistry.has(resolvedName)) {
console.warn(`Unknown parameter '${key}' for tool '${resolvedName}'`)
console.warn(`Valid param names:`, toolParamNames)
continue
}
// Convert to string for legacy params format
const stringValue = typeof value === "string" ? value : JSON.stringify(value)
params[key as ToolParamName] = stringValue
}
// Build typed nativeArgs for tool execution.
// Each case validates the minimum required parameters and constructs a properly typed
// nativeArgs object. If validation fails, we treat the tool call as invalid and fail fast.
let nativeArgs: NativeArgsFor<TName> | undefined = undefined
// Track if legacy format was used (for telemetry)
let usedLegacyFormat = false
switch (resolvedName) {
case "read_file":
// Check for legacy format first: { files: [...] }
// Handle both array and stringified array (some models double-stringify)
if (args.files !== undefined) {
let filesArray: unknown[] | null = null
if (Array.isArray(args.files)) {
filesArray = args.files
} else if (typeof args.files === "string") {
// Handle double-stringified case: files is a string containing JSON array
try {
const parsed = JSON.parse(args.files)
if (Array.isArray(parsed)) {
filesArray = parsed
}
} catch {
// Not valid JSON, ignore
}
}
if (filesArray && filesArray.length > 0) {
usedLegacyFormat = true
nativeArgs = {
files: this.convertFileEntries(filesArray),
_legacyFormat: true as const,
} as NativeArgsFor<TName>
}
}
// New format: { path: "...", mode: "..." }
if (!nativeArgs && args.path !== undefined) {
nativeArgs = {
path: args.path,
mode: args.mode,
offset: this.coerceOptionalNumber(args.offset),
limit: this.coerceOptionalNumber(args.limit),
indentation:
args.indentation && typeof args.indentation === "object"
? {
anchor_line: this.coerceOptionalNumber(args.indentation.anchor_line),
max_levels: this.coerceOptionalNumber(args.indentation.max_levels),
max_lines: this.coerceOptionalNumber(args.indentation.max_lines),
include_siblings: this.coerceOptionalBoolean(
args.indentation.include_siblings,
),
include_header: this.coerceOptionalBoolean(args.indentation.include_header),
}
: undefined,
} as NativeArgsFor<TName>
}
break
case "attempt_completion":
if (args.result) {
nativeArgs = { result: args.result } as NativeArgsFor<TName>
}
break
case "execute_command":
if (args.command) {
nativeArgs = {
command: args.command,
cwd: args.cwd,
timeout: args.timeout,
} as NativeArgsFor<TName>
}
break
case "apply_diff":
if (args.path !== undefined && args.diff !== undefined) {
nativeArgs = {
path: args.path,
diff: args.diff,
} as NativeArgsFor<TName>
}
break
case "edit":
case "search_and_replace":
if (
args.file_path !== undefined &&
args.old_string !== undefined &&
args.new_string !== undefined
) {
nativeArgs = {
file_path: args.file_path,
old_string: args.old_string,
new_string: args.new_string,
replace_all: this.coerceOptionalBoolean(args.replace_all),
} as NativeArgsFor<TName>
}
break
case "ask_followup_question":
if (args.question !== undefined && args.follow_up !== undefined) {
nativeArgs = {
question: args.question,
follow_up: args.follow_up,
} as NativeArgsFor<TName>
}
break
case "codebase_search":
if (args.query !== undefined) {
nativeArgs = {
query: args.query,
path: args.path,
} as NativeArgsFor<TName>
}
break
case "generate_image":
if (args.prompt !== undefined && args.path !== undefined) {
nativeArgs = {
prompt: args.prompt,
path: args.path,
image: args.image,
} as NativeArgsFor<TName>
}
break
case "run_slash_command":
if (args.command !== undefined) {
nativeArgs = {
command: args.command,
args: args.args,
} as NativeArgsFor<TName>
}
break
case "skill":
if (args.skill !== undefined) {
nativeArgs = {
skill: args.skill,
args: args.args,
} as NativeArgsFor<TName>
}
break
case "search_files":
if (args.path !== undefined && args.regex !== undefined) {
nativeArgs = {
path: args.path,
regex: args.regex,
file_pattern: args.file_pattern,
} as NativeArgsFor<TName>
}
break
case "switch_mode":
if (args.mode_slug !== undefined && args.reason !== undefined) {
nativeArgs = {
mode_slug: args.mode_slug,
reason: args.reason,
} as NativeArgsFor<TName>
}
break
case "update_todo_list":
if (args.todos !== undefined) {
nativeArgs = {
todos: args.todos,
} as NativeArgsFor<TName>
}
break
case "read_command_output":
if (args.artifact_id !== undefined) {
nativeArgs = {
artifact_id: args.artifact_id,
search: args.search,
offset: args.offset,
limit: args.limit,
} as NativeArgsFor<TName>
}
break
case "write_to_file":
if (args.path !== undefined && args.content !== undefined) {
nativeArgs = {
path: args.path,
content: args.content,
} as NativeArgsFor<TName>
}
break
case "use_mcp_tool":
if (args.server_name !== undefined && args.tool_name !== undefined) {
nativeArgs = {
server_name: args.server_name,
tool_name: args.tool_name,
arguments: args.arguments,
} as NativeArgsFor<TName>
}
break
case "delegate_to_agent":
if (args.agent_name !== undefined && args.message !== undefined) {
nativeArgs = {
agent_name: args.agent_name,
message: args.message,
} as NativeArgsFor<TName>
}
break
case "access_mcp_resource":
if (args.server_name !== undefined && args.uri !== undefined) {
nativeArgs = {
server_name: args.server_name,
uri: args.uri,
} as NativeArgsFor<TName>
}
break
case "apply_patch":
if (args.patch !== undefined) {
nativeArgs = {
patch: args.patch,
} as NativeArgsFor<TName>
}
break
case "search_replace":
if (
args.file_path !== undefined &&
args.old_string !== undefined &&
args.new_string !== undefined
) {
nativeArgs = {
file_path: args.file_path,
old_string: args.old_string,
new_string: args.new_string,
} as NativeArgsFor<TName>
}
break
case "edit_file":
if (
args.file_path !== undefined &&
args.old_string !== undefined &&
args.new_string !== undefined
) {
nativeArgs = {
file_path: args.file_path,
old_string: args.old_string,
new_string: args.new_string,
expected_replacements: args.expected_replacements,
} as NativeArgsFor<TName>
}
break
case "list_files":
if (args.path !== undefined) {
nativeArgs = {
path: args.path,
recursive: this.coerceOptionalBoolean(args.recursive),
} as NativeArgsFor<TName>
}
break
case "new_task":
if (args.mode !== undefined && args.message !== undefined) {
nativeArgs = {
mode: args.mode,