-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtools.json
More file actions
1533 lines (1533 loc) · 49.8 KB
/
tools.json
File metadata and controls
1533 lines (1533 loc) · 49.8 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
{
"tools": [
{
"name": "XcodeMakeDir",
"title": "Create Directory",
"description": "Creates directories and groups in the Xcode project structure.",
"inputSchema": {
"properties": {
"directoryPath": {
"description": "Project navigator relative path for the directory to create",
"type": "string"
},
"tabIdentifier": {
"description": "The workspace tab identifier",
"type": "string"
}
},
"required": [
"tabIdentifier",
"directoryPath"
],
"type": "object"
},
"outputSchema": {
"properties": {
"createdPath": {
"description": "The path of the created directory",
"type": "string"
},
"message": {
"description": "Result message describing the operation",
"type": "string"
},
"success": {
"description": "Whether the directory creation succeeded",
"type": "boolean"
}
},
"required": [
"success",
"message"
],
"type": "object"
}
},
{
"name": "XcodeGrep",
"title": "Search Content",
"description": "Searches for text patterns in files within the Xcode project structure using regex. Works on Xcode project organization, not filesystem structure. CRITICAL: Must include a 'pattern' argument - this tool will fail without it.",
"inputSchema": {
"properties": {
"glob": {
"description": "Only search files matching this pattern",
"type": "string"
},
"headLimit": {
"description": "Stop after N results",
"type": "integer"
},
"ignoreCase": {
"description": "Ignore case when matching",
"type": "boolean"
},
"linesAfter": {
"description": "Show N lines after each match for context",
"type": "integer"
},
"linesBefore": {
"description": "Show N lines before each match for context",
"type": "integer"
},
"linesContext": {
"description": "Show N lines both before and after each match",
"type": "integer"
},
"multiline": {
"description": "Allow patterns to span multiple lines",
"type": "boolean"
},
"outputMode": {
"description": "What to return: content, files_with_matches, or count (default: files_with_matches)",
"enum": [
"content",
"filesWithMatches",
"count"
],
"type": "string"
},
"path": {
"description": "Where to search - file or directory in project (defaults to root)",
"type": "string"
},
"pattern": {
"description": "Text to search for using regex. REQUIRED: Must include a 'pattern' argument - this tool will fail without it.",
"type": "string"
},
"showLineNumbers": {
"description": "Show line numbers with results (content mode only)",
"type": "boolean"
},
"tabIdentifier": {
"description": "The workspace tab identifier",
"type": "string"
},
"type": {
"description": "Shortcut for common file types (swift, js, py, etc.)",
"type": "string"
}
},
"required": [
"tabIdentifier",
"pattern"
],
"type": "object"
},
"outputSchema": {
"properties": {
"matchCount": {
"description": "Total number of matches found",
"type": "integer"
},
"message": {
"description": "Additional information about the search results",
"type": "string"
},
"pattern": {
"description": "The pattern that was searched for",
"type": "string"
},
"results": {
"description": "Search results based on output mode",
"items": {
"type": "string"
},
"type": "array"
},
"searchPath": {
"description": "The project path that was searched",
"type": "string"
},
"truncated": {
"description": "Whether results were truncated due to limits",
"type": "boolean"
}
},
"required": [
"results",
"pattern",
"searchPath",
"matchCount",
"truncated"
],
"type": "object"
}
},
{
"name": "BuildProject",
"title": "Build Project",
"description": "Builds an Xcode project and waits until the build completes.",
"inputSchema": {
"properties": {
"tabIdentifier": {
"description": "The workspace tab identifier",
"type": "string"
}
},
"required": [
"tabIdentifier"
],
"type": "object"
},
"outputSchema": {
"properties": {
"buildResult": {
"description": "The message indicating the result of the build operation",
"type": "string"
},
"elapsedTime": {
"description": "The time it took to finish the build, in seconds",
"type": "number"
},
"errors": {
"description": "List of build errors",
"items": {
"properties": {
"classification": {
"description": "The type of error (error, warning, etc.)",
"type": "string"
},
"filePath": {
"description": "The file path where the error occurred",
"type": "string"
},
"lineNumber": {
"description": "The line number where the error occurred",
"type": "integer"
},
"message": {
"description": "The error message",
"type": "string"
}
},
"required": [
"classification",
"message"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"buildResult",
"errors"
],
"type": "object"
}
},
{
"name": "DocumentationSearch",
"title": "DocumentationSearch",
"description": "Searches Apple Developer Documentation using semantic matching.",
"inputSchema": {
"properties": {
"frameworks": {
"description": "Framework(s) to search in. Searches all frameworks if not specified.",
"items": {
"type": "string"
},
"type": "array"
},
"query": {
"description": "The search query",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
},
"outputSchema": {
"properties": {
"documents": {
"description": "The documents most relevant to the search query",
"items": {
"properties": {
"contents": {
"description": "The document contents",
"type": "string"
},
"score": {
"description": "The matching score of the document",
"type": "number"
},
"title": {
"description": "The document title",
"type": "string"
},
"uri": {
"description": "The document uri",
"type": "string"
}
},
"required": [
"title",
"uri",
"contents",
"score"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"documents"
],
"type": "object"
}
},
{
"name": "RunSomeTests",
"title": "Run Some Tests",
"description": "Runs specific tests using the active scheme's active test plan",
"inputSchema": {
"properties": {
"tabIdentifier": {
"description": "The workspace tab identifier",
"type": "string"
},
"tests": {
"description": "Array of test specifiers to run. Each specifier contains 'targetName' and 'testIdentifier' fields. Use GetTestList action to discover available tests and their identifiers, then extract the 'targetName' and 'identifier' fields from the TestActionInfo results to construct TestActionSpecifier objects.",
"items": {
"properties": {
"targetName": {
"description": "The test target name",
"type": "string"
},
"testIdentifier": {
"description": "Test identifier in XCTestIdentifier format",
"type": "string"
}
},
"required": [
"targetName",
"testIdentifier"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"tabIdentifier",
"tests"
],
"type": "object"
},
"outputSchema": {
"properties": {
"activeTestPlanName": {
"description": "Active test plan name",
"type": "string"
},
"counts": {
"description": "Test execution counts",
"properties": {
"expectedFailures": {
"description": "Number of expected failures",
"type": "integer"
},
"failed": {
"description": "Number of failed tests",
"type": "integer"
},
"notRun": {
"description": "Number of tests not run",
"type": "integer"
},
"passed": {
"description": "Number of passed tests",
"type": "integer"
},
"skipped": {
"description": "Number of skipped tests",
"type": "integer"
},
"total": {
"description": "Total test count",
"type": "integer"
}
},
"required": [
"total",
"passed",
"failed",
"skipped",
"expectedFailures",
"notRun"
],
"type": "object"
},
"fullSummaryPath": {
"description": "A text file path containing all test results and complete issue details in textual form",
"type": "string"
},
"message": {
"description": "Additional information about truncation",
"type": "string"
},
"results": {
"description": "Results for each test (truncated at 100, failures shown first)",
"items": {
"properties": {
"displayName": {
"description": "Human-readable test name",
"type": "string"
},
"errors": {
"description": "Error messages",
"items": {
"type": "string"
},
"type": "array"
},
"identifier": {
"description": "Test identifier in XCTestIdentifier format",
"type": "string"
},
"state": {
"description": "Execution state",
"type": "string"
},
"targetName": {
"description": "The test target name",
"type": "string"
}
},
"required": [
"targetName",
"identifier",
"displayName",
"state",
"errors"
],
"type": "object"
},
"type": "array"
},
"schemeName": {
"description": "Active scheme name",
"type": "string"
},
"summary": {
"description": "Test execution summary",
"type": "string"
},
"totalResults": {
"description": "Total number of test results before truncation",
"type": "integer"
},
"truncated": {
"description": "Whether results were truncated due to exceeding 100 results",
"type": "boolean"
}
},
"required": [
"summary",
"counts",
"results",
"schemeName",
"truncated",
"totalResults",
"fullSummaryPath"
],
"type": "object"
}
},
{
"name": "GetBuildLog",
"title": "Get Build Log",
"description": "Gets the log of the current or most recently finished build. You can choose which build log entries to include by specifying the severity of any issues emitted by the build task represented by the entry. You can also filter by message regex pattern or file glob pattern. The response also indicates whether the build is currently in progress.",
"inputSchema": {
"properties": {
"glob": {
"description": "Glob to filter the returned build log entries. Will match against the 'path' field of any emitted issues, as well as against the location of any build task.",
"type": "string"
},
"pattern": {
"description": "Regex to filter the returned build log entries. Will match against the 'message' field of any emitted issues, as well as the task description, command line, and console output of any build tasks.",
"type": "string"
},
"severity": {
"description": "Limit the output of build log entries to those that emitted issues of the specified severity or higher. Valid values in order of decreasing severity are 'error', 'warning', 'remark'. Defaults to 'error'.",
"enum": [
"remark",
"warning",
"error"
],
"type": "string"
},
"tabIdentifier": {
"description": "The workspace tab identifier",
"type": "string"
}
},
"required": [
"tabIdentifier"
],
"type": "object"
},
"outputSchema": {
"properties": {
"buildIsRunning": {
"description": "Indicates whether the build is still running.",
"type": "boolean"
},
"buildLogEntries": {
"description": "The build log entries describing build commands that emitted issues",
"items": {
"properties": {
"buildTask": {
"description": "The build task represented by the log entry",
"type": "string"
},
"emittedIssues": {
"description": "Any issues emitted by the build task represented by the log entry",
"items": {
"properties": {
"line": {
"description": "The line number where the issue was detected, if known",
"type": "integer"
},
"message": {
"description": "The message describing the issue",
"type": "string"
},
"path": {
"description": "The file path where the issue was detected, if any",
"type": "string"
},
"severity": {
"description": "The severity of issue (error, warning, remark)",
"type": "string"
}
},
"required": [
"line",
"severity",
"message"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"emittedIssues"
],
"type": "object"
},
"type": "array"
},
"buildResult": {
"description": "The message indicating the result of the build operation",
"type": "string"
},
"fullLogPath": {
"description": "Path of the full log in textual format, containing the complete command lines and any output from the build tasks",
"type": "string"
},
"message": {
"description": "Optional message with additional information about the search results",
"type": "string"
},
"totalFound": {
"description": "Total number of build log entries before truncation",
"type": "integer"
},
"truncated": {
"description": "Whether results were truncated due to exceeding 100 issues",
"type": "boolean"
}
},
"required": [
"buildResult",
"buildLogEntries",
"buildIsRunning",
"truncated",
"totalFound",
"fullLogPath"
],
"type": "object"
}
},
{
"name": "XcodeListNavigatorIssues",
"title": "List Workspace Issues",
"description": "Lists the currently known issues shown Xcode's Issue Navigator UI in the workspace. These issues include those that have been discovered since the last build, and also issues like package resolution problems and workspace configuration issues. You can filter the issues to include by file name, glob, or severity. Use this tool when you want to list all the users the user can see in the workspace UI.",
"inputSchema": {
"properties": {
"glob": {
"description": "Glob to filter the returned issues. Will match against the 'path' field.",
"type": "string"
},
"pattern": {
"description": "Regex to filter the returned issues. Will match against the 'message' field.",
"type": "string"
},
"severity": {
"description": "Limit the returned issues to those that have the specified severity or higher. Valid values in order of decreasing severity are 'error', 'warning', 'remark'. Defaults to 'error'.",
"type": "string"
},
"tabIdentifier": {
"description": "The workspace tab identifier",
"type": "string"
}
},
"required": [
"tabIdentifier"
],
"type": "object"
},
"outputSchema": {
"properties": {
"issues": {
"description": "The list of current issues matching the input filters",
"items": {
"properties": {
"category": {
"description": "The category of the issue, if known",
"type": "string"
},
"line": {
"description": "The line number where the issue was detected, if known",
"type": "integer"
},
"message": {
"description": "The message describing the issue",
"type": "string"
},
"path": {
"description": "The file path where the issue was detected, if any",
"type": "string"
},
"severity": {
"description": "The severity of issue (error, warning, remark)",
"type": "string"
},
"vitality": {
"description": "Whether an issue from a previous build is known to still be relevant or whether something might have changed since it was emitted (for example if the source file has been edited and it isn't yet known whether that edit fixes the issue). Possible values: (fresh, stale)",
"enum": [
"fresh",
"stale"
],
"type": "string"
}
},
"required": [
"message",
"severity"
],
"type": "object"
},
"type": "array"
},
"message": {
"description": "Optional message with additional information about the search results",
"type": "string"
},
"totalFound": {
"description": "Total number of issues before truncation",
"type": "integer"
},
"truncated": {
"description": "Whether results were truncated due to exceeding 100 issues",
"type": "boolean"
}
},
"required": [
"issues",
"truncated",
"totalFound"
],
"type": "object"
}
},
{
"name": "RenderPreview",
"title": "RenderPreview",
"description": "Builds and renders a Preview and waits until a snapshot of the resulting UI is available.",
"inputSchema": {
"properties": {
"previewDefinitionIndexInFile": {
"description": "The zero based index of the #Preview macro or PreviewProvider struct definition in the source file counting from the top. Defaults to 0, i.e. the first one.",
"type": "integer"
},
"sourceFilePath": {
"description": "The path to the file within the Xcode project organization (e.g., 'ProjectName/Sources/MyFile.swift')",
"type": "string"
},
"tabIdentifier": {
"description": "The workspace tab identifier",
"type": "string"
},
"timeout": {
"description": "The time in seconds to wait for the rendering of the preview to complete. Defaults to 120 seconds.",
"type": "integer"
}
},
"required": [
"tabIdentifier",
"sourceFilePath"
],
"type": "object"
},
"outputSchema": {
"properties": {
"error": {
"description": "An error that occurred during the preview attempt.",
"properties": {
"message": {
"description": "The error message with potential underlying errors included.",
"type": "string"
}
},
"required": [
"message"
],
"type": "object"
},
"previewSnapshotPath": {
"description": "The path to the image snapshot of the requested preview.",
"type": "string"
}
},
"required": [],
"type": "object"
}
},
{
"name": "RunAllTests",
"title": "Run All Tests",
"description": "Runs all tests from the active scheme's active test plan",
"inputSchema": {
"properties": {
"tabIdentifier": {
"description": "The workspace tab identifier",
"type": "string"
}
},
"required": [
"tabIdentifier"
],
"type": "object"
},
"outputSchema": {
"properties": {
"activeTestPlanName": {
"description": "Active test plan name",
"type": "string"
},
"counts": {
"description": "Test execution counts",
"properties": {
"expectedFailures": {
"description": "Number of expected failures",
"type": "integer"
},
"failed": {
"description": "Number of failed tests",
"type": "integer"
},
"notRun": {
"description": "Number of tests not run",
"type": "integer"
},
"passed": {
"description": "Number of passed tests",
"type": "integer"
},
"skipped": {
"description": "Number of skipped tests",
"type": "integer"
},
"total": {
"description": "Total test count",
"type": "integer"
}
},
"required": [
"total",
"passed",
"failed",
"skipped",
"expectedFailures",
"notRun"
],
"type": "object"
},
"fullSummaryPath": {
"description": "A text file path containing all test results and complete issue details in textual form",
"type": "string"
},
"message": {
"description": "Additional information about truncation",
"type": "string"
},
"results": {
"description": "Results for each test (truncated at 100, failures shown first)",
"items": {
"properties": {
"displayName": {
"description": "Human-readable test name",
"type": "string"
},
"errors": {
"description": "Error messages",
"items": {
"type": "string"
},
"type": "array"
},
"identifier": {
"description": "Test identifier in XCTestIdentifier format",
"type": "string"
},
"state": {
"description": "Execution state",
"type": "string"
},
"targetName": {
"description": "The test target name",
"type": "string"
}
},
"required": [
"targetName",
"identifier",
"displayName",
"state",
"errors"
],
"type": "object"
},
"type": "array"
},
"schemeName": {
"description": "Active scheme name",
"type": "string"
},
"summary": {
"description": "Test execution summary",
"type": "string"
},
"totalResults": {
"description": "Total number of test results before truncation",
"type": "integer"
},
"truncated": {
"description": "Whether results were truncated due to exceeding 100 results",
"type": "boolean"
}
},
"required": [
"summary",
"counts",
"results",
"schemeName",
"truncated",
"totalResults",
"fullSummaryPath"
],
"type": "object"
}
},
{
"name": "XcodeUpdate",
"title": "Edit File",
"description": "Edits files in the Xcode project by replacing text content. Works on Xcode project structure paths, not filesystem paths. IMPORTANT: The tool will fail if filePath, oldString, or newString parameters are missing.",
"inputSchema": {
"properties": {
"filePath": {
"description": "REQUIRED: The path to the file to modify within the Xcode project organization (e.g., 'ProjectName/Sources/MyFile.swift')",
"type": "string"
},
"newString": {
"description": "REQUIRED: The text to replace it with, must be different from oldString",
"type": "string"
},
"oldString": {
"description": "REQUIRED: The text to replace",
"type": "string"
},
"replaceAll": {
"description": "Replace all occurrences of oldString (default false)",
"type": "boolean"
},
"tabIdentifier": {
"description": "The workspace tab identifier",
"type": "string"
}
},
"required": [
"tabIdentifier",
"filePath",
"oldString",
"newString"
],
"type": "object"
},
"outputSchema": {
"properties": {
"editsApplied": {
"description": "Number of successful text replacements made",
"type": "integer"
},
"filePath": {
"description": "The path of the file that was edited",
"type": "string"
},
"message": {
"description": "Optional message with additional information about the edit results",
"type": "string"
},
"modifiedContentLength": {
"description": "Length of the file content after editing",
"type": "integer"
},
"originalContentLength": {
"description": "Length of the file content before editing",
"type": "integer"
},
"success": {
"description": "Whether the edit operation completed successfully",
"type": "boolean"
}
},
"required": [
"filePath",
"editsApplied",
"success",
"originalContentLength",
"modifiedContentLength"
],
"type": "object"
}
},
{
"name": "XcodeRead",
"title": "Read",
"description": "Reads the contents of a file within the Xcode project organization. Returns content in cat -n format with line numbers. Supports reading up to 600 lines by default with optional offset and limit parameters for large files.",
"inputSchema": {
"properties": {
"filePath": {
"description": "The path to the file within the Xcode project organization (e.g., 'ProjectName/Sources/MyFile.swift')",
"type": "string"
},
"limit": {
"description": "The number of lines to read (only provide if the file is too large to read at once)",
"type": "integer"
},
"offset": {
"description": "The line number to start reading from (only provide if the file is too large to read at once)",
"type": "integer"
},
"tabIdentifier": {
"description": "The workspace tab identifier",
"type": "string"
}
},
"required": [
"tabIdentifier",
"filePath"
],
"type": "object"
},
"outputSchema": {
"properties": {
"content": {
"description": "The file contents formatted with line numbers (cat -n style)",
"type": "string"
},
"filePath": {
"description": "The project path that was read",
"type": "string"
},
"fileSize": {
"description": "Size of the file in bytes",
"type": "integer"
},
"linesRead": {
"description": "Number of lines actually read",
"type": "integer"
},
"startLine": {
"description": "The line number where reading started",
"type": "integer"
},
"totalLines": {
"description": "Total number of lines in the file",
"type": "integer"
}
},
"required": [
"content",
"filePath",
"totalLines",
"linesRead",
"startLine",
"fileSize"
],
"type": "object"
}
},
{
"name": "XcodeRM",
"title": "Remove File",
"description": "Removes files and directories from the Xcode project structure and optionally deletes the underlying files from the filesystem.",
"inputSchema": {
"properties": {
"deleteFiles": {
"description": "Also move the underlying files to Trash (defaults to true)",
"type": "boolean"
},
"path": {
"description": "The project path to remove (e.g., 'ProjectName/Sources/MyFile.swift')",
"type": "string"
},
"recursive": {
"description": "Remove directories and their contents recursively",
"type": "boolean"
},
"tabIdentifier": {
"description": "The workspace tab identifier",
"type": "string"
}
},
"required": [