@sylix/coworker 2.0.3 → 2.0.7

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 (96) hide show
  1. package/README.md +41 -13
  2. package/dist/agents/defaults/explore.md +24 -0
  3. package/dist/agents/defaults/plan.md +25 -0
  4. package/dist/agents/defaults/review.md +40 -0
  5. package/dist/cli/index.d.ts.map +1 -1
  6. package/dist/cli/index.js +27 -25
  7. package/dist/cli/index.js.map +1 -1
  8. package/dist/commands/WorkflowEngine.d.ts +22 -0
  9. package/dist/commands/WorkflowEngine.d.ts.map +1 -0
  10. package/dist/commands/WorkflowEngine.js +127 -0
  11. package/dist/commands/WorkflowEngine.js.map +1 -0
  12. package/dist/commands/slash/core.d.ts.map +1 -1
  13. package/dist/commands/slash/core.js +37 -2
  14. package/dist/commands/slash/core.js.map +1 -1
  15. package/dist/commands/slash/plugins.d.ts +3 -0
  16. package/dist/commands/slash/plugins.d.ts.map +1 -0
  17. package/dist/commands/slash/plugins.js +139 -0
  18. package/dist/commands/slash/plugins.js.map +1 -0
  19. package/dist/commands/slash/registry.d.ts +5 -1
  20. package/dist/commands/slash/registry.d.ts.map +1 -1
  21. package/dist/commands/slash/registry.js +18 -0
  22. package/dist/commands/slash/registry.js.map +1 -1
  23. package/dist/config/SettingsManager.d.ts +9 -2
  24. package/dist/config/SettingsManager.d.ts.map +1 -1
  25. package/dist/config/SettingsManager.js +44 -28
  26. package/dist/config/SettingsManager.js.map +1 -1
  27. package/dist/core/CoWorkerAgent.d.ts +13 -2
  28. package/dist/core/CoWorkerAgent.d.ts.map +1 -1
  29. package/dist/core/CoWorkerAgent.js +127 -26
  30. package/dist/core/CoWorkerAgent.js.map +1 -1
  31. package/dist/plugins/PluginManager.d.ts +66 -0
  32. package/dist/plugins/PluginManager.d.ts.map +1 -0
  33. package/dist/plugins/PluginManager.js +253 -0
  34. package/dist/plugins/PluginManager.js.map +1 -0
  35. package/dist/services/browser/browser-manager.d.ts +1 -0
  36. package/dist/services/browser/browser-manager.d.ts.map +1 -1
  37. package/dist/services/browser/browser-manager.js +44 -0
  38. package/dist/services/browser/browser-manager.js.map +1 -1
  39. package/dist/services/browser/protocol.d.ts +4 -4
  40. package/dist/services/browser/sandbox/quickjs-sandbox.d.ts.map +1 -1
  41. package/dist/services/browser/sandbox/quickjs-sandbox.js +33 -2
  42. package/dist/services/browser/sandbox/quickjs-sandbox.js.map +1 -1
  43. package/dist/skills/HookAndSkillManager.d.ts.map +1 -1
  44. package/dist/skills/HookAndSkillManager.js +27 -9
  45. package/dist/skills/HookAndSkillManager.js.map +1 -1
  46. package/dist/snapshot/SnapshotManager.d.ts.map +1 -1
  47. package/dist/snapshot/SnapshotManager.js +4 -5
  48. package/dist/snapshot/SnapshotManager.js.map +1 -1
  49. package/dist/tools/CronManager.d.ts +33 -13
  50. package/dist/tools/CronManager.d.ts.map +1 -1
  51. package/dist/tools/CronManager.js +196 -17
  52. package/dist/tools/CronManager.js.map +1 -1
  53. package/dist/tools/NativeTools.d.ts +16 -13
  54. package/dist/tools/NativeTools.d.ts.map +1 -1
  55. package/dist/tools/NativeTools.js +123 -72
  56. package/dist/tools/NativeTools.js.map +1 -1
  57. package/dist/tools/Schemas.d.ts +302 -1
  58. package/dist/tools/Schemas.d.ts.map +1 -1
  59. package/dist/tools/Schemas.js +83 -6
  60. package/dist/tools/Schemas.js.map +1 -1
  61. package/dist/types/modes.d.ts +16 -0
  62. package/dist/types/modes.d.ts.map +1 -0
  63. package/dist/types/modes.js +15 -0
  64. package/dist/types/modes.js.map +1 -0
  65. package/dist/utils/PromptCache.d.ts +27 -0
  66. package/dist/utils/PromptCache.d.ts.map +1 -0
  67. package/dist/utils/PromptCache.js +113 -0
  68. package/dist/utils/PromptCache.js.map +1 -0
  69. package/dist/utils/RuleManager.d.ts +23 -0
  70. package/dist/utils/RuleManager.d.ts.map +1 -0
  71. package/dist/utils/RuleManager.js +115 -0
  72. package/dist/utils/RuleManager.js.map +1 -0
  73. package/dist/utils/character.d.ts +1 -0
  74. package/dist/utils/character.d.ts.map +1 -1
  75. package/dist/utils/character.js +34 -23
  76. package/dist/utils/character.js.map +1 -1
  77. package/dist/utils/inputbar.d.ts +11 -79
  78. package/dist/utils/inputbar.d.ts.map +1 -1
  79. package/dist/utils/inputbar.js +81 -201
  80. package/dist/utils/inputbar.js.map +1 -1
  81. package/dist/utils/memoryManager.d.ts.map +1 -1
  82. package/dist/utils/memoryManager.js +6 -3
  83. package/dist/utils/memoryManager.js.map +1 -1
  84. package/dist/utils/output.d.ts +9 -48
  85. package/dist/utils/output.d.ts.map +1 -1
  86. package/dist/utils/output.js +71 -349
  87. package/dist/utils/output.js.map +1 -1
  88. package/dist/utils/systemPrompt.d.ts +2 -1
  89. package/dist/utils/systemPrompt.d.ts.map +1 -1
  90. package/dist/utils/systemPrompt.js +121 -11
  91. package/dist/utils/systemPrompt.js.map +1 -1
  92. package/dist/utils/welcome.d.ts +5 -1
  93. package/dist/utils/welcome.d.ts.map +1 -1
  94. package/dist/utils/welcome.js +33 -140
  95. package/dist/utils/welcome.js.map +1 -1
  96. package/package.json +4 -4
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * CoWorker Tool Schemas — OpenAI Function Calling format.
3
- * v1.5.2Concise Names & Sylix Branding.
3
+ * v2.0.7Claude Code parity + Sylix Seek Engine
4
4
  */
