fivocell 2.0.0 → 3.0.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 (51) hide show
  1. package/README.md +104 -697
  2. package/dist/behavioral-tracker.d.ts +90 -0
  3. package/dist/behavioral-tracker.d.ts.map +1 -0
  4. package/dist/behavioral-tracker.js +185 -0
  5. package/dist/behavioral-tracker.js.map +1 -0
  6. package/dist/cli.d.ts +1 -6
  7. package/dist/cli.d.ts.map +1 -1
  8. package/dist/cli.js +430 -3862
  9. package/dist/cli.js.map +1 -1
  10. package/dist/code-scanner.d.ts +51 -0
  11. package/dist/code-scanner.d.ts.map +1 -0
  12. package/dist/code-scanner.js +966 -0
  13. package/dist/code-scanner.js.map +1 -0
  14. package/dist/community-intel.d.ts +34 -0
  15. package/dist/community-intel.d.ts.map +1 -0
  16. package/dist/community-intel.js +148 -0
  17. package/dist/community-intel.js.map +1 -0
  18. package/dist/daemon/lifecycle.d.ts +0 -15
  19. package/dist/daemon/lifecycle.d.ts.map +1 -1
  20. package/dist/daemon/lifecycle.js +88 -231
  21. package/dist/daemon/lifecycle.js.map +1 -1
  22. package/dist/daemon/server.d.ts.map +1 -1
  23. package/dist/daemon/server.js +368 -19
  24. package/dist/daemon/server.js.map +1 -1
  25. package/dist/developer-intelligence.d.ts +18 -0
  26. package/dist/developer-intelligence.d.ts.map +1 -0
  27. package/dist/developer-intelligence.js +180 -0
  28. package/dist/developer-intelligence.js.map +1 -0
  29. package/dist/layers.d.ts +92 -0
  30. package/dist/layers.d.ts.map +1 -0
  31. package/dist/layers.js +226 -0
  32. package/dist/layers.js.map +1 -0
  33. package/dist/mcp-server.d.ts +194 -1842
  34. package/dist/mcp-server.d.ts.map +1 -1
  35. package/dist/mcp-server.js +169 -875
  36. package/dist/mcp-server.js.map +1 -1
  37. package/dist/pc-scanner.d.ts +46 -0
  38. package/dist/pc-scanner.d.ts.map +1 -0
  39. package/dist/pc-scanner.js +488 -0
  40. package/dist/pc-scanner.js.map +1 -0
  41. package/dist/predictive-engine.d.ts +19 -0
  42. package/dist/predictive-engine.d.ts.map +1 -0
  43. package/dist/predictive-engine.js +107 -0
  44. package/dist/predictive-engine.js.map +1 -0
  45. package/dist/style-pull.d.ts +1 -1
  46. package/dist/style-pull.js +2 -2
  47. package/dist/team-git.d.ts +47 -0
  48. package/dist/team-git.d.ts.map +1 -0
  49. package/dist/team-git.js +305 -0
  50. package/dist/team-git.js.map +1 -0
  51. package/package.json +1 -1
