token-pilot 0.16.2 → 0.18.0

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.
Files changed (34) hide show
  1. package/CHANGELOG.md +33 -0
  2. package/dist/config/defaults.js +5 -0
  3. package/dist/core/context-registry.d.ts +4 -0
  4. package/dist/core/context-registry.js +13 -0
  5. package/dist/core/validation.d.ts +6 -0
  6. package/dist/core/validation.js +25 -2
  7. package/dist/formatters/structure.d.ts +1 -0
  8. package/dist/formatters/structure.js +48 -2
  9. package/dist/handlers/csv-sections.d.ts +35 -0
  10. package/dist/handlers/csv-sections.js +129 -0
  11. package/dist/handlers/find-usages.js +65 -13
  12. package/dist/handlers/json-sections.d.ts +17 -0
  13. package/dist/handlers/json-sections.js +66 -0
  14. package/dist/handlers/markdown-sections.d.ts +15 -0
  15. package/dist/handlers/markdown-sections.js +49 -0
  16. package/dist/handlers/non-code.js +48 -11
  17. package/dist/handlers/read-for-edit.d.ts +4 -1
  18. package/dist/handlers/read-for-edit.js +113 -2
  19. package/dist/handlers/read-section.d.ts +12 -0
  20. package/dist/handlers/read-section.js +96 -0
  21. package/dist/handlers/read-symbol.d.ts +1 -0
  22. package/dist/handlers/read-symbol.js +20 -4
  23. package/dist/handlers/smart-read-many.js +9 -0
  24. package/dist/handlers/smart-read.d.ts +1 -0
  25. package/dist/handlers/smart-read.js +57 -0
  26. package/dist/handlers/symbol-display-constants.d.ts +10 -0
  27. package/dist/handlers/symbol-display-constants.js +10 -0
  28. package/dist/handlers/yaml-sections.d.ts +17 -0
  29. package/dist/handlers/yaml-sections.js +46 -0
  30. package/dist/server/tool-definitions.d.ts +161 -16
  31. package/dist/server/tool-definitions.js +53 -16
  32. package/dist/server.js +19 -2
  33. package/dist/types.d.ts +6 -0
  34. package/package.json +1 -1