5
5
  export declare const CoWorkerToolSchemas: ({
6
6
  type: string;
@@ -14,6 +14,14 @@ export declare const CoWorkerToolSchemas: ({
14
14
  type: string;
15
15
  description: string;
16
16
  };
17
+ offset: {
18
+ type: string;
19
+ description: string;
20
+ };
21
+ limit: {
22
+ type: string;
23
+ description: string;
24
+ };
17
25
  content?: undefined;
18
26
  old_string?: undefined;
19
27
  new_string?: undefined;
@@ -26,13 +34,17 @@ export declare const CoWorkerToolSchemas: ({
26
34
  path?: undefined;
27
35
  recursive?: undefined;
28
36
  query?: undefined;
37
+ use_agent?: undefined;
29
38
  url?: undefined;
39
+ questions?: undefined;
30
40
  description?: undefined;
31
41
  todos?: undefined;
32
42
  pid?: undefined;
33
43
  script?: undefined;
44
+ browserName?: undefined;
34
45
  line?: undefined;
35
46
  character?: undefined;
47
+ mode?: undefined;
36
48
  };
37
49
  required: string[];
38
50
  };
@@ -53,6 +65,8 @@ export declare const CoWorkerToolSchemas: ({
53
65
  type: string;
54
66
  description: string;
55
67
  };
68
+ offset?: undefined;
69
+ limit?: undefined;
56
70
  old_string?: undefined;
57
71
  new_string?: undefined;
58
72
  replace_all?: undefined;
@@ -64,13 +78,17 @@ export declare const CoWorkerToolSchemas: ({
64
78
  path?: undefined;
65
79
  recursive?: undefined;
66
80
  query?: undefined;
81
+ use_agent?: undefined;
67
82
  url?: undefined;
83
+ questions?: undefined;
68
84
  description?: undefined;
69
85
  todos?: undefined;
70
86
  pid?: undefined;
71
87
  script?: undefined;
88
+ browserName?: undefined;
72
89
  line?: undefined;
73
90
  character?: undefined;
91
+ mode?: undefined;
74
92
  };
75
93
  required: string[];
76
94
  };
@@ -99,6 +117,8 @@ export declare const CoWorkerToolSchemas: ({
99
117
  type: string;
100
118
  description: string;
101
119
  };
120
+ offset?: undefined;
121
+ limit?: undefined;
102
122
  content?: undefined;
103
123
  edits?: undefined;
104
124
  command?: undefined;
@@ -108,13 +128,17 @@ export declare const CoWorkerToolSchemas: ({
108
128
  path?: undefined;
109
129
  recursive?: undefined;
110
130
  query?: undefined;
131
+ use_agent?: undefined;
111
132
  url?: undefined;
133
+ questions?: undefined;
112
134
  description?: undefined;
113
135
  todos?: undefined;
114
136
  pid?: undefined;
115
137
  script?: undefined;
138
+ browserName?: undefined;
116
139
  line?: undefined;
117
140
  character?: undefined;
141
+ mode?: undefined;
118
142
  };
119
143
  required: string[];
120
144
  };
@@ -149,6 +173,8 @@ export declare const CoWorkerToolSchemas: ({
149
173
  required: string[];
150
174
  };
151
175
  };
176
+ offset?: undefined;
177
+ limit?: undefined;
152
178
  content?: undefined;
153
179
  old_string?: undefined;
154
180
  new_string?: undefined;
@@ -160,13 +186,17 @@ export declare const CoWorkerToolSchemas: ({
160
186
  path?: undefined;
161
187
  recursive?: undefined;
162
188
  query?: undefined;
189
+ use_agent?: undefined;
163
190
  url?: undefined;
191
+ questions?: undefined;
164
192
  description?: undefined;
165
193
  todos?: undefined;
166
194
  pid?: undefined;
167
195
  script?: undefined;
196
+ browserName?: undefined;
168
197
  line?: undefined;
169
198
  character?: undefined;
199
+ mode?: undefined;
170
200
  };
171
201
  required: string[];
172
202
  };
@@ -184,6 +214,8 @@ export declare const CoWorkerToolSchemas: ({
184
214
  description: string;
185
215
  };
186
216
  file_path?: undefined;
217
+ offset?: undefined;
218
+ limit?: undefined;
187
219
  content?: undefined;
188
220
  old_string?: undefined;
189
221
  new_string?: undefined;
@@ -195,13 +227,17 @@ export declare const CoWorkerToolSchemas: ({
195
227
  path?: undefined;
196
228
  recursive?: undefined;
197
229
  query?: undefined;
230
+ use_agent?: undefined;
198
231
  url?: undefined;
232
+ questions?: undefined;
199
233
  description?: undefined;
200
234
  todos?: undefined;
201
235
  pid?: undefined;
202
236
  script?: undefined;
237
+ browserName?: undefined;
203
238
  line?: undefined;
204
239
  character?: undefined;
240
+ mode?: undefined;
205
241
  };
206
242
  required: string[];
207
243
  };
@@ -223,6 +259,8 @@ export declare const CoWorkerToolSchemas: ({
223
259
  description: string;
224
260
  };
225
261
  file_path?: undefined;
262
+ offset?: undefined;
263
+ limit?: undefined;
226
264
  content?: undefined;
227
265
  old_string?: undefined;
228
266
  new_string?: undefined;
@@ -233,13 +271,17 @@ export declare const CoWorkerToolSchemas: ({
233
271
  path?: undefined;
234
272
  recursive?: undefined;
235
273
  query?: undefined;
274
+ use_agent?: undefined;
236
275
  url?: undefined;
276
+ questions?: undefined;
237
277
  description?: undefined;
238
278
  todos?: undefined;
239
279
  pid?: undefined;
240
280
  script?: undefined;
281
+ browserName?: undefined;
241
282
  line?: undefined;
242
283
  character?: undefined;
284
+ mode?: undefined;
243
285
  };
244
286
  required: string[];
245
287
  };
@@ -264,6 +306,8 @@ export declare const CoWorkerToolSchemas: ({
264
306
  description: string;
265
307
  };
266
308
  file_path?: undefined;
309
+ offset?: undefined;
310
+ limit?: undefined;
267
311
  content?: undefined;
268
312
  old_string?: undefined;
269
313
  new_string?: undefined;
@@ -274,13 +318,17 @@ export declare const CoWorkerToolSchemas: ({
274
318
  path?: undefined;
275
319
  recursive?: undefined;
276
320
  query?: undefined;
321
+ use_agent?: undefined;
277
322
  url?: undefined;
323
+ questions?: undefined;
278
324
  description?: undefined;
279
325
  todos?: undefined;
280
326
  pid?: undefined;
281
327
  script?: undefined;
328
+ browserName?: undefined;
282
329
  line?: undefined;
283
330
  character?: undefined;
331
+ mode?: undefined;
284
332
  };
285
333
  required: string[];
286
334
  };
@@ -302,6 +350,8 @@ export declare const CoWorkerToolSchemas: ({
302
350
  description: string;
303
351
  };
304
352
  file_path?: undefined;
353
+ offset?: undefined;
354
+ limit?: undefined;
305
355
  content?: undefined;
306
356
  old_string?: undefined;
307
357
  new_string?: undefined;
@@ -312,13 +362,17 @@ export declare const CoWorkerToolSchemas: ({
312
362
  directory?: undefined;
313
363
  files?: undefined;
314
364
  query?: undefined;
365
+ use_agent?: undefined;
315
366
  url?: undefined;
367
+ questions?: undefined;
316
368
  description?: undefined;
317
369
  todos?: undefined;
318
370
  pid?: undefined;
319
371
  script?: undefined;
372
+ browserName?: undefined;
320
373
  line?: undefined;
321
374
  character?: undefined;
375
+ mode?: undefined;
322
376
  };
323
377
  required?: undefined;
324
378
  };
@@ -335,7 +389,13 @@ export declare const CoWorkerToolSchemas: ({
335
389
  type: string;
336
390
  description: string;
337
391
  };
392
+ use_agent: {
393
+ type: string;
394
+ description: string;
395
+ };
338
396
  file_path?: undefined;
397
+ offset?: undefined;
398
+ limit?: undefined;
339
399
  content?: undefined;
340
400
  old_string?: undefined;
341
401
  new_string?: undefined;
@@ -348,12 +408,15 @@ export declare const CoWorkerToolSchemas: ({
348
408
  path?: undefined;
349
409
  recursive?: undefined;
350
410
  url?: undefined;
411
+ questions?: undefined;
351
412
  description?: undefined;
352
413
  todos?: undefined;
353
414
  pid?: undefined;
354
415
  script?: undefined;
416
+ browserName?: undefined;
355
417
  line?: undefined;
356
418
  character?: undefined;
419
+ mode?: undefined;
357
420
  };
358
421
  required: string[];
359
422
  };
@@ -371,6 +434,8 @@ export declare const CoWorkerToolSchemas: ({
371
434
  description: string;
372
435
  };
373
436
  file_path?: undefined;
437
+ offset?: undefined;
438
+ limit?: undefined;
374
439
  content?: undefined;
375
440
  old_string?: undefined;
376
441
  new_string?: undefined;
@@ -383,12 +448,91 @@ export declare const CoWorkerToolSchemas: ({
383
448
  path?: undefined;
384
449
  recursive?: undefined;
385
450
  query?: undefined;
451
+ use_agent?: undefined;
452
+ questions?: undefined;
386
453
  description?: undefined;
387
454
  todos?: undefined;
388
455
  pid?: undefined;
389
456
  script?: undefined;
457
+ browserName?: undefined;
390
458
  line?: undefined;
391
459
  character?: undefined;
460
+ mode?: undefined;
461
+ };
462
+ required: string[];
463
+ };
464
+ };
465
+ } | {
466
+ type: string;
467
+ function: {
468
+ name: string;
469
+ description: string;
470
+ parameters: {
471
+ type: string;
472
+ properties: {
473
+ questions: {
474
+ type: string;
475
+ items: {
476
+ type: string;
477
+ properties: {
478
+ question: {
479
+ type: string;
480
+ description: string;
481
+ };
482
+ header: {
483
+ type: string;
484
+ description: string;
485
+ };
486
+ options: {
487
+ type: string;
488
+ items: {
489
+ type: string;
490
+ properties: {
491
+ label: {
492
+ type: string;
493
+ description: string;
494
+ };
495
+ description: {
496
+ type: string;
497
+ description: string;
498
+ };
499
+ };
500
+ required: string[];
501
+ };
502
+ };
503
+ multiSelect: {
504
+ type: string;
505
+ description: string;
506
+ };
507
+ };
508
+ required: string[];
509
+ };
510
+ };
511
+ file_path?: undefined;
512
+ offset?: undefined;
513
+ limit?: undefined;
514
+ content?: undefined;
515
+ old_string?: undefined;
516
+ new_string?: undefined;
517
+ replace_all?: undefined;
518
+ edits?: undefined;
519
+ command?: undefined;
520
+ pattern?: undefined;
521
+ directory?: undefined;
522
+ files?: undefined;
523
+ path?: undefined;
524
+ recursive?: undefined;
525
+ query?: undefined;
526
+ use_agent?: undefined;
527
+ url?: undefined;
528
+ description?: undefined;
529
+ todos?: undefined;
530
+ pid?: undefined;
531
+ script?: undefined;
532
+ browserName?: undefined;
533
+ line?: undefined;
534
+ character?: undefined;
535
+ mode?: undefined;
392
536
  };
393
537
  required: string[];
394
538
  };
@@ -406,6 +550,8 @@ export declare const CoWorkerToolSchemas: ({
406
550
  description: string;
407
551
  };
408
552
  file_path?: undefined;
553
+ offset?: undefined;
554
+ limit?: undefined;
409
555
  content?: undefined;
410
556
  old_string?: undefined;
411
557
  new_string?: undefined;
@@ -418,12 +564,16 @@ export declare const CoWorkerToolSchemas: ({
418
564
  path?: undefined;
419
565
  recursive?: undefined;
420
566
  query?: undefined;
567
+ use_agent?: undefined;
421
568
  url?: undefined;
569
+ questions?: undefined;
422
570
  todos?: undefined;
423
571
  pid?: undefined;
424
572
  script?: undefined;
573
+ browserName?: undefined;
425
574
  line?: undefined;
426
575
  character?: undefined;
576
+ mode?: undefined;
427
577
  };
428
578
  required: string[];
429
579
  };
@@ -453,6 +603,8 @@ export declare const CoWorkerToolSchemas: ({
453
603
  };
454
604
  };
455
605
  file_path?: undefined;
606
+ offset?: undefined;
607
+ limit?: undefined;
456
608
  content?: undefined;
457
609
  old_string?: undefined;
458
610
  new_string?: undefined;
@@ -465,12 +617,16 @@ export declare const CoWorkerToolSchemas: ({
465
617
  path?: undefined;
466
618
  recursive?: undefined;
467
619
  query?: undefined;
620
+ use_agent?: undefined;
468
621
  url?: undefined;
622
+ questions?: undefined;
469
623
  description?: undefined;
470
624
  pid?: undefined;
471
625
  script?: undefined;
626
+ browserName?: undefined;
472
627
  line?: undefined;
473
628
  character?: undefined;
629
+ mode?: undefined;
474
630
  };
475
631
  required: string[];
476
632
  };
@@ -488,6 +644,8 @@ export declare const CoWorkerToolSchemas: ({
488
644
  description: string;
489
645
  };
490
646
  file_path?: undefined;
647
+ offset?: undefined;
648
+ limit?: undefined;
491
649
  content?: undefined;
492
650
  old_string?: undefined;
493
651
  new_string?: undefined;
@@ -500,12 +658,16 @@ export declare const CoWorkerToolSchemas: ({
500
658
  path?: undefined;
501
659
  recursive?: undefined;
502
660
  query?: undefined;
661
+ use_agent?: undefined;
503
662
  url?: undefined;
663
+ questions?: undefined;
504
664
  description?: undefined;
505
665
  todos?: undefined;
506
666
  script?: undefined;
667
+ browserName?: undefined;
507
668
  line?: undefined;
508
669
  character?: undefined;
670
+ mode?: undefined;
509
671
  };
510
672
  required: string[];
511
673
  };
@@ -523,6 +685,8 @@ export declare const CoWorkerToolSchemas: ({
523
685
  description: string;
524
686
  };
525
687
  file_path?: undefined;
688
+ offset?: undefined;
689
+ limit?: undefined;
526
690
  content?: undefined;
527
691
  old_string?: undefined;
528
692
  new_string?: undefined;
@@ -535,12 +699,60 @@ export declare const CoWorkerToolSchemas: ({
535
699
  path?: undefined;
536
700
  recursive?: undefined;
537
701
  query?: undefined;
702
+ use_agent?: undefined;
538
703
  url?: undefined;
704
+ questions?: undefined;
539
705
  description?: undefined;
540
706
  todos?: undefined;
541
707
  pid?: undefined;
708
+ browserName?: undefined;
542
709
  line?: undefined;
543
710
  character?: undefined;
711
+ mode?: undefined;
712
+ };
713
+ required: string[];
714
+ };
715
+ };
716
+ } | {
717
+ type: string;
718
+ function: {
719
+ name: string;
720
+ description: string;
721
+ parameters: {
722
+ type: string;
723
+ properties: {
724
+ url: {
725
+ type: string;
726
+ description: string;
727
+ };
728
+ browserName: {
729
+ type: string;
730
+ description: string;
731
+ };
732
+ file_path?: undefined;
733
+ offset?: undefined;
734
+ limit?: undefined;
735
+ content?: undefined;
736
+ old_string?: undefined;
737
+ new_string?: undefined;
738
+ replace_all?: undefined;
739
+ edits?: undefined;
740
+ command?: undefined;
741
+ pattern?: undefined;
742
+ directory?: undefined;
743
+ files?: undefined;
744
+ path?: undefined;
745
+ recursive?: undefined;
746
+ query?: undefined;
747
+ use_agent?: undefined;
748
+ questions?: undefined;
749
+ description?: undefined;
750
+ todos?: undefined;
751
+ pid?: undefined;
752
+ script?: undefined;
753
+ line?: undefined;
754
+ character?: undefined;
755
+ mode?: undefined;
544
756
  };
545
757
  required: string[];
546
758
  };
@@ -565,6 +777,44 @@ export declare const CoWorkerToolSchemas: ({
565
777
  type: string;
566
778
  description: string;
567
779
  };
780
+ offset?: undefined;
781
+ limit?: undefined;
782
+ content?: undefined;
783
+ old_string?: undefined;
784
+ new_string?: undefined;
785
+ replace_all?: undefined;
786
+ edits?: undefined;
787
+ command?: undefined;
788
+ pattern?: undefined;
789
+ directory?: undefined;
790
+ files?: undefined;
791
+ path?: undefined;
792
+ recursive?: undefined;
793
+ query?: undefined;
794
+ use_agent?: undefined;
795
+ url?: undefined;
796
+ questions?: undefined;
797
+ description?: undefined;
798
+ todos?: undefined;
799
+ pid?: undefined;
800
+ script?: undefined;
801
+ browserName?: undefined;
802
+ mode?: undefined;
803
+ };
804
+ required: string[];
805
+ };
806
+ };
807
+ } | {
808
+ type: string;
809
+ function: {
810
+ name: string;
811
+ description: string;
812
+ parameters: {
813
+ type: string;
814
+ properties: {
815
+ file_path?: undefined;
816
+ offset?: undefined;
817
+ limit?: undefined;
568
818
  content?: undefined;
569
819
  old_string?: undefined;
570
820
  new_string?: undefined;
@@ -577,11 +827,62 @@ export declare const CoWorkerToolSchemas: ({
577
827
  path?: undefined;
578
828
  recursive?: undefined;
579
829
  query?: undefined;
830
+ use_agent?: undefined;
580
831
  url?: undefined;
832
+ questions?: undefined;
581
833
  description?: undefined;
582
834
  todos?: undefined;
583
835
  pid?: undefined;
584
836
  script?: undefined;
837
+ browserName?: undefined;
838
+ line?: undefined;
839
+ character?: undefined;
840
+ mode?: undefined;
841
+ };
842
+ required?: undefined;
843
+ };
844
+ };
845
+ } | {
846
+ type: string;
847
+ function: {
848
+ name: string;
849
+ description: string;
850
+ parameters: {
851
+ type: string;
852
+ properties: {
853
+ content: {
854
+ type: string;
855
+ description: string;
856
+ };
857
+ mode: {
858
+ type: string;
859
+ enum: string[];
860
+ description: string;
861
+ };
862
+ file_path?: undefined;
863
+ offset?: undefined;
864
+ limit?: undefined;
865
+ old_string?: undefined;
866
+ new_string?: undefined;
867
+ replace_all?: undefined;
868
+ edits?: undefined;
869
+ command?: undefined;
870
+ pattern?: undefined;
871
+ directory?: undefined;
872
+ files?: undefined;
873
+ path?: undefined;
874
+ recursive?: undefined;
875
+ query?: undefined;
876
+ use_agent?: undefined;
877
+ url?: undefined;
878
+ questions?: undefined;
879
+ description?: undefined;
880
+ todos?: undefined;
881
+ pid?: undefined;
882
+ script?: undefined;
883
+ browserName?: undefined;
884
+ line?: undefined;
885
+ character?: undefined;
585
886
  };
586
887
  required: string[];
587
888
  };
@@ -1 +1 @@
1
- {"version":3,"file":"Schemas.d.ts","sourceRoot":"","sources":["../../src/tools/Schemas.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA+Q/B,CAAC"}
1
+ {"version":3,"file":"Schemas.d.ts","sourceRoot":"","sources":["../../src/tools/Schemas.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA4V/B,CAAC"}