@@ -5,61 +5,31 @@ export declare const TOOLS: ({
5
5
  inputSchema: {
6
6
  type: string;
7
7
  properties: {
8
- language: {
9
- type: string;
10
- description: string;
11
- };
12
- framework: {
8
+ project: {
13
9
  type: string;
14
- description: string;
15
10
  };
11
+ category?: undefined;
12
+ dir?: undefined;
16
13
  type?: undefined;
17
14
  originalCode?: undefined;
18
15
  editedCode?: undefined;
19
- fileType?: undefined;
20
- context?: undefined;
21
- files?: undefined;
22
- limit?: undefined;
23
- category?: undefined;
24
- orgId?: undefined;
25
- developerId?: undefined;
26
- patterns?: undefined;
27
- outcomesMap?: undefined;
28
- communityStats?: undefined;
29
- orgStats?: undefined;
30
- projectDNA?: undefined;
31
- weights?: undefined;
32
- teamId?: undefined;
33
- teamProfiles?: undefined;
34
- orgBenchmarks?: undefined;
35
- knowledgeGaps?: undefined;
36
- risks?: undefined;
37
- opportunities?: undefined;
38
- intelligenceScore?: undefined;
39
- decisions?: undefined;
40
- benchmarks?: undefined;
41
- lifecycles?: undefined;
42
- allProfiles?: undefined;
43
- minEvents?: undefined;
44
- projectPath?: undefined;
45
16
  file?: undefined;
46
- code?: undefined;
47
- toolName?: undefined;
48
- compact?: undefined;
49
- project?: undefined;
50
- sessionId?: undefined;
51
- filesTouched?: undefined;
52
- keyDecisions?: undefined;
53
- contextSnapshot?: undefined;
54
- feature?: undefined;
55
- taskType?: undefined;
56
- days?: undefined;
57
- teamName?: undefined;
58
- from?: undefined;
59
- to?: undefined;
60
- data?: undefined;
17
+ language?: undefined;
18
+ tool?: undefined;
19
+ errorType?: undefined;
20
+ errorMessage?: undefined;
21
+ line?: undefined;
22
+ errorId?: undefined;
23
+ fixApplied?: undefined;
24
+ worked?: undefined;
25
+ timeToFixMs?: undefined;
26
+ decision?: undefined;
27
+ approach?: undefined;
28
+ task?: undefined;
29
+ files?: undefined;
30
+ description?: undefined;
61
31
  };
62
- required?: undefined;
32
+ required: string[];
63
33
  };
64
34
  } | {
65
35
  name: string;
@@ -67,186 +37,33 @@ export declare const TOOLS: ({
67
37
  inputSchema: {
68
38
  type: string;
69
39
  properties: {
70
- type: {
71
- type: string;
72
- enum: string[];
73
- description?: undefined;
74
- };
75
- originalCode: {
76
- type: string;
77
- };
78
- editedCode: {
79
- type: string;
80
- };
81
- language: {
82
- type: string;
83
- description?: undefined;
84
- };
85
- framework: {
40
+ project: {
86
41
  type: string;
87
- description?: undefined;
88
42
  };
89
- fileType: {
43
+ category: {
90
44
  type: string;
91
45
  };
92
- context?: undefined;
93
- files?: undefined;
94
- limit?: undefined;
95
- category?: undefined;
96
- orgId?: undefined;
97
- developerId?: undefined;
98
- patterns?: undefined;
99
- outcomesMap?: undefined;
100
- communityStats?: undefined;
101
- orgStats?: undefined;
102
- projectDNA?: undefined;
103
- weights?: undefined;
104
- teamId?: undefined;
105
- teamProfiles?: undefined;
106
- orgBenchmarks?: undefined;
107
- knowledgeGaps?: undefined;
108
- risks?: undefined;
109
- opportunities?: undefined;
110
- intelligenceScore?: undefined;
111
- decisions?: undefined;
112
- benchmarks?: undefined;
113
- lifecycles?: undefined;
114
- allProfiles?: undefined;
115
- minEvents?: undefined;
116
- projectPath?: undefined;
117
- file?: undefined;
118
- code?: undefined;
119
- toolName?: undefined;
120
- compact?: undefined;
121
- project?: undefined;
122
- sessionId?: undefined;
123
- filesTouched?: undefined;
124
- keyDecisions?: undefined;
125
- contextSnapshot?: undefined;
126
- feature?: undefined;
127
- taskType?: undefined;
128
- days?: undefined;
129
- teamName?: undefined;
130
- from?: undefined;
131
- to?: undefined;
132
- data?: undefined;
133
- };
134
- required: string[];
135
- };
136
- } | {
137
- name: string;
138
- description: string;
139
- inputSchema: {
140
- type: string;
141
- properties: {
142
- language?: undefined;
143
- framework?: undefined;
46
+ dir?: undefined;
144
47
  type?: undefined;
145
48
  originalCode?: undefined;
146
49
  editedCode?: undefined;
147
- fileType?: undefined;
148
- context?: undefined;
149
- files?: undefined;
150
- limit?: undefined;
151
- category?: undefined;
152
- orgId?: undefined;
153
- developerId?: undefined;
154
- patterns?: undefined;
155
- outcomesMap?: undefined;
156
- communityStats?: undefined;
157
- orgStats?: undefined;
158
- projectDNA?: undefined;
159
- weights?: undefined;
160
- teamId?: undefined;
161
- teamProfiles?: undefined;
162
- orgBenchmarks?: undefined;
163
- knowledgeGaps?: undefined;
164
- risks?: undefined;
165
- opportunities?: undefined;
166
- intelligenceScore?: undefined;
167
- decisions?: undefined;
168
- benchmarks?: undefined;
169
- lifecycles?: undefined;
170
- allProfiles?: undefined;
171
- minEvents?: undefined;
172
- projectPath?: undefined;
173
50
  file?: undefined;
174
- code?: undefined;
175
- toolName?: undefined;
176
- compact?: undefined;
177
- project?: undefined;
178
- sessionId?: undefined;
179
- filesTouched?: undefined;
180
- keyDecisions?: undefined;
181
- contextSnapshot?: undefined;
182
- feature?: undefined;
183
- taskType?: undefined;
184
- days?: undefined;
185
- teamName?: undefined;
186
- from?: undefined;
187
- to?: undefined;
188
- data?: undefined;
189
- };
190
- required?: undefined;
191
- };
192
- } | {
193
- name: string;
194
- description: string;
195
- inputSchema: {
196
- type: string;
197
- properties: {
198
- context: {
199
- type: string;
200
- description?: undefined;
201
- };
202
51
  language?: undefined;
203
- framework?: undefined;
204
- type?: undefined;
205
- originalCode?: undefined;
206
- editedCode?: undefined;
207
- fileType?: undefined;
52
+ tool?: undefined;
53
+ errorType?: undefined;
54
+ errorMessage?: undefined;
55
+ line?: undefined;
56
+ errorId?: undefined;
57
+ fixApplied?: undefined;
58
+ worked?: undefined;
59
+ timeToFixMs?: undefined;
60
+ decision?: undefined;
61
+ approach?: undefined;
62
+ task?: undefined;
208
63
  files?: undefined;
209
- limit?: undefined;
210
- category?: undefined;
211
- orgId?: undefined;
212
- developerId?: undefined;
213
- patterns?: undefined;
214
- outcomesMap?: undefined;
215
- communityStats?: undefined;
216
- orgStats?: undefined;
217
- projectDNA?: undefined;
218
- weights?: undefined;
219
- teamId?: undefined;
220
- teamProfiles?: undefined;
221
- orgBenchmarks?: undefined;
222
- knowledgeGaps?: undefined;
223
- risks?: undefined;
224
- opportunities?: undefined;
225
- intelligenceScore?: undefined;
226
- decisions?: undefined;
227
- benchmarks?: undefined;
228
- lifecycles?: undefined;
229
- allProfiles?: undefined;
230
- minEvents?: undefined;
231
- projectPath?: undefined;
232
- file?: undefined;
233
- code?: undefined;
234
- toolName?: undefined;
235
- compact?: undefined;
236
- project?: undefined;
237
- sessionId?: undefined;
238
- filesTouched?: undefined;
239
- keyDecisions?: undefined;
240
- contextSnapshot?: undefined;
241
- feature?: undefined;
242
- taskType?: undefined;
243
- days?: undefined;
244
- teamName?: undefined;
245
- from?: undefined;
246
- to?: undefined;
247
- data?: undefined;
64
+ description?: undefined;
248
65
  };
249
- required?: undefined;
66
+ required: string[];
250
67
  };
251
68
  } | {
252
69
  name: string;
@@ -254,232 +71,31 @@ export declare const TOOLS: ({
254
71
  inputSchema: {
255
72
  type: string;
256
73
  properties: {
257
- files: {
74
+ dir: {
258
75
  type: string;
259
76
  };
260
- language?: undefined;
261
- framework?: undefined;
262
- type?: undefined;
263
- originalCode?: undefined;
264
- editedCode?: undefined;
265
- fileType?: undefined;
266
- context?: undefined;
267
- limit?: undefined;
268
- category?: undefined;
269
- orgId?: undefined;
270
- developerId?: undefined;
271
- patterns?: undefined;
272
- outcomesMap?: undefined;
273
- communityStats?: undefined;
274
- orgStats?: undefined;
275
- projectDNA?: undefined;
276
- weights?: undefined;
277
- teamId?: undefined;
278
- teamProfiles?: undefined;
279
- orgBenchmarks?: undefined;
280
- knowledgeGaps?: undefined;
281
- risks?: undefined;
282
- opportunities?: undefined;
283
- intelligenceScore?: undefined;
284
- decisions?: undefined;
285
- benchmarks?: undefined;
286
- lifecycles?: undefined;
287
- allProfiles?: undefined;
288
- minEvents?: undefined;
289
- projectPath?: undefined;
290
- file?: undefined;
291
- code?: undefined;
292
- toolName?: undefined;
293
- compact?: undefined;
294
- project?: undefined;
295
- sessionId?: undefined;
296
- filesTouched?: undefined;
297
- keyDecisions?: undefined;
298
- contextSnapshot?: undefined;
299
- feature?: undefined;
300
- taskType?: undefined;
301
- days?: undefined;
302
- teamName?: undefined;
303
- from?: undefined;
304
- to?: undefined;
305
- data?: undefined;
306
- };
307
- required?: undefined;
308
- };
309
- } | {
310
- name: string;
311
- description: string;
312
- inputSchema: {
313
- type: string;
314
- properties: {
315
- limit: {
77
+ project: {
316
78
  type: string;
317
- description: string;
318
79
  };
319
- language?: undefined;
320
- framework?: undefined;
321
- type?: undefined;
322
- originalCode?: undefined;
323
- editedCode?: undefined;
324
- fileType?: undefined;
325
- context?: undefined;
326
- files?: undefined;
327
80
  category?: undefined;
328
- orgId?: undefined;
329
- developerId?: undefined;
330
- patterns?: undefined;
331
- outcomesMap?: undefined;
332
- communityStats?: undefined;
333
- orgStats?: undefined;
334
- projectDNA?: undefined;
335
- weights?: undefined;
336
- teamId?: undefined;
337
- teamProfiles?: undefined;
338
- orgBenchmarks?: undefined;
339
- knowledgeGaps?: undefined;
340
- risks?: undefined;
341
- opportunities?: undefined;
342
- intelligenceScore?: undefined;
343
- decisions?: undefined;
344
- benchmarks?: undefined;
345
- lifecycles?: undefined;
346
- allProfiles?: undefined;
347
- minEvents?: undefined;
348
- projectPath?: undefined;
349
- file?: undefined;
350
- code?: undefined;
351
- toolName?: undefined;
352
- compact?: undefined;
353
- project?: undefined;
354
- sessionId?: undefined;
355
- filesTouched?: undefined;
356
- keyDecisions?: undefined;
357
- contextSnapshot?: undefined;
358
- feature?: undefined;
359
- taskType?: undefined;
360
- days?: undefined;
361
- teamName?: undefined;
362
- from?: undefined;
363
- to?: undefined;
364
- data?: undefined;
365
- };
366
- required?: undefined;
367
- };
368
- } | {
369
- name: string;
370
- description: string;
371
- inputSchema: {
372
- type: string;
373
- properties: {
374
- category: {
375
- type: string;
376
- description: string;
377
- };
378
- language?: undefined;
379
- framework?: undefined;
380
81
  type?: undefined;
381
82
  originalCode?: undefined;
382
83
  editedCode?: undefined;
383
- fileType?: undefined;
384
- context?: undefined;
385
- files?: undefined;
386
- limit?: undefined;
387
- orgId?: undefined;
388
- developerId?: undefined;
389
- patterns?: undefined;
390
- outcomesMap?: undefined;
391
- communityStats?: undefined;
392
- orgStats?: undefined;
393
- projectDNA?: undefined;
394
- weights?: undefined;
395
- teamId?: undefined;
396
- teamProfiles?: undefined;
397
- orgBenchmarks?: undefined;
398
- knowledgeGaps?: undefined;
399
- risks?: undefined;
400
- opportunities?: undefined;
401
- intelligenceScore?: undefined;
402
- decisions?: undefined;
403
- benchmarks?: undefined;
404
- lifecycles?: undefined;
405
- allProfiles?: undefined;
406
- minEvents?: undefined;
407
- projectPath?: undefined;
408
84
  file?: undefined;
409
- code?: undefined;
410
- toolName?: undefined;
411
- compact?: undefined;
412
- project?: undefined;
413
- sessionId?: undefined;
414
- filesTouched?: undefined;
415
- keyDecisions?: undefined;
416
- contextSnapshot?: undefined;
417
- feature?: undefined;
418
- taskType?: undefined;
419
- days?: undefined;
420
- teamName?: undefined;
421
- from?: undefined;
422
- to?: undefined;
423
- data?: undefined;
424
- };
425
- required?: undefined;
426
- };
427
- } | {
428
- name: string;
429
- description: string;
430
- inputSchema: {
431
- type: string;
432
- properties: {
433
- orgId: {
434
- type: string;
435
- description: string;
436
- };
437
85
  language?: undefined;
438
- framework?: undefined;
439
- type?: undefined;
440
- originalCode?: undefined;
441
- editedCode?: undefined;
442
- fileType?: undefined;
443
- context?: undefined;
86
+ tool?: undefined;
87
+ errorType?: undefined;
88
+ errorMessage?: undefined;
89
+ line?: undefined;
90
+ errorId?: undefined;
91
+ fixApplied?: undefined;
92
+ worked?: undefined;
93
+ timeToFixMs?: undefined;
94
+ decision?: undefined;
95
+ approach?: undefined;
96
+ task?: undefined;
444
97
  files?: undefined;
445
- limit?: undefined;
446
- category?: undefined;
447
- developerId?: undefined;
448
- patterns?: undefined;
449
- outcomesMap?: undefined;
450
- communityStats?: undefined;
451
- orgStats?: undefined;
452
- projectDNA?: undefined;
453
- weights?: undefined;
454
- teamId?: undefined;
455
- teamProfiles?: undefined;
456
- orgBenchmarks?: undefined;
457
- knowledgeGaps?: undefined;
458
- risks?: undefined;
459
- opportunities?: undefined;
460
- intelligenceScore?: undefined;
461
- decisions?: undefined;
462
- benchmarks?: undefined;
463
- lifecycles?: undefined;
464
- allProfiles?: undefined;
465
- minEvents?: undefined;
466
- projectPath?: undefined;
467
- file?: undefined;
468
- code?: undefined;
469
- toolName?: undefined;
470
- compact?: undefined;
471
- project?: undefined;
472
- sessionId?: undefined;
473
- filesTouched?: undefined;
474
- keyDecisions?: undefined;
475
- contextSnapshot?: undefined;
476
- feature?: undefined;
477
- taskType?: undefined;
478
- days?: undefined;
479
- teamName?: undefined;
480
- from?: undefined;
481
- to?: undefined;
482
- data?: undefined;
98
+ description?: undefined;
483
99
  };
484
100
  required: string[];
485
101
  };
@@ -489,79 +105,37 @@ export declare const TOOLS: ({
489
105
  inputSchema: {
490
106
  type: string;
491
107
  properties: {
492
- developerId: {
493
- type: string;
494
- description: string;
495
- };
496
- patterns: {
497
- type: string;
498
- description: string;
499
- };
500
- outcomesMap: {
108
+ type: {
501
109
  type: string;
502
- description: string;
503
- additionalProperties: boolean;
504
110
  };
505
- communityStats: {
111
+ originalCode: {
506
112
  type: string;
507
- description: string;
508
- additionalProperties: boolean;
509
113
  };
510
- orgStats: {
114
+ editedCode: {
511
115
  type: string;
512
- description: string;
513
- additionalProperties: boolean;
514
116
  };
515
- projectDNA: {
117
+ file: {
516
118
  type: string;
517
- description: string;
518
- additionalProperties: boolean;
519
119
  };
520
- weights: {
120
+ language: {
521
121
  type: string;
522
- description: string;
523
- additionalProperties: boolean;
524
122
  };
525
- language?: undefined;
526
- framework?: undefined;
527
- type?: undefined;
528
- originalCode?: undefined;
529
- editedCode?: undefined;
530
- fileType?: undefined;
531
- context?: undefined;
532
- files?: undefined;
533
- limit?: undefined;
534
- category?: undefined;
535
- orgId?: undefined;
536
- teamId?: undefined;
537
- teamProfiles?: undefined;
538
- orgBenchmarks?: undefined;
539
- knowledgeGaps?: undefined;
540
- risks?: undefined;
541
- opportunities?: undefined;
542
- intelligenceScore?: undefined;
543
- decisions?: undefined;
544
- benchmarks?: undefined;
545
- lifecycles?: undefined;
546
- allProfiles?: undefined;
547
- minEvents?: undefined;
548
- projectPath?: undefined;
549
- file?: undefined;
550
- code?: undefined;
551
- toolName?: undefined;
552
- compact?: undefined;
553
123
  project?: undefined;
554
- sessionId?: undefined;
555
- filesTouched?: undefined;
556
- keyDecisions?: undefined;
557
- contextSnapshot?: undefined;
558
- feature?: undefined;
559
- taskType?: undefined;
560
- days?: undefined;
561
- teamName?: undefined;
562
- from?: undefined;
563
- to?: undefined;
564
- data?: undefined;
124
+ category?: undefined;
125
+ dir?: undefined;
126
+ tool?: undefined;
127
+ errorType?: undefined;
128
+ errorMessage?: undefined;
129
+ line?: undefined;
130
+ errorId?: undefined;
131
+ fixApplied?: undefined;
132
+ worked?: undefined;
133
+ timeToFixMs?: undefined;
134
+ decision?: undefined;
135
+ approach?: undefined;
136
+ task?: undefined;
137
+ files?: undefined;
138
+ description?: undefined;
565
139
  };
566
140
  required: string[];
567
141
  };
@@ -571,74 +145,31 @@ export declare const TOOLS: ({
571
145
  inputSchema: {
572
146
  type: string;
573
147
  properties: {
574
- developerId: {
575
- type: string;
576
- description?: undefined;
577
- };
578
- teamId: {
579
- type: string;
580
- };
581
- orgId: {
582
- type: string;
583
- description?: undefined;
584
- };
585
- patterns: {
586
- type: string;
587
- description?: undefined;
588
- };
589
- outcomesMap: {
590
- type: string;
591
- description?: undefined;
592
- additionalProperties?: undefined;
593
- };
594
- teamProfiles: {
595
- type: string;
596
- };
597
- orgBenchmarks: {
148
+ project: {
598
149
  type: string;
599
150
  };
600
- knowledgeGaps: {
151
+ tool: {
601
152
  type: string;
602
153
  };
603
- language?: undefined;
604
- framework?: undefined;
154
+ category?: undefined;
155
+ dir?: undefined;
605
156
  type?: undefined;
606
157
  originalCode?: undefined;
607
158
  editedCode?: undefined;
608
- fileType?: undefined;
609
- context?: undefined;
610
- files?: undefined;
611
- limit?: undefined;
612
- category?: undefined;
613
- communityStats?: undefined;
614
- orgStats?: undefined;
615
- projectDNA?: undefined;
616
- weights?: undefined;
617
- risks?: undefined;
618
- opportunities?: undefined;
619
- intelligenceScore?: undefined;
620
- decisions?: undefined;
621
- benchmarks?: undefined;
622
- lifecycles?: undefined;
623
- allProfiles?: undefined;
624
- minEvents?: undefined;
625
- projectPath?: undefined;
626
159
  file?: undefined;
627
- code?: undefined;
628
- toolName?: undefined;
629
- compact?: undefined;
630
- project?: undefined;
631
- sessionId?: undefined;
632
- filesTouched?: undefined;
633
- keyDecisions?: undefined;
634
- contextSnapshot?: undefined;
635
- feature?: undefined;
636
- taskType?: undefined;
637
- days?: undefined;
638
- teamName?: undefined;
639
- from?: undefined;
640
- to?: undefined;
641
- data?: undefined;
160
+ language?: undefined;
161
+ errorType?: undefined;
162
+ errorMessage?: undefined;
163
+ line?: undefined;
164
+ errorId?: undefined;
165
+ fixApplied?: undefined;
166
+ worked?: undefined;
167
+ timeToFixMs?: undefined;
168
+ decision?: undefined;
169
+ approach?: undefined;
170
+ task?: undefined;
171
+ files?: undefined;
172
+ description?: undefined;
642
173
  };
643
174
  required: string[];
644
175
  };
@@ -648,75 +179,29 @@ export declare const TOOLS: ({
648
179
  inputSchema: {
649
180
  type: string;
650
181
  properties: {
651
- developerId: {
652
- type: string;
653
- description?: undefined;
654
- };
655
- patterns: {
656
- type: string;
657
- description?: undefined;
658
- };
659
- outcomesMap: {
660
- type: string;
661
- description?: undefined;
662
- additionalProperties?: undefined;
663
- };
664
- projectDNA: {
665
- type: string;
666
- description?: undefined;
667
- additionalProperties?: undefined;
668
- };
669
- communityStats: {
670
- type: string;
671
- description?: undefined;
672
- additionalProperties?: undefined;
673
- };
674
- orgBenchmarks: {
675
- type: string;
676
- };
677
- language?: undefined;
678
- framework?: undefined;
182
+ project?: undefined;
183
+ category?: undefined;
184
+ dir?: undefined;
679
185
  type?: undefined;
680
186
  originalCode?: undefined;
681
187
  editedCode?: undefined;
682
- fileType?: undefined;
683
- context?: undefined;
684
- files?: undefined;
685
- limit?: undefined;
686
- category?: undefined;
687
- orgId?: undefined;
688
- orgStats?: undefined;
689
- weights?: undefined;
690
- teamId?: undefined;
691
- teamProfiles?: undefined;
692
- knowledgeGaps?: undefined;
693
- risks?: undefined;
694
- opportunities?: undefined;
695
- intelligenceScore?: undefined;
696
- decisions?: undefined;
697
- benchmarks?: undefined;
698
- lifecycles?: undefined;
699
- allProfiles?: undefined;
700
- minEvents?: undefined;
701
- projectPath?: undefined;
702
188
  file?: undefined;
703
- code?: undefined;
704
- toolName?: undefined;
705
- compact?: undefined;
706
- project?: undefined;
707
- sessionId?: undefined;
708
- filesTouched?: undefined;
709
- keyDecisions?: undefined;
710
- contextSnapshot?: undefined;
711
- feature?: undefined;
712
- taskType?: undefined;
713
- days?: undefined;
714
- teamName?: undefined;
715
- from?: undefined;
716
- to?: undefined;
717
- data?: undefined;
189
+ language?: undefined;
190
+ tool?: undefined;
191
+ errorType?: undefined;
192
+ errorMessage?: undefined;
193
+ line?: undefined;
194
+ errorId?: undefined;
195
+ fixApplied?: undefined;
196
+ worked?: undefined;
197
+ timeToFixMs?: undefined;
198
+ decision?: undefined;
199
+ approach?: undefined;
200
+ task?: undefined;
201
+ files?: undefined;
202
+ description?: undefined;
718
203
  };
719
- required: string[];
204
+ required?: undefined;
720
205
  };
721
206
  } | {
722
207
  name: string;
@@ -724,67 +209,37 @@ export declare const TOOLS: ({
724
209
  inputSchema: {
725
210
  type: string;
726
211
  properties: {
727
- developerId: {
728
- type: string;
729
- description?: undefined;
730
- };
731
- patterns: {
212
+ project: {
732
213
  type: string;
733
- description?: undefined;
734
214
  };
735
- risks: {
215
+ file: {
736
216
  type: string;
737
217
  };
738
- opportunities: {
218
+ errorType: {
739
219
  type: string;
740
220
  };
741
- knowledgeGaps: {
221
+ errorMessage: {
742
222
  type: string;
743
223
  };
744
- orgBenchmarks: {
224
+ line: {
745
225
  type: string;
746
226
  };
747
- language?: undefined;
748
- framework?: undefined;
227
+ category?: undefined;
228
+ dir?: undefined;
749
229
  type?: undefined;
750
230
  originalCode?: undefined;
751
231
  editedCode?: undefined;
752
- fileType?: undefined;
753
- context?: undefined;
232
+ language?: undefined;
233
+ tool?: undefined;
234
+ errorId?: undefined;
235
+ fixApplied?: undefined;
236
+ worked?: undefined;
237
+ timeToFixMs?: undefined;
238
+ decision?: undefined;
239
+ approach?: undefined;
240
+ task?: undefined;
754
241
  files?: undefined;
755
- limit?: undefined;
756
- category?: undefined;
757
- orgId?: undefined;
758
- outcomesMap?: undefined;
759
- communityStats?: undefined;
760
- orgStats?: undefined;
761
- projectDNA?: undefined;
762
- weights?: undefined;
763
- teamId?: undefined;
764
- teamProfiles?: undefined;
765
- intelligenceScore?: undefined;
766
- decisions?: undefined;
767
- benchmarks?: undefined;
768
- lifecycles?: undefined;
769
- allProfiles?: undefined;
770
- minEvents?: undefined;
771
- projectPath?: undefined;
772
- file?: undefined;
773
- code?: undefined;
774
- toolName?: undefined;
775
- compact?: undefined;
776
- project?: undefined;
777
- sessionId?: undefined;
778
- filesTouched?: undefined;
779
- keyDecisions?: undefined;
780
- contextSnapshot?: undefined;
781
- feature?: undefined;
782
- taskType?: undefined;
783
- days?: undefined;
784
- teamName?: undefined;
785
- from?: undefined;
786
- to?: undefined;
787
- data?: undefined;
242
+ description?: undefined;
788
243
  };
789
244
  required: string[];
790
245
  };
@@ -794,70 +249,35 @@ export declare const TOOLS: ({
794
249
  inputSchema: {
795
250
  type: string;
796
251
  properties: {
797
- developerId: {
798
- type: string;
799
- description?: undefined;
800
- };
801
- intelligenceScore: {
802
- type: string;
803
- };
804
- risks: {
805
- type: string;
806
- };
807
- opportunities: {
808
- type: string;
809
- };
810
- decisions: {
252
+ errorId: {
811
253
  type: string;
812
254
  };
813
- knowledgeGaps: {
255
+ fixApplied: {
814
256
  type: string;
815
257
  };
816
- benchmarks: {
258
+ worked: {
817
259
  type: string;
818
260
  };
819
- lifecycles: {
261
+ timeToFixMs: {
820
262
  type: string;
821
263
  };
822
- language?: undefined;
823
- framework?: undefined;
264
+ project?: undefined;
265
+ category?: undefined;
266
+ dir?: undefined;
824
267
  type?: undefined;
825
268
  originalCode?: undefined;
826
269
  editedCode?: undefined;
827
- fileType?: undefined;
828
- context?: undefined;
829
- files?: undefined;
830
- limit?: undefined;
831
- category?: undefined;
832
- orgId?: undefined;
833
- patterns?: undefined;
834
- outcomesMap?: undefined;
835
- communityStats?: undefined;
836
- orgStats?: undefined;
837
- projectDNA?: undefined;
838
- weights?: undefined;
839
- teamId?: undefined;
840
- teamProfiles?: undefined;
841
- orgBenchmarks?: undefined;
842
- allProfiles?: undefined;
843
- minEvents?: undefined;
844
- projectPath?: undefined;
845
270
  file?: undefined;
846
- code?: undefined;
847
- toolName?: undefined;
848
- compact?: undefined;
849
- project?: undefined;
850
- sessionId?: undefined;
851
- filesTouched?: undefined;
852
- keyDecisions?: undefined;
853
- contextSnapshot?: undefined;
854
- feature?: undefined;
855
- taskType?: undefined;
856
- days?: undefined;
857
- teamName?: undefined;
858
- from?: undefined;
859
- to?: undefined;
860
- data?: undefined;
271
+ language?: undefined;
272
+ tool?: undefined;
273
+ errorType?: undefined;
274
+ errorMessage?: undefined;
275
+ line?: undefined;
276
+ decision?: undefined;
277
+ approach?: undefined;
278
+ task?: undefined;
279
+ files?: undefined;
280
+ description?: undefined;
861
281
  };
862
282
  required: string[];
863
283
  };
@@ -867,66 +287,37 @@ export declare const TOOLS: ({
867
287
  inputSchema: {
868
288
  type: string;
869
289
  properties: {
870
- developerId: {
290
+ project: {
871
291
  type: string;
872
- description: string;
873
292
  };
874
- patterns: {
293
+ file: {
875
294
  type: string;
876
- description: string;
877
295
  };
878
- outcomesMap: {
296
+ decision: {
879
297
  type: string;
880
- description: string;
881
- additionalProperties?: undefined;
882
298
  };
883
- allProfiles: {
299
+ approach: {
884
300
  type: string;
885
- description: string;
886
301
  };
887
- language?: undefined;
888
- framework?: undefined;
302
+ worked: {
303
+ type: string;
304
+ };
305
+ category?: undefined;
306
+ dir?: undefined;
889
307
  type?: undefined;
890
308
  originalCode?: undefined;
891
309
  editedCode?: undefined;
892
- fileType?: undefined;
893
- context?: undefined;
310
+ language?: undefined;
311
+ tool?: undefined;
312
+ errorType?: undefined;
313
+ errorMessage?: undefined;
314
+ line?: undefined;
315
+ errorId?: undefined;
316
+ fixApplied?: undefined;
317
+ timeToFixMs?: undefined;
318
+ task?: undefined;
894
319
  files?: undefined;
895
- limit?: undefined;
896
- category?: undefined;
897
- orgId?: undefined;
898
- communityStats?: undefined;
899
- orgStats?: undefined;
900
- projectDNA?: undefined;
901
- weights?: undefined;
902
- teamId?: undefined;
903
- teamProfiles?: undefined;
904
- orgBenchmarks?: undefined;
905
- knowledgeGaps?: undefined;
906
- risks?: undefined;
907
- opportunities?: undefined;
908
- intelligenceScore?: undefined;
909
- decisions?: undefined;
910
- benchmarks?: undefined;
911
- lifecycles?: undefined;
912
- minEvents?: undefined;
913
- projectPath?: undefined;
914
- file?: undefined;
915
- code?: undefined;
916
- toolName?: undefined;
917
- compact?: undefined;
918
- project?: undefined;
919
- sessionId?: undefined;
920
- filesTouched?: undefined;
921
- keyDecisions?: undefined;
922
- contextSnapshot?: undefined;
923
- feature?: undefined;
924
- taskType?: undefined;
925
- days?: undefined;
926
- teamName?: undefined;
927
- from?: undefined;
928
- to?: undefined;
929
- data?: undefined;
320
+ description?: undefined;
930
321
  };
931
322
  required: string[];
932
323
  };
@@ -936,118 +327,36 @@ export declare const TOOLS: ({
936
327
  inputSchema: {
937
328
  type: string;
938
329
  properties: {
939
- minEvents: {
330
+ project: {
940
331
  type: string;
941
- description: string;
942
332
  };
943
- limit: {
333
+ task: {
944
334
  type: string;
945
- description: string;
946
335
  };
947
- language?: undefined;
948
- framework?: undefined;
949
- type?: undefined;
950
- originalCode?: undefined;
951
- editedCode?: undefined;
952
- fileType?: undefined;
953
- context?: undefined;
954
- files?: undefined;
955
- category?: undefined;
956
- orgId?: undefined;
957
- developerId?: undefined;
958
- patterns?: undefined;
959
- outcomesMap?: undefined;
960
- communityStats?: undefined;
961
- orgStats?: undefined;
962
- projectDNA?: undefined;
963
- weights?: undefined;
964
- teamId?: undefined;
965
- teamProfiles?: undefined;
966
- orgBenchmarks?: undefined;
967
- knowledgeGaps?: undefined;
968
- risks?: undefined;
969
- opportunities?: undefined;
970
- intelligenceScore?: undefined;
971
- decisions?: undefined;
972
- benchmarks?: undefined;
973
- lifecycles?: undefined;
974
- allProfiles?: undefined;
975
- projectPath?: undefined;
976
- file?: undefined;
977
- code?: undefined;
978
- toolName?: undefined;
979
- compact?: undefined;
980
- project?: undefined;
981
- sessionId?: undefined;
982
- filesTouched?: undefined;
983
- keyDecisions?: undefined;
984
- contextSnapshot?: undefined;
985
- feature?: undefined;
986
- taskType?: undefined;
987
- days?: undefined;
988
- teamName?: undefined;
989
- from?: undefined;
990
- to?: undefined;
991
- data?: undefined;
992
- };
993
- required?: undefined;
994
- };
995
- } | {
996
- name: string;
997
- description: string;
998
- inputSchema: {
999
- type: string;
1000
- properties: {
1001
- projectPath: {
336
+ files: {
1002
337
  type: string;
1003
- description: string;
338
+ items: {
339
+ type: string;
340
+ };
1004
341
  };
1005
- language?: undefined;
1006
- framework?: undefined;
342
+ category?: undefined;
343
+ dir?: undefined;
1007
344
  type?: undefined;
1008
345
  originalCode?: undefined;
1009
346
  editedCode?: undefined;
1010
- fileType?: undefined;
1011
- context?: undefined;
1012
- files?: undefined;
1013
- limit?: undefined;
1014
- category?: undefined;
1015
- orgId?: undefined;
1016
- developerId?: undefined;
1017
- patterns?: undefined;
1018
- outcomesMap?: undefined;
1019
- communityStats?: undefined;
1020
- orgStats?: undefined;
1021
- projectDNA?: undefined;
1022
- weights?: undefined;
1023
- teamId?: undefined;
1024
- teamProfiles?: undefined;
1025
- orgBenchmarks?: undefined;
1026
- knowledgeGaps?: undefined;
1027
- risks?: undefined;
1028
- opportunities?: undefined;
1029
- intelligenceScore?: undefined;
1030
- decisions?: undefined;
1031
- benchmarks?: undefined;
1032
- lifecycles?: undefined;
1033
- allProfiles?: undefined;
1034
- minEvents?: undefined;
1035
347
  file?: undefined;
1036
- code?: undefined;
1037
- toolName?: undefined;
1038
- compact?: undefined;
1039
- project?: undefined;
1040
- sessionId?: undefined;
1041
- filesTouched?: undefined;
1042
- keyDecisions?: undefined;
1043
- contextSnapshot?: undefined;
1044
- feature?: undefined;
1045
- taskType?: undefined;
1046
- days?: undefined;
1047
- teamName?: undefined;
1048
- from?: undefined;
1049
- to?: undefined;
1050
- data?: undefined;
348
+ language?: undefined;
349
+ tool?: undefined;
350
+ errorType?: undefined;
351
+ errorMessage?: undefined;
352
+ line?: undefined;
353
+ errorId?: undefined;
354
+ fixApplied?: undefined;
355
+ worked?: undefined;
356
+ timeToFixMs?: undefined;
357
+ decision?: undefined;
358
+ approach?: undefined;
359
+ description?: undefined;
1051
360
  };
1052
361
  required: string[];
1053
362
  };
@@ -1057,990 +366,33 @@ export declare const TOOLS: ({
1057
366
  inputSchema: {
1058
367
  type: string;
1059
368
  properties: {
369
+ project: {
370
+ type: string;
371
+ };
1060
372
  file: {
1061
373
  type: string;
1062
- description: string;
1063
374
  };
1064
- code: {
375
+ description: {
1065
376
  type: string;
1066
- description: string;
1067
377
  };
1068
- language?: undefined;
1069
- framework?: undefined;
378
+ category?: undefined;
379
+ dir?: undefined;
1070
380
  type?: undefined;
1071
381
  originalCode?: undefined;
1072
382
  editedCode?: undefined;
1073
- fileType?: undefined;
1074
- context?: undefined;
383
+ language?: undefined;
384
+ tool?: undefined;
385
+ errorType?: undefined;
386
+ errorMessage?: undefined;
387
+ line?: undefined;
388
+ errorId?: undefined;
389
+ fixApplied?: undefined;
390
+ worked?: undefined;
391
+ timeToFixMs?: undefined;
392
+ decision?: undefined;
393
+ approach?: undefined;
394
+ task?: undefined;
1075
395
  files?: undefined;
1076
- limit?: undefined;
1077
- category?: undefined;
1078
- orgId?: undefined;
1079
- developerId?: undefined;
1080
- patterns?: undefined;
1081
- outcomesMap?: undefined;
1082
- communityStats?: undefined;
1083
- orgStats?: undefined;
1084
- projectDNA?: undefined;
1085
- weights?: undefined;
1086
- teamId?: undefined;
1087
- teamProfiles?: undefined;
1088
- orgBenchmarks?: undefined;
1089
- knowledgeGaps?: undefined;
1090
- risks?: undefined;
1091
- opportunities?: undefined;
1092
- intelligenceScore?: undefined;
1093
- decisions?: undefined;
1094
- benchmarks?: undefined;
1095
- lifecycles?: undefined;
1096
- allProfiles?: undefined;
1097
- minEvents?: undefined;
1098
- projectPath?: undefined;
1099
- toolName?: undefined;
1100
- compact?: undefined;
1101
- project?: undefined;
1102
- sessionId?: undefined;
1103
- filesTouched?: undefined;
1104
- keyDecisions?: undefined;
1105
- contextSnapshot?: undefined;
1106
- feature?: undefined;
1107
- taskType?: undefined;
1108
- days?: undefined;
1109
- teamName?: undefined;
1110
- from?: undefined;
1111
- to?: undefined;
1112
- data?: undefined;
1113
- };
1114
- required: string[];
1115
- };
1116
- } | {
1117
- name: string;
1118
- description: string;
1119
- inputSchema: {
1120
- type: string;
1121
- properties: {
1122
- file: {
1123
- type: string;
1124
- description: string;
1125
- };
1126
- context: {
1127
- type: string;
1128
- description: string;
1129
- };
1130
- language?: undefined;
1131
- framework?: undefined;
1132
- type?: undefined;
1133
- originalCode?: undefined;
1134
- editedCode?: undefined;
1135
- fileType?: undefined;
1136
- files?: undefined;
1137
- limit?: undefined;
1138
- category?: undefined;
1139
- orgId?: undefined;
1140
- developerId?: undefined;
1141
- patterns?: undefined;
1142
- outcomesMap?: undefined;
1143
- communityStats?: undefined;
1144
- orgStats?: undefined;
1145
- projectDNA?: undefined;
1146
- weights?: undefined;
1147
- teamId?: undefined;
1148
- teamProfiles?: undefined;
1149
- orgBenchmarks?: undefined;
1150
- knowledgeGaps?: undefined;
1151
- risks?: undefined;
1152
- opportunities?: undefined;
1153
- intelligenceScore?: undefined;
1154
- decisions?: undefined;
1155
- benchmarks?: undefined;
1156
- lifecycles?: undefined;
1157
- allProfiles?: undefined;
1158
- minEvents?: undefined;
1159
- projectPath?: undefined;
1160
- code?: undefined;
1161
- toolName?: undefined;
1162
- compact?: undefined;
1163
- project?: undefined;
1164
- sessionId?: undefined;
1165
- filesTouched?: undefined;
1166
- keyDecisions?: undefined;
1167
- contextSnapshot?: undefined;
1168
- feature?: undefined;
1169
- taskType?: undefined;
1170
- days?: undefined;
1171
- teamName?: undefined;
1172
- from?: undefined;
1173
- to?: undefined;
1174
- data?: undefined;
1175
- };
1176
- required: string[];
1177
- };
1178
- } | {
1179
- name: string;
1180
- description: string;
1181
- inputSchema: {
1182
- type: string;
1183
- properties: {
1184
- projectPath: {
1185
- type: string;
1186
- description: string;
1187
- };
1188
- toolName: {
1189
- type: string;
1190
- description: string;
1191
- };
1192
- compact: {
1193
- type: string;
1194
- description: string;
1195
- };
1196
- language?: undefined;
1197
- framework?: undefined;
1198
- type?: undefined;
1199
- originalCode?: undefined;
1200
- editedCode?: undefined;
1201
- fileType?: undefined;
1202
- context?: undefined;
1203
- files?: undefined;
1204
- limit?: undefined;
1205
- category?: undefined;
1206
- orgId?: undefined;
1207
- developerId?: undefined;
1208
- patterns?: undefined;
1209
- outcomesMap?: undefined;
1210
- communityStats?: undefined;
1211
- orgStats?: undefined;
1212
- projectDNA?: undefined;
1213
- weights?: undefined;
1214
- teamId?: undefined;
1215
- teamProfiles?: undefined;
1216
- orgBenchmarks?: undefined;
1217
- knowledgeGaps?: undefined;
1218
- risks?: undefined;
1219
- opportunities?: undefined;
1220
- intelligenceScore?: undefined;
1221
- decisions?: undefined;
1222
- benchmarks?: undefined;
1223
- lifecycles?: undefined;
1224
- allProfiles?: undefined;
1225
- minEvents?: undefined;
1226
- file?: undefined;
1227
- code?: undefined;
1228
- project?: undefined;
1229
- sessionId?: undefined;
1230
- filesTouched?: undefined;
1231
- keyDecisions?: undefined;
1232
- contextSnapshot?: undefined;
1233
- feature?: undefined;
1234
- taskType?: undefined;
1235
- days?: undefined;
1236
- teamName?: undefined;
1237
- from?: undefined;
1238
- to?: undefined;
1239
- data?: undefined;
1240
- };
1241
- required?: undefined;
1242
- };
1243
- } | {
1244
- name: string;
1245
- description: string;
1246
- inputSchema: {
1247
- type: string;
1248
- properties: {
1249
- toolName: {
1250
- type: string;
1251
- description: string;
1252
- };
1253
- project: {
1254
- type: string;
1255
- description: string;
1256
- };
1257
- language?: undefined;
1258
- framework?: undefined;
1259
- type?: undefined;
1260
- originalCode?: undefined;
1261
- editedCode?: undefined;
1262
- fileType?: undefined;
1263
- context?: undefined;
1264
- files?: undefined;
1265
- limit?: undefined;
1266
- category?: undefined;
1267
- orgId?: undefined;
1268
- developerId?: undefined;
1269
- patterns?: undefined;
1270
- outcomesMap?: undefined;
1271
- communityStats?: undefined;
1272
- orgStats?: undefined;
1273
- projectDNA?: undefined;
1274
- weights?: undefined;
1275
- teamId?: undefined;
1276
- teamProfiles?: undefined;
1277
- orgBenchmarks?: undefined;
1278
- knowledgeGaps?: undefined;
1279
- risks?: undefined;
1280
- opportunities?: undefined;
1281
- intelligenceScore?: undefined;
1282
- decisions?: undefined;
1283
- benchmarks?: undefined;
1284
- lifecycles?: undefined;
1285
- allProfiles?: undefined;
1286
- minEvents?: undefined;
1287
- projectPath?: undefined;
1288
- file?: undefined;
1289
- code?: undefined;
1290
- compact?: undefined;
1291
- sessionId?: undefined;
1292
- filesTouched?: undefined;
1293
- keyDecisions?: undefined;
1294
- contextSnapshot?: undefined;
1295
- feature?: undefined;
1296
- taskType?: undefined;
1297
- days?: undefined;
1298
- teamName?: undefined;
1299
- from?: undefined;
1300
- to?: undefined;
1301
- data?: undefined;
1302
- };
1303
- required: string[];
1304
- };
1305
- } | {
1306
- name: string;
1307
- description: string;
1308
- inputSchema: {
1309
- type: string;
1310
- properties: {
1311
- sessionId: {
1312
- type: string;
1313
- description: string;
1314
- };
1315
- filesTouched: {
1316
- type: string;
1317
- items: {
1318
- type: string;
1319
- };
1320
- description: string;
1321
- };
1322
- keyDecisions: {
1323
- type: string;
1324
- items: {
1325
- type: string;
1326
- };
1327
- description: string;
1328
- };
1329
- contextSnapshot: {
1330
- type: string;
1331
- description: string;
1332
- };
1333
- language?: undefined;
1334
- framework?: undefined;
1335
- type?: undefined;
1336
- originalCode?: undefined;
1337
- editedCode?: undefined;
1338
- fileType?: undefined;
1339
- context?: undefined;
1340
- files?: undefined;
1341
- limit?: undefined;
1342
- category?: undefined;
1343
- orgId?: undefined;
1344
- developerId?: undefined;
1345
- patterns?: undefined;
1346
- outcomesMap?: undefined;
1347
- communityStats?: undefined;
1348
- orgStats?: undefined;
1349
- projectDNA?: undefined;
1350
- weights?: undefined;
1351
- teamId?: undefined;
1352
- teamProfiles?: undefined;
1353
- orgBenchmarks?: undefined;
1354
- knowledgeGaps?: undefined;
1355
- risks?: undefined;
1356
- opportunities?: undefined;
1357
- intelligenceScore?: undefined;
1358
- decisions?: undefined;
1359
- benchmarks?: undefined;
1360
- lifecycles?: undefined;
1361
- allProfiles?: undefined;
1362
- minEvents?: undefined;
1363
- projectPath?: undefined;
1364
- file?: undefined;
1365
- code?: undefined;
1366
- toolName?: undefined;
1367
- compact?: undefined;
1368
- project?: undefined;
1369
- feature?: undefined;
1370
- taskType?: undefined;
1371
- days?: undefined;
1372
- teamName?: undefined;
1373
- from?: undefined;
1374
- to?: undefined;
1375
- data?: undefined;
1376
- };
1377
- required: string[];
1378
- };
1379
- } | {
1380
- name: string;
1381
- description: string;
1382
- inputSchema: {
1383
- type: string;
1384
- properties: {
1385
- limit: {
1386
- type: string;
1387
- description: string;
1388
- };
1389
- project: {
1390
- type: string;
1391
- description: string;
1392
- };
1393
- language?: undefined;
1394
- framework?: undefined;
1395
- type?: undefined;
1396
- originalCode?: undefined;
1397
- editedCode?: undefined;
1398
- fileType?: undefined;
1399
- context?: undefined;
1400
- files?: undefined;
1401
- category?: undefined;
1402
- orgId?: undefined;
1403
- developerId?: undefined;
1404
- patterns?: undefined;
1405
- outcomesMap?: undefined;
1406
- communityStats?: undefined;
1407
- orgStats?: undefined;
1408
- projectDNA?: undefined;
1409
- weights?: undefined;
1410
- teamId?: undefined;
1411
- teamProfiles?: undefined;
1412
- orgBenchmarks?: undefined;
1413
- knowledgeGaps?: undefined;
1414
- risks?: undefined;
1415
- opportunities?: undefined;
1416
- intelligenceScore?: undefined;
1417
- decisions?: undefined;
1418
- benchmarks?: undefined;
1419
- lifecycles?: undefined;
1420
- allProfiles?: undefined;
1421
- minEvents?: undefined;
1422
- projectPath?: undefined;
1423
- file?: undefined;
1424
- code?: undefined;
1425
- toolName?: undefined;
1426
- compact?: undefined;
1427
- sessionId?: undefined;
1428
- filesTouched?: undefined;
1429
- keyDecisions?: undefined;
1430
- contextSnapshot?: undefined;
1431
- feature?: undefined;
1432
- taskType?: undefined;
1433
- days?: undefined;
1434
- teamName?: undefined;
1435
- from?: undefined;
1436
- to?: undefined;
1437
- data?: undefined;
1438
- };
1439
- required?: undefined;
1440
- };
1441
- } | {
1442
- name: string;
1443
- description: string;
1444
- inputSchema: {
1445
- type: string;
1446
- properties: {
1447
- project: {
1448
- type: string;
1449
- description: string;
1450
- };
1451
- type: {
1452
- type: string;
1453
- description: string;
1454
- enum?: undefined;
1455
- };
1456
- language?: undefined;
1457
- framework?: undefined;
1458
- originalCode?: undefined;
1459
- editedCode?: undefined;
1460
- fileType?: undefined;
1461
- context?: undefined;
1462
- files?: undefined;
1463
- limit?: undefined;
1464
- category?: undefined;
1465
- orgId?: undefined;
1466
- developerId?: undefined;
1467
- patterns?: undefined;
1468
- outcomesMap?: undefined;
1469
- communityStats?: undefined;
1470
- orgStats?: undefined;
1471
- projectDNA?: undefined;
1472
- weights?: undefined;
1473
- teamId?: undefined;
1474
- teamProfiles?: undefined;
1475
- orgBenchmarks?: undefined;
1476
- knowledgeGaps?: undefined;
1477
- risks?: undefined;
1478
- opportunities?: undefined;
1479
- intelligenceScore?: undefined;
1480
- decisions?: undefined;
1481
- benchmarks?: undefined;
1482
- lifecycles?: undefined;
1483
- allProfiles?: undefined;
1484
- minEvents?: undefined;
1485
- projectPath?: undefined;
1486
- file?: undefined;
1487
- code?: undefined;
1488
- toolName?: undefined;
1489
- compact?: undefined;
1490
- sessionId?: undefined;
1491
- filesTouched?: undefined;
1492
- keyDecisions?: undefined;
1493
- contextSnapshot?: undefined;
1494
- feature?: undefined;
1495
- taskType?: undefined;
1496
- days?: undefined;
1497
- teamName?: undefined;
1498
- from?: undefined;
1499
- to?: undefined;
1500
- data?: undefined;
1501
- };
1502
- required?: undefined;
1503
- };
1504
- } | {
1505
- name: string;
1506
- description: string;
1507
- inputSchema: {
1508
- type: string;
1509
- properties: {
1510
- file: {
1511
- type: string;
1512
- description: string;
1513
- };
1514
- language?: undefined;
1515
- framework?: undefined;
1516
- type?: undefined;
1517
- originalCode?: undefined;
1518
- editedCode?: undefined;
1519
- fileType?: undefined;
1520
- context?: undefined;
1521
- files?: undefined;
1522
- limit?: undefined;
1523
- category?: undefined;
1524
- orgId?: undefined;
1525
- developerId?: undefined;
1526
- patterns?: undefined;
1527
- outcomesMap?: undefined;
1528
- communityStats?: undefined;
1529
- orgStats?: undefined;
1530
- projectDNA?: undefined;
1531
- weights?: undefined;
1532
- teamId?: undefined;
1533
- teamProfiles?: undefined;
1534
- orgBenchmarks?: undefined;
1535
- knowledgeGaps?: undefined;
1536
- risks?: undefined;
1537
- opportunities?: undefined;
1538
- intelligenceScore?: undefined;
1539
- decisions?: undefined;
1540
- benchmarks?: undefined;
1541
- lifecycles?: undefined;
1542
- allProfiles?: undefined;
1543
- minEvents?: undefined;
1544
- projectPath?: undefined;
1545
- code?: undefined;
1546
- toolName?: undefined;
1547
- compact?: undefined;
1548
- project?: undefined;
1549
- sessionId?: undefined;
1550
- filesTouched?: undefined;
1551
- keyDecisions?: undefined;
1552
- contextSnapshot?: undefined;
1553
- feature?: undefined;
1554
- taskType?: undefined;
1555
- days?: undefined;
1556
- teamName?: undefined;
1557
- from?: undefined;
1558
- to?: undefined;
1559
- data?: undefined;
1560
- };
1561
- required: string[];
1562
- };
1563
- } | {
1564
- name: string;
1565
- description: string;
1566
- inputSchema: {
1567
- type: string;
1568
- properties: {
1569
- feature: {
1570
- type: string;
1571
- description: string;
1572
- };
1573
- language?: undefined;
1574
- framework?: undefined;
1575
- type?: undefined;
1576
- originalCode?: undefined;
1577
- editedCode?: undefined;
1578
- fileType?: undefined;
1579
- context?: undefined;
1580
- files?: undefined;
1581
- limit?: undefined;
1582
- category?: undefined;
1583
- orgId?: undefined;
1584
- developerId?: undefined;
1585
- patterns?: undefined;
1586
- outcomesMap?: undefined;
1587
- communityStats?: undefined;
1588
- orgStats?: undefined;
1589
- projectDNA?: undefined;
1590
- weights?: undefined;
1591
- teamId?: undefined;
1592
- teamProfiles?: undefined;
1593
- orgBenchmarks?: undefined;
1594
- knowledgeGaps?: undefined;
1595
- risks?: undefined;
1596
- opportunities?: undefined;
1597
- intelligenceScore?: undefined;
1598
- decisions?: undefined;
1599
- benchmarks?: undefined;
1600
- lifecycles?: undefined;
1601
- allProfiles?: undefined;
1602
- minEvents?: undefined;
1603
- projectPath?: undefined;
1604
- file?: undefined;
1605
- code?: undefined;
1606
- toolName?: undefined;
1607
- compact?: undefined;
1608
- project?: undefined;
1609
- sessionId?: undefined;
1610
- filesTouched?: undefined;
1611
- keyDecisions?: undefined;
1612
- contextSnapshot?: undefined;
1613
- taskType?: undefined;
1614
- days?: undefined;
1615
- teamName?: undefined;
1616
- from?: undefined;
1617
- to?: undefined;
1618
- data?: undefined;
1619
- };
1620
- required: string[];
1621
- };
1622
- } | {
1623
- name: string;
1624
- description: string;
1625
- inputSchema: {
1626
- type: string;
1627
- properties: {
1628
- taskType: {
1629
- type: string;
1630
- description: string;
1631
- };
1632
- language?: undefined;
1633
- framework?: undefined;
1634
- type?: undefined;
1635
- originalCode?: undefined;
1636
- editedCode?: undefined;
1637
- fileType?: undefined;
1638
- context?: undefined;
1639
- files?: undefined;
1640
- limit?: undefined;
1641
- category?: undefined;
1642
- orgId?: undefined;
1643
- developerId?: undefined;
1644
- patterns?: undefined;
1645
- outcomesMap?: undefined;
1646
- communityStats?: undefined;
1647
- orgStats?: undefined;
1648
- projectDNA?: undefined;
1649
- weights?: undefined;
1650
- teamId?: undefined;
1651
- teamProfiles?: undefined;
1652
- orgBenchmarks?: undefined;
1653
- knowledgeGaps?: undefined;
1654
- risks?: undefined;
1655
- opportunities?: undefined;
1656
- intelligenceScore?: undefined;
1657
- decisions?: undefined;
1658
- benchmarks?: undefined;
1659
- lifecycles?: undefined;
1660
- allProfiles?: undefined;
1661
- minEvents?: undefined;
1662
- projectPath?: undefined;
1663
- file?: undefined;
1664
- code?: undefined;
1665
- toolName?: undefined;
1666
- compact?: undefined;
1667
- project?: undefined;
1668
- sessionId?: undefined;
1669
- filesTouched?: undefined;
1670
- keyDecisions?: undefined;
1671
- contextSnapshot?: undefined;
1672
- feature?: undefined;
1673
- days?: undefined;
1674
- teamName?: undefined;
1675
- from?: undefined;
1676
- to?: undefined;
1677
- data?: undefined;
1678
- };
1679
- required: string[];
1680
- };
1681
- } | {
1682
- name: string;
1683
- description: string;
1684
- inputSchema: {
1685
- type: string;
1686
- properties: {
1687
- toolName: {
1688
- type: string;
1689
- description: string;
1690
- };
1691
- language?: undefined;
1692
- framework?: undefined;
1693
- type?: undefined;
1694
- originalCode?: undefined;
1695
- editedCode?: undefined;
1696
- fileType?: undefined;
1697
- context?: undefined;
1698
- files?: undefined;
1699
- limit?: undefined;
1700
- category?: undefined;
1701
- orgId?: undefined;
1702
- developerId?: undefined;
1703
- patterns?: undefined;
1704
- outcomesMap?: undefined;
1705
- communityStats?: undefined;
1706
- orgStats?: undefined;
1707
- projectDNA?: undefined;
1708
- weights?: undefined;
1709
- teamId?: undefined;
1710
- teamProfiles?: undefined;
1711
- orgBenchmarks?: undefined;
1712
- knowledgeGaps?: undefined;
1713
- risks?: undefined;
1714
- opportunities?: undefined;
1715
- intelligenceScore?: undefined;
1716
- decisions?: undefined;
1717
- benchmarks?: undefined;
1718
- lifecycles?: undefined;
1719
- allProfiles?: undefined;
1720
- minEvents?: undefined;
1721
- projectPath?: undefined;
1722
- file?: undefined;
1723
- code?: undefined;
1724
- compact?: undefined;
1725
- project?: undefined;
1726
- sessionId?: undefined;
1727
- filesTouched?: undefined;
1728
- keyDecisions?: undefined;
1729
- contextSnapshot?: undefined;
1730
- feature?: undefined;
1731
- taskType?: undefined;
1732
- days?: undefined;
1733
- teamName?: undefined;
1734
- from?: undefined;
1735
- to?: undefined;
1736
- data?: undefined;
1737
- };
1738
- required: string[];
1739
- };
1740
- } | {
1741
- name: string;
1742
- description: string;
1743
- inputSchema: {
1744
- type: string;
1745
- properties: {
1746
- project: {
1747
- type: string;
1748
- description: string;
1749
- };
1750
- language?: undefined;
1751
- framework?: undefined;
1752
- type?: undefined;
1753
- originalCode?: undefined;
1754
- editedCode?: undefined;
1755
- fileType?: undefined;
1756
- context?: undefined;
1757
- files?: undefined;
1758
- limit?: undefined;
1759
- category?: undefined;
1760
- orgId?: undefined;
1761
- developerId?: undefined;
1762
- patterns?: undefined;
1763
- outcomesMap?: undefined;
1764
- communityStats?: undefined;
1765
- orgStats?: undefined;
1766
- projectDNA?: undefined;
1767
- weights?: undefined;
1768
- teamId?: undefined;
1769
- teamProfiles?: undefined;
1770
- orgBenchmarks?: undefined;
1771
- knowledgeGaps?: undefined;
1772
- risks?: undefined;
1773
- opportunities?: undefined;
1774
- intelligenceScore?: undefined;
1775
- decisions?: undefined;
1776
- benchmarks?: undefined;
1777
- lifecycles?: undefined;
1778
- allProfiles?: undefined;
1779
- minEvents?: undefined;
1780
- projectPath?: undefined;
1781
- file?: undefined;
1782
- code?: undefined;
1783
- toolName?: undefined;
1784
- compact?: undefined;
1785
- sessionId?: undefined;
1786
- filesTouched?: undefined;
1787
- keyDecisions?: undefined;
1788
- contextSnapshot?: undefined;
1789
- feature?: undefined;
1790
- taskType?: undefined;
1791
- days?: undefined;
1792
- teamName?: undefined;
1793
- from?: undefined;
1794
- to?: undefined;
1795
- data?: undefined;
1796
- };
1797
- required?: undefined;
1798
- };
1799
- } | {
1800
- name: string;
1801
- description: string;
1802
- inputSchema: {
1803
- type: string;
1804
- properties: {
1805
- days: {
1806
- type: string;
1807
- description: string;
1808
- };
1809
- project: {
1810
- type: string;
1811
- description: string;
1812
- };
1813
- language?: undefined;
1814
- framework?: undefined;
1815
- type?: undefined;
1816
- originalCode?: undefined;
1817
- editedCode?: undefined;
1818
- fileType?: undefined;
1819
- context?: undefined;
1820
- files?: undefined;
1821
- limit?: undefined;
1822
- category?: undefined;
1823
- orgId?: undefined;
1824
- developerId?: undefined;
1825
- patterns?: undefined;
1826
- outcomesMap?: undefined;
1827
- communityStats?: undefined;
1828
- orgStats?: undefined;
1829
- projectDNA?: undefined;
1830
- weights?: undefined;
1831
- teamId?: undefined;
1832
- teamProfiles?: undefined;
1833
- orgBenchmarks?: undefined;
1834
- knowledgeGaps?: undefined;
1835
- risks?: undefined;
1836
- opportunities?: undefined;
1837
- intelligenceScore?: undefined;
1838
- decisions?: undefined;
1839
- benchmarks?: undefined;
1840
- lifecycles?: undefined;
1841
- allProfiles?: undefined;
1842
- minEvents?: undefined;
1843
- projectPath?: undefined;
1844
- file?: undefined;
1845
- code?: undefined;
1846
- toolName?: undefined;
1847
- compact?: undefined;
1848
- sessionId?: undefined;
1849
- filesTouched?: undefined;
1850
- keyDecisions?: undefined;
1851
- contextSnapshot?: undefined;
1852
- feature?: undefined;
1853
- taskType?: undefined;
1854
- teamName?: undefined;
1855
- from?: undefined;
1856
- to?: undefined;
1857
- data?: undefined;
1858
- };
1859
- required?: undefined;
1860
- };
1861
- } | {
1862
- name: string;
1863
- description: string;
1864
- inputSchema: {
1865
- type: string;
1866
- properties: {
1867
- teamName: {
1868
- type: string;
1869
- description: string;
1870
- };
1871
- project: {
1872
- type: string;
1873
- description: string;
1874
- };
1875
- language?: undefined;
1876
- framework?: undefined;
1877
- type?: undefined;
1878
- originalCode?: undefined;
1879
- editedCode?: undefined;
1880
- fileType?: undefined;
1881
- context?: undefined;
1882
- files?: undefined;
1883
- limit?: undefined;
1884
- category?: undefined;
1885
- orgId?: undefined;
1886
- developerId?: undefined;
1887
- patterns?: undefined;
1888
- outcomesMap?: undefined;
1889
- communityStats?: undefined;
1890
- orgStats?: undefined;
1891
- projectDNA?: undefined;
1892
- weights?: undefined;
1893
- teamId?: undefined;
1894
- teamProfiles?: undefined;
1895
- orgBenchmarks?: undefined;
1896
- knowledgeGaps?: undefined;
1897
- risks?: undefined;
1898
- opportunities?: undefined;
1899
- intelligenceScore?: undefined;
1900
- decisions?: undefined;
1901
- benchmarks?: undefined;
1902
- lifecycles?: undefined;
1903
- allProfiles?: undefined;
1904
- minEvents?: undefined;
1905
- projectPath?: undefined;
1906
- file?: undefined;
1907
- code?: undefined;
1908
- toolName?: undefined;
1909
- compact?: undefined;
1910
- sessionId?: undefined;
1911
- filesTouched?: undefined;
1912
- keyDecisions?: undefined;
1913
- contextSnapshot?: undefined;
1914
- feature?: undefined;
1915
- taskType?: undefined;
1916
- days?: undefined;
1917
- from?: undefined;
1918
- to?: undefined;
1919
- data?: undefined;
1920
- };
1921
- required: string[];
1922
- };
1923
- } | {
1924
- name: string;
1925
- description: string;
1926
- inputSchema: {
1927
- type: string;
1928
- properties: {
1929
- from: {
1930
- type: string;
1931
- description: string;
1932
- };
1933
- to: {
1934
- type: string;
1935
- description: string;
1936
- };
1937
- project: {
1938
- type: string;
1939
- description: string;
1940
- };
1941
- language?: undefined;
1942
- framework?: undefined;
1943
- type?: undefined;
1944
- originalCode?: undefined;
1945
- editedCode?: undefined;
1946
- fileType?: undefined;
1947
- context?: undefined;
1948
- files?: undefined;
1949
- limit?: undefined;
1950
- category?: undefined;
1951
- orgId?: undefined;
1952
- developerId?: undefined;
1953
- patterns?: undefined;
1954
- outcomesMap?: undefined;
1955
- communityStats?: undefined;
1956
- orgStats?: undefined;
1957
- projectDNA?: undefined;
1958
- weights?: undefined;
1959
- teamId?: undefined;
1960
- teamProfiles?: undefined;
1961
- orgBenchmarks?: undefined;
1962
- knowledgeGaps?: undefined;
1963
- risks?: undefined;
1964
- opportunities?: undefined;
1965
- intelligenceScore?: undefined;
1966
- decisions?: undefined;
1967
- benchmarks?: undefined;
1968
- lifecycles?: undefined;
1969
- allProfiles?: undefined;
1970
- minEvents?: undefined;
1971
- projectPath?: undefined;
1972
- file?: undefined;
1973
- code?: undefined;
1974
- toolName?: undefined;
1975
- compact?: undefined;
1976
- sessionId?: undefined;
1977
- filesTouched?: undefined;
1978
- keyDecisions?: undefined;
1979
- contextSnapshot?: undefined;
1980
- feature?: undefined;
1981
- taskType?: undefined;
1982
- days?: undefined;
1983
- teamName?: undefined;
1984
- data?: undefined;
1985
- };
1986
- required: string[];
1987
- };
1988
- } | {
1989
- name: string;
1990
- description: string;
1991
- inputSchema: {
1992
- type: string;
1993
- properties: {
1994
- data: {
1995
- type: string;
1996
- description: string;
1997
- };
1998
- language?: undefined;
1999
- framework?: undefined;
2000
- type?: undefined;
2001
- originalCode?: undefined;
2002
- editedCode?: undefined;
2003
- fileType?: undefined;
2004
- context?: undefined;
2005
- files?: undefined;
2006
- limit?: undefined;
2007
- category?: undefined;
2008
- orgId?: undefined;
2009
- developerId?: undefined;
2010
- patterns?: undefined;
2011
- outcomesMap?: undefined;
2012
- communityStats?: undefined;
2013
- orgStats?: undefined;
2014
- projectDNA?: undefined;
2015
- weights?: undefined;
2016
- teamId?: undefined;
2017
- teamProfiles?: undefined;
2018
- orgBenchmarks?: undefined;
2019
- knowledgeGaps?: undefined;
2020
- risks?: undefined;
2021
- opportunities?: undefined;
2022
- intelligenceScore?: undefined;
2023
- decisions?: undefined;
2024
- benchmarks?: undefined;
2025
- lifecycles?: undefined;
2026
- allProfiles?: undefined;
2027
- minEvents?: undefined;
2028
- projectPath?: undefined;
2029
- file?: undefined;
2030
- code?: undefined;
2031
- toolName?: undefined;
2032
- compact?: undefined;
2033
- project?: undefined;
2034
- sessionId?: undefined;
2035
- filesTouched?: undefined;
2036
- keyDecisions?: undefined;
2037
- contextSnapshot?: undefined;
2038
- feature?: undefined;
2039
- taskType?: undefined;
2040
- days?: undefined;
2041
- teamName?: undefined;
2042
- from?: undefined;
2043
- to?: undefined;
2044
396
  };
2045
397
  required: string[];
2046
398
  };