@@ -0,0 +1,46 @@
1
+ /**
2
+ * YAML section parser — parses top-level keys with line ranges.
3
+ */
4
+ /**
5
+ * Parse YAML into sections based on top-level keys.
6
+ * A top-level key is a key at indent level 0.
7
+ */
8
+ export function parseYamlSections(content) {
9
+ if (!content.trim())
10
+ return [];
11
+ const lines = content.split('\n');
12
+ const topKeys = [];
13
+ for (let i = 0; i < lines.length; i++) {
14
+ const line = lines[i];
15
+ // Skip comments and empty lines
16
+ if (!line.trim() || line.trim().startsWith('#'))
17
+ continue;
18
+ // Top-level key: starts at column 0, has format "key:" or "key: value"
19
+ const match = line.match(/^([a-zA-Z_][a-zA-Z0-9_.-]*):/);
20
+ if (match) {
21
+ topKeys.push({ key: match[1], line: i + 1 });
22
+ }
23
+ }
24
+ if (topKeys.length === 0)
25
+ return [];
26
+ const sections = [];
27
+ for (let i = 0; i < topKeys.length; i++) {
28
+ const start = topKeys[i].line;
29
+ const end = i + 1 < topKeys.length ? topKeys[i + 1].line - 1 : lines.length;
30
+ sections.push({
31
+ heading: topKeys[i].key,
32
+ startLine: start,
33
+ endLine: end,
34
+ lineCount: end - start + 1,
35
+ });
36
+ }
37
+ return sections;
38
+ }
39
+ export function findYamlSection(sections, heading) {
40
+ const normalized = heading.trim().toLowerCase().replace(/:$/, '');
41
+ return sections.find(s => s.heading.toLowerCase() === normalized);
42
+ }
43
+ export function extractYamlSectionContent(lines, section) {
44
+ return lines.slice(section.startLine - 1, section.endLine).join('\n');
45
+ }
46
+ //# sourceMappingURL=yaml-sections.js.map
@@ -25,24 +25,32 @@ export declare const TOOL_DEFINITIONS: ({
25
25
  type: string;
26
26
  description: string;
27
27
  };
28
+ scope: {
29
+ type: string;
30
+ enum: string[];
31
+ description: string;
32
+ };
28
33
  symbol?: undefined;
29
34
  context_before?: undefined;
30
35
  context_after?: undefined;
31
36
  show?: undefined;
37
+ include_edit_context?: undefined;
32
38
  symbols?: undefined;
33
39
  start_line?: undefined;
34
40
  end_line?: undefined;
41
+ heading?: undefined;
35
42
  context_lines?: undefined;
36
43
  line?: undefined;
37
44
  context?: undefined;
38
45
  include_callers?: undefined;
39
46
  include_tests?: undefined;
40
47
  include_changes?: undefined;
48
+ section?: undefined;
41
49
  paths?: undefined;
42
- scope?: undefined;
43
50
  kind?: undefined;
44
51
  limit?: undefined;
45
52
  lang?: undefined;
53
+ mode?: undefined;
46
54
  include?: undefined;
47
55
  recursive?: undefined;
48
56
  max_depth?: undefined;
@@ -87,23 +95,30 @@ export declare const TOOL_DEFINITIONS: ({
87
95
  enum: string[];
88
96
  description: string;
89
97
  };
98
+ include_edit_context: {
99
+ type: string;
100
+ description: string;
101
+ };
90
102
  show_imports?: undefined;
91
103
  show_docs?: undefined;
92
104
  depth?: undefined;
105
+ scope?: undefined;
93
106
  symbols?: undefined;
94
107
  start_line?: undefined;
95
108
  end_line?: undefined;
109
+ heading?: undefined;
96
110
  context_lines?: undefined;
97
111
  line?: undefined;
98
112
  context?: undefined;
99
113
  include_callers?: undefined;
100
114
  include_tests?: undefined;
101
115
  include_changes?: undefined;
116
+ section?: undefined;
102
117
  paths?: undefined;
103
- scope?: undefined;
104
118
  kind?: undefined;
105
119
  limit?: undefined;
106
120
  lang?: undefined;
121
+ mode?: undefined;
107
122
  include?: undefined;
108
123
  recursive?: undefined;
109
124
  max_depth?: undefined;
@@ -154,20 +169,24 @@ export declare const TOOL_DEFINITIONS: ({
154
169
  show_imports?: undefined;
155
170
  show_docs?: undefined;
156
171
  depth?: undefined;
172
+ scope?: undefined;
157
173
  symbol?: undefined;
174
+ include_edit_context?: undefined;
158
175
  start_line?: undefined;
159
176
  end_line?: undefined;
177
+ heading?: undefined;
160
178
  context_lines?: undefined;
161
179
  line?: undefined;
162
180
  context?: undefined;
163
181
  include_callers?: undefined;
164
182
  include_tests?: undefined;
165
183
  include_changes?: undefined;
184
+ section?: undefined;
166
185
  paths?: undefined;
167
- scope?: undefined;
168
186
  kind?: undefined;
169
187
  limit?: undefined;
170
188
  lang?: undefined;
189
+ mode?: undefined;
171
190
  include?: undefined;
172
191
  recursive?: undefined;
173
192
  max_depth?: undefined;
@@ -206,22 +225,81 @@ export declare const TOOL_DEFINITIONS: ({
206
225
  show_imports?: undefined;
207
226
  show_docs?: undefined;
208
227
  depth?: undefined;
228
+ scope?: undefined;
209
229
  symbol?: undefined;
210
230
  context_before?: undefined;
211
231
  context_after?: undefined;
212
232
  show?: undefined;
233
+ include_edit_context?: undefined;
213
234
  symbols?: undefined;
235
+ heading?: undefined;
214
236
  context_lines?: undefined;
215
237
  line?: undefined;
216
238
  context?: undefined;
217
239
  include_callers?: undefined;
218
240
  include_tests?: undefined;
219
241
  include_changes?: undefined;
242
+ section?: undefined;
220
243
  paths?: undefined;
244
+ kind?: undefined;
245
+ limit?: undefined;
246
+ lang?: undefined;
247
+ mode?: undefined;
248
+ include?: undefined;
249
+ recursive?: undefined;
250
+ max_depth?: undefined;
251
+ verbose?: undefined;
252
+ module?: undefined;
253
+ export_only?: undefined;
254
+ check?: undefined;
255
+ pattern?: undefined;
256
+ name?: undefined;
257
+ ref?: undefined;
258
+ count?: undefined;
259
+ command?: undefined;
260
+ runner?: undefined;
261
+ timeout?: undefined;
262
+ };
263
+ required: string[];
264
+ };
265
+ } | {
266
+ name: string;
267
+ description: string;
268
+ inputSchema: {
269
+ type: "object";
270
+ properties: {
271
+ path: {
272
+ type: string;
273
+ description: string;
274
+ };
275
+ heading: {
276
+ type: string;
277
+ description: string;
278
+ };
279
+ show_imports?: undefined;
280
+ show_docs?: undefined;
281
+ depth?: undefined;
221
282
  scope?: undefined;
283
+ symbol?: undefined;
284
+ context_before?: undefined;
285
+ context_after?: undefined;
286
+ show?: undefined;
287
+ include_edit_context?: undefined;
288
+ symbols?: undefined;
289
+ start_line?: undefined;
290
+ end_line?: undefined;
291
+ context_lines?: undefined;
292
+ line?: undefined;
293
+ context?: undefined;
294
+ include_callers?: undefined;
295
+ include_tests?: undefined;
296
+ include_changes?: undefined;
297
+ section?: undefined;
298
+ paths?: undefined;
222
299
  kind?: undefined;
223
300
  limit?: undefined;
224
301
  lang?: undefined;
302
+ mode?: undefined;
225
303
  include?: undefined;
226
304
  recursive?: undefined;
227
305
  max_depth?: undefined;
@@ -256,23 +334,27 @@ export declare const TOOL_DEFINITIONS: ({
256
334
  show_imports?: undefined;
257
335
  show_docs?: undefined;
258
336
  depth?: undefined;
337
+ scope?: undefined;
259
338
  symbol?: undefined;
260
339
  context_before?: undefined;
261
340
  context_after?: undefined;
262
341
  show?: undefined;
342
+ include_edit_context?: undefined;
263
343
  symbols?: undefined;
264
344
  start_line?: undefined;
265
345
  end_line?: undefined;
346
+ heading?: undefined;
266
347
  line?: undefined;
267
348
  context?: undefined;
268
349
  include_callers?: undefined;
269
350
  include_tests?: undefined;
270
351
  include_changes?: undefined;
352
+ section?: undefined;
271
353
  paths?: undefined;
272
- scope?: undefined;
273
354
  kind?: undefined;
274
355
  limit?: undefined;
275
356
  lang?: undefined;
357
+ mode?: undefined;
276
358
  include?: undefined;
277
359
  recursive?: undefined;
278
360
  max_depth?: undefined;
@@ -331,20 +413,27 @@ export declare const TOOL_DEFINITIONS: ({
331
413
  type: string;
332
414
  description: string;
333
415
  };
416
+ section: {
417
+ type: string;
418
+ description: string;
419
+ };
334
420
  show_imports?: undefined;
335
421
  show_docs?: undefined;
336
422
  depth?: undefined;
423
+ scope?: undefined;
337
424
  context_before?: undefined;
338
425
  context_after?: undefined;
339
426
  show?: undefined;
427
+ include_edit_context?: undefined;
340
428
  start_line?: undefined;
341
429
  end_line?: undefined;
430
+ heading?: undefined;
342
431
  context_lines?: undefined;
343
432
  paths?: undefined;
344
- scope?: undefined;
345
433
  kind?: undefined;
346
434
  limit?: undefined;
347
435
  lang?: undefined;
436
+ mode?: undefined;
348
437
  include?: undefined;
349
438
  recursive?: undefined;
350
439
  max_depth?: undefined;
@@ -379,23 +468,27 @@ export declare const TOOL_DEFINITIONS: ({
379
468
  show_imports?: undefined;
380
469
  show_docs?: undefined;
381
470
  depth?: undefined;
471
+ scope?: undefined;
382
472
  symbol?: undefined;
383
473
  context_before?: undefined;
384
474
  context_after?: undefined;
385
475
  show?: undefined;
476
+ include_edit_context?: undefined;
386
477
  symbols?: undefined;
387
478
  start_line?: undefined;
388
479
  end_line?: undefined;
480
+ heading?: undefined;
389
481
  context_lines?: undefined;
390
482
  line?: undefined;
391
483
  context?: undefined;
392
484
  include_callers?: undefined;
393
485
  include_tests?: undefined;
394
486
  include_changes?: undefined;
395
- scope?: undefined;
487
+ section?: undefined;
396
488
  kind?: undefined;
397
489
  limit?: undefined;
398
490
  lang?: undefined;
491
+ mode?: undefined;
399
492
  include?: undefined;
400
493
  recursive?: undefined;
401
494
  max_depth?: undefined;
@@ -445,6 +538,11 @@ export declare const TOOL_DEFINITIONS: ({
445
538
  type: string;
446
539
  description: string;
447
540
  };
541
+ mode: {
542
+ type: string;
543
+ enum: string[];
544
+ description: string;
545
+ };
448
546
  path?: undefined;
449
547
  show_imports?: undefined;
450
548
  show_docs?: undefined;
@@ -452,14 +550,17 @@ export declare const TOOL_DEFINITIONS: ({
452
550
  context_before?: undefined;
453
551
  context_after?: undefined;
454
552
  show?: undefined;
553
+ include_edit_context?: undefined;
455
554
  symbols?: undefined;
456
555
  start_line?: undefined;
457
556
  end_line?: undefined;
557
+ heading?: undefined;
458
558
  line?: undefined;
459
559
  context?: undefined;
460
560
  include_callers?: undefined;
461
561
  include_tests?: undefined;
462
562
  include_changes?: undefined;
563
+ section?: undefined;
463
564
  paths?: undefined;
464
565
  include?: undefined;
465
566
  recursive?: undefined;
@@ -496,24 +597,28 @@ export declare const TOOL_DEFINITIONS: ({
496
597
  show_imports?: undefined;
497
598
  show_docs?: undefined;
498
599
  depth?: undefined;
600
+ scope?: undefined;
499
601
  symbol?: undefined;
500
602
  context_before?: undefined;
501
603
  context_after?: undefined;
502
604
  show?: undefined;
605
+ include_edit_context?: undefined;
503
606
  symbols?: undefined;
504
607
  start_line?: undefined;
505
608
  end_line?: undefined;
609
+ heading?: undefined;
506
610
  context_lines?: undefined;
507
611
  line?: undefined;
508
612
  context?: undefined;
509
613
  include_callers?: undefined;
510
614
  include_tests?: undefined;
511
615
  include_changes?: undefined;
616
+ section?: undefined;
512
617
  paths?: undefined;
513
- scope?: undefined;
514
618
  kind?: undefined;
515
619
  limit?: undefined;
516
620
  lang?: undefined;
621
+ mode?: undefined;
517
622
  recursive?: undefined;
518
623
  max_depth?: undefined;
519
624
  verbose?: undefined;
@@ -543,24 +648,28 @@ export declare const TOOL_DEFINITIONS: ({
543
648
  show_imports?: undefined;
544
649
  show_docs?: undefined;
545
650
  depth?: undefined;
651
+ scope?: undefined;
546
652
  symbol?: undefined;
547
653
  context_before?: undefined;
548
654
  context_after?: undefined;
549
655
  show?: undefined;
656
+ include_edit_context?: undefined;
550
657
  symbols?: undefined;
551
658
  start_line?: undefined;
552
659
  end_line?: undefined;
660
+ heading?: undefined;
553
661
  context_lines?: undefined;
554
662
  line?: undefined;
555
663
  context?: undefined;
556
664
  include_callers?: undefined;
557
665
  include_tests?: undefined;
558
666
  include_changes?: undefined;
667
+ section?: undefined;
559
668
  paths?: undefined;
560
- scope?: undefined;
561
669
  kind?: undefined;
562
670
  limit?: undefined;
563
671
  lang?: undefined;
672
+ mode?: undefined;
564
673
  include?: undefined;
565
674
  recursive?: undefined;
566
675
  max_depth?: undefined;
@@ -599,24 +708,28 @@ export declare const TOOL_DEFINITIONS: ({
599
708
  show_imports?: undefined;
600
709
  show_docs?: undefined;
601
710
  depth?: undefined;
711
+ scope?: undefined;
602
712
  symbol?: undefined;
603
713
  context_before?: undefined;
604
714
  context_after?: undefined;
605
715
  show?: undefined;
716
+ include_edit_context?: undefined;
606
717
  symbols?: undefined;
607
718
  start_line?: undefined;
608
719
  end_line?: undefined;
720
+ heading?: undefined;
609
721
  context_lines?: undefined;
610
722
  line?: undefined;
611
723
  context?: undefined;
612
724
  include_callers?: undefined;
613
725
  include_tests?: undefined;
614
726
  include_changes?: undefined;
727
+ section?: undefined;
615
728
  paths?: undefined;
616
- scope?: undefined;
617
729
  kind?: undefined;
618
730
  limit?: undefined;
619
731
  lang?: undefined;
732
+ mode?: undefined;
620
733
  include?: undefined;
621
734
  verbose?: undefined;
622
735
  module?: undefined;
@@ -646,24 +759,28 @@ export declare const TOOL_DEFINITIONS: ({
646
759
  show_imports?: undefined;
647
760
  show_docs?: undefined;
648
761
  depth?: undefined;
762
+ scope?: undefined;
649
763
  symbol?: undefined;
650
764
  context_before?: undefined;
651
765
  context_after?: undefined;
652
766
  show?: undefined;
767
+ include_edit_context?: undefined;
653
768
  symbols?: undefined;
654
769
  start_line?: undefined;
655
770
  end_line?: undefined;
771
+ heading?: undefined;
656
772
  context_lines?: undefined;
657
773
  line?: undefined;
658
774
  context?: undefined;
659
775
  include_callers?: undefined;
660
776
  include_tests?: undefined;
661
777
  include_changes?: undefined;
778
+ section?: undefined;
662
779
  paths?: undefined;
663
- scope?: undefined;
664
780
  kind?: undefined;
665
781
  limit?: undefined;
666
782
  lang?: undefined;
783
+ mode?: undefined;
667
784
  include?: undefined;
668
785
  recursive?: undefined;
669
786
  max_depth?: undefined;
@@ -702,23 +819,27 @@ export declare const TOOL_DEFINITIONS: ({
702
819
  show_imports?: undefined;
703
820
  show_docs?: undefined;
704
821
  depth?: undefined;
822
+ scope?: undefined;
705
823
  symbol?: undefined;
706
824
  context_before?: undefined;
707
825
  context_after?: undefined;
708
826
  show?: undefined;
827
+ include_edit_context?: undefined;
709
828
  symbols?: undefined;
710
829
  start_line?: undefined;
711
830
  end_line?: undefined;
831
+ heading?: undefined;
712
832
  context_lines?: undefined;
713
833
  line?: undefined;
714
834
  context?: undefined;
715
835
  include_callers?: undefined;
716
836
  include_tests?: undefined;
717
837
  include_changes?: undefined;
838
+ section?: undefined;
718
839
  paths?: undefined;
719
- scope?: undefined;
720
840
  kind?: undefined;
721
841
  lang?: undefined;
842
+ mode?: undefined;
722
843
  include?: undefined;
723
844
  recursive?: undefined;
724
845
  max_depth?: undefined;
@@ -765,22 +886,26 @@ export declare const TOOL_DEFINITIONS: ({
765
886
  show_imports?: undefined;
766
887
  show_docs?: undefined;
767
888
  depth?: undefined;
889
+ scope?: undefined;
768
890
  symbol?: undefined;
769
891
  context_before?: undefined;
770
892
  context_after?: undefined;
771
893
  show?: undefined;
894
+ include_edit_context?: undefined;
772
895
  symbols?: undefined;
773
896
  start_line?: undefined;
774
897
  end_line?: undefined;
898
+ heading?: undefined;
775
899
  context_lines?: undefined;
776
900
  line?: undefined;
777
901
  context?: undefined;
778
902
  include_callers?: undefined;
779
903
  include_tests?: undefined;
780
904
  include_changes?: undefined;
905
+ section?: undefined;
781
906
  paths?: undefined;
782
- scope?: undefined;
783
907
  kind?: undefined;
908
+ mode?: undefined;
784
909
  include?: undefined;
785
910
  recursive?: undefined;
786
911
  max_depth?: undefined;
@@ -814,24 +939,28 @@ export declare const TOOL_DEFINITIONS: ({
814
939
  show_imports?: undefined;
815
940
  show_docs?: undefined;
816
941
  depth?: undefined;
942
+ scope?: undefined;
817
943
  symbol?: undefined;
818
944
  context_before?: undefined;
819
945
  context_after?: undefined;
820
946
  show?: undefined;
947
+ include_edit_context?: undefined;
821
948
  symbols?: undefined;
822
949
  start_line?: undefined;
823
950
  end_line?: undefined;
951
+ heading?: undefined;
824
952
  context_lines?: undefined;
825
953
  line?: undefined;
826
954
  context?: undefined;
827
955
  include_callers?: undefined;
828
956
  include_tests?: undefined;
829
957
  include_changes?: undefined;
958
+ section?: undefined;
830
959
  paths?: undefined;
831
- scope?: undefined;
832
960
  kind?: undefined;
833
961
  limit?: undefined;
834
962
  lang?: undefined;
963
+ mode?: undefined;
835
964
  include?: undefined;
836
965
  recursive?: undefined;
837
966
  max_depth?: undefined;
@@ -873,19 +1002,23 @@ export declare const TOOL_DEFINITIONS: ({
873
1002
  context_before?: undefined;
874
1003
  context_after?: undefined;
875
1004
  show?: undefined;
1005
+ include_edit_context?: undefined;
876
1006
  symbols?: undefined;
877
1007
  start_line?: undefined;
878
1008
  end_line?: undefined;
1009
+ heading?: undefined;
879
1010
  context_lines?: undefined;
880
1011
  line?: undefined;
881
1012
  context?: undefined;
882
1013
  include_callers?: undefined;
883
1014
  include_tests?: undefined;
884
1015
  include_changes?: undefined;
1016
+ section?: undefined;
885
1017
  paths?: undefined;
886
1018
  kind?: undefined;
887
1019
  limit?: undefined;
888
1020
  lang?: undefined;
1021
+ mode?: undefined;
889
1022
  include?: undefined;
890
1023
  recursive?: undefined;
891
1024
  max_depth?: undefined;
@@ -923,24 +1056,28 @@ export declare const TOOL_DEFINITIONS: ({
923
1056
  show_imports?: undefined;
924
1057
  show_docs?: undefined;
925
1058
  depth?: undefined;
1059
+ scope?: undefined;
926
1060
  symbol?: undefined;
927
1061
  context_before?: undefined;
928
1062
  context_after?: undefined;
929
1063
  show?: undefined;
1064
+ include_edit_context?: undefined;
930
1065
  symbols?: undefined;
931
1066
  start_line?: undefined;
932
1067
  end_line?: undefined;
1068
+ heading?: undefined;
933
1069
  context_lines?: undefined;
934
1070
  line?: undefined;
935
1071
  context?: undefined;
936
1072
  include_callers?: undefined;
937
1073
  include_tests?: undefined;
938
1074
  include_changes?: undefined;
1075
+ section?: undefined;
939
1076
  paths?: undefined;
940
- scope?: undefined;
941
1077
  kind?: undefined;
942
1078
  limit?: undefined;
943
1079
  lang?: undefined;
1080
+ mode?: undefined;
944
1081
  recursive?: undefined;
945
1082
  max_depth?: undefined;
946
1083
  verbose?: undefined;
@@ -978,24 +1115,28 @@ export declare const TOOL_DEFINITIONS: ({
978
1115
  show_imports?: undefined;
979
1116
  show_docs?: undefined;
980
1117
  depth?: undefined;
1118
+ scope?: undefined;
981
1119
  symbol?: undefined;
982
1120
  context_before?: undefined;
983
1121
  context_after?: undefined;
984
1122
  show?: undefined;
1123
+ include_edit_context?: undefined;
985
1124
  symbols?: undefined;
986
1125
  start_line?: undefined;
987
1126
  end_line?: undefined;
1127
+ heading?: undefined;
988
1128
  context_lines?: undefined;
989
1129
  line?: undefined;
990
1130
  context?: undefined;
991
1131
  include_callers?: undefined;
992
1132
  include_tests?: undefined;
993
1133
  include_changes?: undefined;
1134
+ section?: undefined;
994
1135
  paths?: undefined;
995
- scope?: undefined;
996
1136
  kind?: undefined;
997
1137
  limit?: undefined;
998
1138
  lang?: undefined;
1139
+ mode?: undefined;
999
1140
  include?: undefined;
1000
1141
  recursive?: undefined;
1001
1142
  max_depth?: undefined;
@@ -1034,24 +1175,28 @@ export declare const TOOL_DEFINITIONS: ({
1034
1175
  show_imports?: undefined;
1035
1176
  show_docs?: undefined;
1036
1177
  depth?: undefined;
1178
+ scope?: undefined;
1037
1179
  symbol?: undefined;
1038
1180
  context_before?: undefined;
1039
1181
  context_after?: undefined;
1040
1182
  show?: undefined;
1183
+ include_edit_context?: undefined;
1041
1184
  symbols?: undefined;
1042
1185
  start_line?: undefined;
1043
1186
  end_line?: undefined;
1187
+ heading?: undefined;
1044
1188
  context_lines?: undefined;
1045
1189
  line?: undefined;
1046
1190
  context?: undefined;
1047
1191
  include_callers?: undefined;
1048
1192
  include_tests?: undefined;
1049
1193
  include_changes?: undefined;
1194
+ section?: undefined;
1050
1195
  paths?: undefined;
1051
- scope?: undefined;
1052
1196
  kind?: undefined;
1053
1197
  limit?: undefined;
1054
1198
  lang?: undefined;
1199
+ mode?: undefined;
1055
1200
  include?: undefined;
1056
1201
  recursive?: undefined;
1057
1202
  max_depth?: undefined;