couchloop-eq-mcp 1.1.3 → 1.1.6

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 (89) hide show
  1. package/README.md +6 -0
  2. package/dist/clients/shrinkChatClient.d.ts +4 -4
  3. package/dist/index.js +168 -6
  4. package/dist/index.js.map +1 -1
  5. package/dist/server/chatgpt-mcp.d.ts.map +1 -1
  6. package/dist/server/chatgpt-mcp.js +112 -2
  7. package/dist/server/chatgpt-mcp.js.map +1 -1
  8. package/dist/server/http-mcp.d.ts +11 -0
  9. package/dist/server/http-mcp.d.ts.map +1 -0
  10. package/dist/server/http-mcp.js +431 -0
  11. package/dist/server/http-mcp.js.map +1 -0
  12. package/dist/server/index.d.ts.map +1 -1
  13. package/dist/server/index.js +28 -3
  14. package/dist/server/index.js.map +1 -1
  15. package/dist/server/sse.d.ts +1 -1
  16. package/dist/server/sse.d.ts.map +1 -1
  17. package/dist/server/sse.js +320 -69
  18. package/dist/server/sse.js.map +1 -1
  19. package/dist/tools/check-versions.d.ts +7 -7
  20. package/dist/tools/check-versions.d.ts.map +1 -1
  21. package/dist/tools/check-versions.js +17 -22
  22. package/dist/tools/check-versions.js.map +1 -1
  23. package/dist/tools/checkpoint.d.ts +4 -18
  24. package/dist/tools/checkpoint.d.ts.map +1 -1
  25. package/dist/tools/checkpoint.js +85 -11
  26. package/dist/tools/checkpoint.js.map +1 -1
  27. package/dist/tools/comprehensive-code-review.d.ts +78 -0
  28. package/dist/tools/comprehensive-code-review.d.ts.map +1 -0
  29. package/dist/tools/comprehensive-code-review.js +177 -0
  30. package/dist/tools/comprehensive-code-review.js.map +1 -0
  31. package/dist/tools/comprehensive-package-audit.d.ts +75 -0
  32. package/dist/tools/comprehensive-package-audit.d.ts.map +1 -0
  33. package/dist/tools/comprehensive-package-audit.js +151 -0
  34. package/dist/tools/comprehensive-package-audit.js.map +1 -0
  35. package/dist/tools/detect-build-context.d.ts +59 -0
  36. package/dist/tools/detect-build-context.d.ts.map +1 -0
  37. package/dist/tools/detect-build-context.js +80 -0
  38. package/dist/tools/detect-build-context.js.map +1 -0
  39. package/dist/tools/generate-upgrade-report.d.ts +85 -0
  40. package/dist/tools/generate-upgrade-report.d.ts.map +1 -0
  41. package/dist/tools/generate-upgrade-report.js +102 -0
  42. package/dist/tools/generate-upgrade-report.js.map +1 -0
  43. package/dist/tools/index-full.d.ts +1355 -0
  44. package/dist/tools/index-full.d.ts.map +1 -0
  45. package/dist/tools/index-full.js +611 -0
  46. package/dist/tools/index-full.js.map +1 -0
  47. package/dist/tools/index.d.ts +27 -968
  48. package/dist/tools/index.d.ts.map +1 -1
  49. package/dist/tools/index.js +29 -531
  50. package/dist/tools/index.js.map +1 -1
  51. package/dist/tools/insight.d.ts +25 -6
  52. package/dist/tools/insight.d.ts.map +1 -1
  53. package/dist/tools/insight.js +2 -1
  54. package/dist/tools/insight.js.map +1 -1
  55. package/dist/tools/prevent-ai-errors.d.ts +85 -0
  56. package/dist/tools/prevent-ai-errors.d.ts.map +1 -0
  57. package/dist/tools/prevent-ai-errors.js +97 -0
  58. package/dist/tools/prevent-ai-errors.js.map +1 -0
  59. package/dist/tools/primary-tools.d.ts +430 -0
  60. package/dist/tools/primary-tools.d.ts.map +1 -0
  61. package/dist/tools/primary-tools.js +294 -0
  62. package/dist/tools/primary-tools.js.map +1 -0
  63. package/dist/tools/sendMessage.d.ts +3 -5
  64. package/dist/tools/sendMessage.d.ts.map +1 -1
  65. package/dist/tools/sendMessage.js +47 -22
  66. package/dist/tools/sendMessage.js.map +1 -1
  67. package/dist/tools/session-manager.d.ts +32 -0
  68. package/dist/tools/session-manager.d.ts.map +1 -0
  69. package/dist/tools/session-manager.js +184 -0
  70. package/dist/tools/session-manager.js.map +1 -0
  71. package/dist/tools/smart-context.d.ts +66 -0
  72. package/dist/tools/smart-context.d.ts.map +1 -0
  73. package/dist/tools/smart-context.js +167 -0
  74. package/dist/tools/smart-context.js.map +1 -0
  75. package/dist/tools/validate_packages.d.ts.map +1 -1
  76. package/dist/tools/validate_packages.js +6 -4
  77. package/dist/tools/validate_packages.js.map +1 -1
  78. package/dist/types/checkpoint.d.ts +59 -4
  79. package/dist/types/checkpoint.d.ts.map +1 -1
  80. package/dist/types/checkpoint.js +20 -1
  81. package/dist/types/checkpoint.js.map +1 -1
  82. package/dist/types/journey.d.ts +6 -6
  83. package/dist/types/session.d.ts +3 -3
  84. package/dist/utils/sanitize.d.ts +24 -0
  85. package/dist/utils/sanitize.d.ts.map +1 -0
  86. package/dist/utils/sanitize.js +117 -0
  87. package/dist/utils/sanitize.js.map +1 -0
  88. package/dist/workflows/index.d.ts +1 -1
  89. package/package.json +2 -2
@@ -0,0 +1,1355 @@
1
+ import { createSession, resumeSession } from './session.js';
2
+ import { endSession } from './session-manager.js';
3
+ import { saveCheckpoint, getCheckpoints } from './checkpoint.js';
4
+ import { listJourneys, getJourneyStatus } from './journey.js';
5
+ import { saveInsight, getInsights, getUserContext } from './insight.js';
6
+ import { sendMessage } from './sendMessage.js';
7
+ import { handleValidatePackages } from './validate_packages.js';
8
+ import { handlePreventAIErrors } from './prevent-ai-errors.js';
9
+ import { handleDetectBuildContext } from './detect-build-context.js';
10
+ import { handleGenerateUpgradeReport } from './generate-upgrade-report.js';
11
+ import { handleComprehensiveCodeReview } from './comprehensive-code-review.js';
12
+ import { handleComprehensivePackageAudit } from './comprehensive-package-audit.js';
13
+ import { handleSmartContext } from './smart-context.js';
14
+ import { protectFiles, getProtectionStatus, getOperationHistory, listBackups, rollbackFile, disableCodeFreeze } from './protect-files.js';
15
+ import { preserveContext } from './preserve-context.js';
16
+ export declare function setupTools(): Promise<({
17
+ definition: {
18
+ name: string;
19
+ description: string;
20
+ annotations: {
21
+ readOnlyHint: boolean;
22
+ destructiveHint: boolean;
23
+ openWorldHint: boolean;
24
+ };
25
+ inputSchema: {
26
+ type: string;
27
+ properties: {
28
+ journey_slug: {
29
+ type: string;
30
+ description: string;
31
+ };
32
+ context: {
33
+ type: string;
34
+ description: string;
35
+ };
36
+ session_id?: undefined;
37
+ message?: undefined;
38
+ save_checkpoint?: undefined;
39
+ checkpoint_key?: undefined;
40
+ advance_step?: undefined;
41
+ include_memory?: undefined;
42
+ system_prompt?: undefined;
43
+ conversation_type?: undefined;
44
+ key?: undefined;
45
+ value?: undefined;
46
+ save_as_insight?: undefined;
47
+ insight_tags?: undefined;
48
+ preserve_context?: undefined;
49
+ context_category?: undefined;
50
+ governance_check?: undefined;
51
+ tag?: undefined;
52
+ content?: undefined;
53
+ tags?: undefined;
54
+ limit?: undefined;
55
+ auth?: undefined;
56
+ include_recent_insights?: undefined;
57
+ include_session_history?: undefined;
58
+ operation?: undefined;
59
+ path?: undefined;
60
+ target_path?: undefined;
61
+ force?: undefined;
62
+ reason?: undefined;
63
+ backup_id?: undefined;
64
+ action?: undefined;
65
+ category?: undefined;
66
+ search_term?: undefined;
67
+ include_metadata?: undefined;
68
+ };
69
+ required: never[];
70
+ };
71
+ };
72
+ handler: typeof createSession;
73
+ } | {
74
+ definition: {
75
+ name: string;
76
+ description: string;
77
+ annotations: {
78
+ readOnlyHint: boolean;
79
+ destructiveHint: boolean;
80
+ openWorldHint: boolean;
81
+ };
82
+ inputSchema: {
83
+ type: string;
84
+ properties: {
85
+ session_id: {
86
+ type: string;
87
+ description: string;
88
+ };
89
+ message: {
90
+ type: string;
91
+ description: string;
92
+ };
93
+ save_checkpoint: {
94
+ type: string;
95
+ description: string;
96
+ };
97
+ checkpoint_key: {
98
+ type: string;
99
+ description: string;
100
+ };
101
+ advance_step: {
102
+ type: string;
103
+ description: string;
104
+ };
105
+ include_memory: {
106
+ type: string;
107
+ description: string;
108
+ };
109
+ system_prompt: {
110
+ type: string;
111
+ description: string;
112
+ };
113
+ conversation_type: {
114
+ type: string;
115
+ description: string;
116
+ };
117
+ journey_slug?: undefined;
118
+ context?: undefined;
119
+ key?: undefined;
120
+ value?: undefined;
121
+ save_as_insight?: undefined;
122
+ insight_tags?: undefined;
123
+ preserve_context?: undefined;
124
+ context_category?: undefined;
125
+ governance_check?: undefined;
126
+ tag?: undefined;
127
+ content?: undefined;
128
+ tags?: undefined;
129
+ limit?: undefined;
130
+ auth?: undefined;
131
+ include_recent_insights?: undefined;
132
+ include_session_history?: undefined;
133
+ operation?: undefined;
134
+ path?: undefined;
135
+ target_path?: undefined;
136
+ force?: undefined;
137
+ reason?: undefined;
138
+ backup_id?: undefined;
139
+ action?: undefined;
140
+ category?: undefined;
141
+ search_term?: undefined;
142
+ include_metadata?: undefined;
143
+ };
144
+ required: string[];
145
+ };
146
+ };
147
+ handler: typeof sendMessage;
148
+ } | {
149
+ definition: {
150
+ name: string;
151
+ description: string;
152
+ annotations: {
153
+ readOnlyHint: boolean;
154
+ destructiveHint: boolean;
155
+ openWorldHint: boolean;
156
+ };
157
+ inputSchema: {
158
+ type: string;
159
+ properties: {
160
+ session_id: {
161
+ type: string;
162
+ description: string;
163
+ };
164
+ journey_slug?: undefined;
165
+ context?: undefined;
166
+ message?: undefined;
167
+ save_checkpoint?: undefined;
168
+ checkpoint_key?: undefined;
169
+ advance_step?: undefined;
170
+ include_memory?: undefined;
171
+ system_prompt?: undefined;
172
+ conversation_type?: undefined;
173
+ key?: undefined;
174
+ value?: undefined;
175
+ save_as_insight?: undefined;
176
+ insight_tags?: undefined;
177
+ preserve_context?: undefined;
178
+ context_category?: undefined;
179
+ governance_check?: undefined;
180
+ tag?: undefined;
181
+ content?: undefined;
182
+ tags?: undefined;
183
+ limit?: undefined;
184
+ auth?: undefined;
185
+ include_recent_insights?: undefined;
186
+ include_session_history?: undefined;
187
+ operation?: undefined;
188
+ path?: undefined;
189
+ target_path?: undefined;
190
+ force?: undefined;
191
+ reason?: undefined;
192
+ backup_id?: undefined;
193
+ action?: undefined;
194
+ category?: undefined;
195
+ search_term?: undefined;
196
+ include_metadata?: undefined;
197
+ };
198
+ required: never[];
199
+ };
200
+ };
201
+ handler: typeof resumeSession;
202
+ } | {
203
+ definition: {
204
+ name: string;
205
+ description: string;
206
+ annotations: {
207
+ readOnlyHint: boolean;
208
+ destructiveHint: boolean;
209
+ openWorldHint: boolean;
210
+ };
211
+ inputSchema: {
212
+ type: string;
213
+ properties: {
214
+ session_id: {
215
+ type: string;
216
+ description: string;
217
+ };
218
+ journey_slug?: undefined;
219
+ context?: undefined;
220
+ message?: undefined;
221
+ save_checkpoint?: undefined;
222
+ checkpoint_key?: undefined;
223
+ advance_step?: undefined;
224
+ include_memory?: undefined;
225
+ system_prompt?: undefined;
226
+ conversation_type?: undefined;
227
+ key?: undefined;
228
+ value?: undefined;
229
+ save_as_insight?: undefined;
230
+ insight_tags?: undefined;
231
+ preserve_context?: undefined;
232
+ context_category?: undefined;
233
+ governance_check?: undefined;
234
+ tag?: undefined;
235
+ content?: undefined;
236
+ tags?: undefined;
237
+ limit?: undefined;
238
+ auth?: undefined;
239
+ include_recent_insights?: undefined;
240
+ include_session_history?: undefined;
241
+ operation?: undefined;
242
+ path?: undefined;
243
+ target_path?: undefined;
244
+ force?: undefined;
245
+ reason?: undefined;
246
+ backup_id?: undefined;
247
+ action?: undefined;
248
+ category?: undefined;
249
+ search_term?: undefined;
250
+ include_metadata?: undefined;
251
+ };
252
+ required: never[];
253
+ };
254
+ };
255
+ handler: typeof endSession;
256
+ } | {
257
+ definition: {
258
+ name: string;
259
+ description: string;
260
+ annotations: {
261
+ readOnlyHint: boolean;
262
+ destructiveHint: boolean;
263
+ openWorldHint: boolean;
264
+ };
265
+ inputSchema: {
266
+ type: string;
267
+ properties: {
268
+ session_id: {
269
+ type: string;
270
+ description: string;
271
+ };
272
+ key: {
273
+ type: string;
274
+ description: string;
275
+ };
276
+ value: {
277
+ type: string;
278
+ additionalProperties: boolean;
279
+ description: string;
280
+ };
281
+ advance_step: {
282
+ type: string;
283
+ description: string;
284
+ };
285
+ save_as_insight: {
286
+ type: string;
287
+ description: string;
288
+ };
289
+ insight_tags: {
290
+ type: string;
291
+ items: {
292
+ type: string;
293
+ };
294
+ description: string;
295
+ };
296
+ preserve_context: {
297
+ type: string;
298
+ description: string;
299
+ };
300
+ context_category: {
301
+ type: string;
302
+ enum: string[];
303
+ description: string;
304
+ };
305
+ governance_check: {
306
+ type: string;
307
+ description: string;
308
+ };
309
+ journey_slug?: undefined;
310
+ context?: undefined;
311
+ message?: undefined;
312
+ save_checkpoint?: undefined;
313
+ checkpoint_key?: undefined;
314
+ include_memory?: undefined;
315
+ system_prompt?: undefined;
316
+ conversation_type?: undefined;
317
+ tag?: undefined;
318
+ content?: undefined;
319
+ tags?: undefined;
320
+ limit?: undefined;
321
+ auth?: undefined;
322
+ include_recent_insights?: undefined;
323
+ include_session_history?: undefined;
324
+ operation?: undefined;
325
+ path?: undefined;
326
+ target_path?: undefined;
327
+ force?: undefined;
328
+ reason?: undefined;
329
+ backup_id?: undefined;
330
+ action?: undefined;
331
+ category?: undefined;
332
+ search_term?: undefined;
333
+ include_metadata?: undefined;
334
+ };
335
+ required: string[];
336
+ };
337
+ };
338
+ handler: typeof saveCheckpoint;
339
+ } | {
340
+ definition: {
341
+ name: string;
342
+ description: string;
343
+ annotations: {
344
+ readOnlyHint: boolean;
345
+ destructiveHint: boolean;
346
+ openWorldHint: boolean;
347
+ };
348
+ inputSchema: {
349
+ type: string;
350
+ properties: {
351
+ session_id: {
352
+ type: string;
353
+ description: string;
354
+ };
355
+ journey_slug?: undefined;
356
+ context?: undefined;
357
+ message?: undefined;
358
+ save_checkpoint?: undefined;
359
+ checkpoint_key?: undefined;
360
+ advance_step?: undefined;
361
+ include_memory?: undefined;
362
+ system_prompt?: undefined;
363
+ conversation_type?: undefined;
364
+ key?: undefined;
365
+ value?: undefined;
366
+ save_as_insight?: undefined;
367
+ insight_tags?: undefined;
368
+ preserve_context?: undefined;
369
+ context_category?: undefined;
370
+ governance_check?: undefined;
371
+ tag?: undefined;
372
+ content?: undefined;
373
+ tags?: undefined;
374
+ limit?: undefined;
375
+ auth?: undefined;
376
+ include_recent_insights?: undefined;
377
+ include_session_history?: undefined;
378
+ operation?: undefined;
379
+ path?: undefined;
380
+ target_path?: undefined;
381
+ force?: undefined;
382
+ reason?: undefined;
383
+ backup_id?: undefined;
384
+ action?: undefined;
385
+ category?: undefined;
386
+ search_term?: undefined;
387
+ include_metadata?: undefined;
388
+ };
389
+ required: never[];
390
+ };
391
+ };
392
+ handler: typeof getCheckpoints;
393
+ } | {
394
+ definition: {
395
+ name: string;
396
+ description: string;
397
+ annotations: {
398
+ readOnlyHint: boolean;
399
+ destructiveHint: boolean;
400
+ openWorldHint: boolean;
401
+ };
402
+ inputSchema: {
403
+ type: string;
404
+ properties: {
405
+ tag: {
406
+ type: string;
407
+ description: string;
408
+ };
409
+ journey_slug?: undefined;
410
+ context?: undefined;
411
+ session_id?: undefined;
412
+ message?: undefined;
413
+ save_checkpoint?: undefined;
414
+ checkpoint_key?: undefined;
415
+ advance_step?: undefined;
416
+ include_memory?: undefined;
417
+ system_prompt?: undefined;
418
+ conversation_type?: undefined;
419
+ key?: undefined;
420
+ value?: undefined;
421
+ save_as_insight?: undefined;
422
+ insight_tags?: undefined;
423
+ preserve_context?: undefined;
424
+ context_category?: undefined;
425
+ governance_check?: undefined;
426
+ content?: undefined;
427
+ tags?: undefined;
428
+ limit?: undefined;
429
+ auth?: undefined;
430
+ include_recent_insights?: undefined;
431
+ include_session_history?: undefined;
432
+ operation?: undefined;
433
+ path?: undefined;
434
+ target_path?: undefined;
435
+ force?: undefined;
436
+ reason?: undefined;
437
+ backup_id?: undefined;
438
+ action?: undefined;
439
+ category?: undefined;
440
+ search_term?: undefined;
441
+ include_metadata?: undefined;
442
+ };
443
+ required: never[];
444
+ };
445
+ };
446
+ handler: typeof listJourneys;
447
+ } | {
448
+ definition: {
449
+ name: string;
450
+ description: string;
451
+ annotations: {
452
+ readOnlyHint: boolean;
453
+ destructiveHint: boolean;
454
+ openWorldHint: boolean;
455
+ };
456
+ inputSchema: {
457
+ type: string;
458
+ properties: {
459
+ session_id: {
460
+ type: string;
461
+ description: string;
462
+ };
463
+ journey_slug?: undefined;
464
+ context?: undefined;
465
+ message?: undefined;
466
+ save_checkpoint?: undefined;
467
+ checkpoint_key?: undefined;
468
+ advance_step?: undefined;
469
+ include_memory?: undefined;
470
+ system_prompt?: undefined;
471
+ conversation_type?: undefined;
472
+ key?: undefined;
473
+ value?: undefined;
474
+ save_as_insight?: undefined;
475
+ insight_tags?: undefined;
476
+ preserve_context?: undefined;
477
+ context_category?: undefined;
478
+ governance_check?: undefined;
479
+ tag?: undefined;
480
+ content?: undefined;
481
+ tags?: undefined;
482
+ limit?: undefined;
483
+ auth?: undefined;
484
+ include_recent_insights?: undefined;
485
+ include_session_history?: undefined;
486
+ operation?: undefined;
487
+ path?: undefined;
488
+ target_path?: undefined;
489
+ force?: undefined;
490
+ reason?: undefined;
491
+ backup_id?: undefined;
492
+ action?: undefined;
493
+ category?: undefined;
494
+ search_term?: undefined;
495
+ include_metadata?: undefined;
496
+ };
497
+ required: string[];
498
+ };
499
+ };
500
+ handler: typeof getJourneyStatus;
501
+ } | {
502
+ definition: {
503
+ name: string;
504
+ description: string;
505
+ annotations: {
506
+ readOnlyHint: boolean;
507
+ destructiveHint: boolean;
508
+ openWorldHint: boolean;
509
+ };
510
+ inputSchema: {
511
+ type: string;
512
+ properties: {
513
+ content: {
514
+ type: string;
515
+ description: string;
516
+ };
517
+ session_id: {
518
+ type: string;
519
+ description: string;
520
+ };
521
+ tags: {
522
+ type: string;
523
+ items: {
524
+ type: string;
525
+ };
526
+ description: string;
527
+ };
528
+ journey_slug?: undefined;
529
+ context?: undefined;
530
+ message?: undefined;
531
+ save_checkpoint?: undefined;
532
+ checkpoint_key?: undefined;
533
+ advance_step?: undefined;
534
+ include_memory?: undefined;
535
+ system_prompt?: undefined;
536
+ conversation_type?: undefined;
537
+ key?: undefined;
538
+ value?: undefined;
539
+ save_as_insight?: undefined;
540
+ insight_tags?: undefined;
541
+ preserve_context?: undefined;
542
+ context_category?: undefined;
543
+ governance_check?: undefined;
544
+ tag?: undefined;
545
+ limit?: undefined;
546
+ auth?: undefined;
547
+ include_recent_insights?: undefined;
548
+ include_session_history?: undefined;
549
+ operation?: undefined;
550
+ path?: undefined;
551
+ target_path?: undefined;
552
+ force?: undefined;
553
+ reason?: undefined;
554
+ backup_id?: undefined;
555
+ action?: undefined;
556
+ category?: undefined;
557
+ search_term?: undefined;
558
+ include_metadata?: undefined;
559
+ };
560
+ required: string[];
561
+ };
562
+ };
563
+ handler: typeof saveInsight;
564
+ } | {
565
+ definition: {
566
+ name: string;
567
+ description: string;
568
+ annotations: {
569
+ readOnlyHint: boolean;
570
+ destructiveHint: boolean;
571
+ openWorldHint: boolean;
572
+ };
573
+ inputSchema: {
574
+ type: string;
575
+ properties: {
576
+ session_id: {
577
+ type: string;
578
+ description: string;
579
+ };
580
+ limit: {
581
+ type: string;
582
+ description: string;
583
+ };
584
+ auth: {
585
+ type: string;
586
+ description: string;
587
+ properties: {
588
+ token: {
589
+ type: string;
590
+ description: string;
591
+ };
592
+ user_id: {
593
+ type: string;
594
+ description: string;
595
+ };
596
+ client_id: {
597
+ type: string;
598
+ description: string;
599
+ };
600
+ };
601
+ };
602
+ journey_slug?: undefined;
603
+ context?: undefined;
604
+ message?: undefined;
605
+ save_checkpoint?: undefined;
606
+ checkpoint_key?: undefined;
607
+ advance_step?: undefined;
608
+ include_memory?: undefined;
609
+ system_prompt?: undefined;
610
+ conversation_type?: undefined;
611
+ key?: undefined;
612
+ value?: undefined;
613
+ save_as_insight?: undefined;
614
+ insight_tags?: undefined;
615
+ preserve_context?: undefined;
616
+ context_category?: undefined;
617
+ governance_check?: undefined;
618
+ tag?: undefined;
619
+ content?: undefined;
620
+ tags?: undefined;
621
+ include_recent_insights?: undefined;
622
+ include_session_history?: undefined;
623
+ operation?: undefined;
624
+ path?: undefined;
625
+ target_path?: undefined;
626
+ force?: undefined;
627
+ reason?: undefined;
628
+ backup_id?: undefined;
629
+ action?: undefined;
630
+ category?: undefined;
631
+ search_term?: undefined;
632
+ include_metadata?: undefined;
633
+ };
634
+ required: never[];
635
+ };
636
+ };
637
+ handler: typeof getInsights;
638
+ } | {
639
+ definition: {
640
+ name: string;
641
+ description: string;
642
+ annotations: {
643
+ readOnlyHint: boolean;
644
+ destructiveHint: boolean;
645
+ openWorldHint: boolean;
646
+ };
647
+ inputSchema: {
648
+ type: string;
649
+ properties: {
650
+ include_recent_insights: {
651
+ type: string;
652
+ description: string;
653
+ };
654
+ include_session_history: {
655
+ type: string;
656
+ description: string;
657
+ };
658
+ journey_slug?: undefined;
659
+ context?: undefined;
660
+ session_id?: undefined;
661
+ message?: undefined;
662
+ save_checkpoint?: undefined;
663
+ checkpoint_key?: undefined;
664
+ advance_step?: undefined;
665
+ include_memory?: undefined;
666
+ system_prompt?: undefined;
667
+ conversation_type?: undefined;
668
+ key?: undefined;
669
+ value?: undefined;
670
+ save_as_insight?: undefined;
671
+ insight_tags?: undefined;
672
+ preserve_context?: undefined;
673
+ context_category?: undefined;
674
+ governance_check?: undefined;
675
+ tag?: undefined;
676
+ content?: undefined;
677
+ tags?: undefined;
678
+ limit?: undefined;
679
+ auth?: undefined;
680
+ operation?: undefined;
681
+ path?: undefined;
682
+ target_path?: undefined;
683
+ force?: undefined;
684
+ reason?: undefined;
685
+ backup_id?: undefined;
686
+ action?: undefined;
687
+ category?: undefined;
688
+ search_term?: undefined;
689
+ include_metadata?: undefined;
690
+ };
691
+ required: never[];
692
+ };
693
+ };
694
+ handler: typeof getUserContext;
695
+ } | {
696
+ definition: {
697
+ inputSchema: {
698
+ [x: string]: unknown;
699
+ type: "object";
700
+ properties?: {
701
+ [x: string]: object;
702
+ } | undefined;
703
+ required?: string[] | undefined;
704
+ };
705
+ name: string;
706
+ description?: string | undefined;
707
+ outputSchema?: {
708
+ [x: string]: unknown;
709
+ type: "object";
710
+ properties?: {
711
+ [x: string]: object;
712
+ } | undefined;
713
+ required?: string[] | undefined;
714
+ } | undefined;
715
+ annotations?: {
716
+ title?: string | undefined;
717
+ readOnlyHint?: boolean | undefined;
718
+ destructiveHint?: boolean | undefined;
719
+ idempotentHint?: boolean | undefined;
720
+ openWorldHint?: boolean | undefined;
721
+ } | undefined;
722
+ execution?: {
723
+ taskSupport?: "optional" | "required" | "forbidden" | undefined;
724
+ } | undefined;
725
+ _meta?: {
726
+ [x: string]: unknown;
727
+ } | undefined;
728
+ icons?: {
729
+ src: string;
730
+ mimeType?: string | undefined;
731
+ sizes?: string[] | undefined;
732
+ theme?: "light" | "dark" | undefined;
733
+ }[] | undefined;
734
+ title?: string | undefined;
735
+ };
736
+ handler: typeof handleValidatePackages;
737
+ } | {
738
+ definition: {
739
+ name: string;
740
+ description: string;
741
+ annotations: {
742
+ readOnlyHint: boolean;
743
+ destructiveHint: boolean;
744
+ openWorldHint: boolean;
745
+ };
746
+ inputSchema: {
747
+ type: string;
748
+ properties: {
749
+ code: {
750
+ type: string;
751
+ description: string;
752
+ };
753
+ language: {
754
+ type: string;
755
+ description: string;
756
+ };
757
+ auto_fix: {
758
+ type: string;
759
+ description: string;
760
+ };
761
+ check_build_context: {
762
+ type: string;
763
+ description: string;
764
+ };
765
+ patterns: {
766
+ type: string;
767
+ items: {
768
+ type: string;
769
+ };
770
+ description: string;
771
+ };
772
+ };
773
+ required: string[];
774
+ };
775
+ };
776
+ handler: typeof handlePreventAIErrors;
777
+ } | {
778
+ definition: {
779
+ name: string;
780
+ description: string;
781
+ annotations: {
782
+ readOnlyHint: boolean;
783
+ destructiveHint: boolean;
784
+ openWorldHint: boolean;
785
+ };
786
+ inputSchema: {
787
+ type: string;
788
+ properties: {
789
+ project_root: {
790
+ type: string;
791
+ description: string;
792
+ };
793
+ };
794
+ required: never[];
795
+ };
796
+ };
797
+ handler: typeof handleDetectBuildContext;
798
+ } | {
799
+ definition: {
800
+ name: string;
801
+ description: string;
802
+ annotations: {
803
+ readOnlyHint: boolean;
804
+ destructiveHint: boolean;
805
+ openWorldHint: boolean;
806
+ };
807
+ inputSchema: {
808
+ type: string;
809
+ properties: {
810
+ package_name: {
811
+ type: string;
812
+ description: string;
813
+ };
814
+ current_version: {
815
+ type: string;
816
+ description: string;
817
+ };
818
+ target_version: {
819
+ type: string;
820
+ description: string;
821
+ };
822
+ registry: {
823
+ type: string;
824
+ enum: string[];
825
+ description: string;
826
+ };
827
+ };
828
+ required: string[];
829
+ };
830
+ };
831
+ handler: typeof handleGenerateUpgradeReport;
832
+ } | {
833
+ definition: {
834
+ name: string;
835
+ description: string;
836
+ annotations: {
837
+ readOnlyHint: boolean;
838
+ destructiveHint: boolean;
839
+ openWorldHint: boolean;
840
+ };
841
+ inputSchema: {
842
+ type: string;
843
+ properties: {
844
+ code: {
845
+ type: string;
846
+ description: string;
847
+ };
848
+ language: {
849
+ type: string;
850
+ description: string;
851
+ };
852
+ context: {
853
+ type: string;
854
+ description: string;
855
+ };
856
+ auto_fix: {
857
+ type: string;
858
+ description: string;
859
+ };
860
+ focus: {
861
+ type: string;
862
+ items: {
863
+ type: string;
864
+ enum: string[];
865
+ };
866
+ description: string;
867
+ };
868
+ };
869
+ required: string[];
870
+ };
871
+ };
872
+ handler: typeof handleComprehensiveCodeReview;
873
+ } | {
874
+ definition: {
875
+ name: string;
876
+ description: string;
877
+ annotations: {
878
+ readOnlyHint: boolean;
879
+ destructiveHint: boolean;
880
+ openWorldHint: boolean;
881
+ };
882
+ inputSchema: {
883
+ type: string;
884
+ properties: {
885
+ packages: {
886
+ type: string;
887
+ items: {
888
+ type: string;
889
+ };
890
+ description: string;
891
+ };
892
+ registry: {
893
+ type: string;
894
+ enum: string[];
895
+ description: string;
896
+ };
897
+ include_upgrade_reports: {
898
+ type: string;
899
+ description: string;
900
+ };
901
+ current_versions: {
902
+ type: string;
903
+ additionalProperties: {
904
+ type: string;
905
+ };
906
+ description: string;
907
+ };
908
+ };
909
+ required: string[];
910
+ };
911
+ };
912
+ handler: typeof handleComprehensivePackageAudit;
913
+ } | {
914
+ definition: {
915
+ name: string;
916
+ description: string;
917
+ annotations: {
918
+ readOnlyHint: boolean;
919
+ destructiveHint: boolean;
920
+ openWorldHint: boolean;
921
+ };
922
+ inputSchema: {
923
+ type: string;
924
+ properties: {
925
+ content: {
926
+ type: string;
927
+ description: string;
928
+ };
929
+ key: {
930
+ type: string;
931
+ description: string;
932
+ };
933
+ type: {
934
+ type: string;
935
+ enum: string[];
936
+ description: string;
937
+ };
938
+ tags: {
939
+ type: string;
940
+ items: {
941
+ type: string;
942
+ };
943
+ description: string;
944
+ };
945
+ session_id: {
946
+ type: string;
947
+ description: string;
948
+ };
949
+ detect_project: {
950
+ type: string;
951
+ description: string;
952
+ };
953
+ };
954
+ required: string[];
955
+ };
956
+ };
957
+ handler: typeof handleSmartContext;
958
+ } | {
959
+ definition: {
960
+ name: string;
961
+ description: string;
962
+ annotations: {
963
+ readOnlyHint: boolean;
964
+ destructiveHint: boolean;
965
+ openWorldHint: boolean;
966
+ };
967
+ inputSchema: {
968
+ type: string;
969
+ properties: {
970
+ operation: {
971
+ type: string;
972
+ enum: string[];
973
+ description: string;
974
+ };
975
+ path: {
976
+ type: string;
977
+ description: string;
978
+ };
979
+ target_path: {
980
+ type: string;
981
+ description: string;
982
+ };
983
+ force: {
984
+ type: string;
985
+ description: string;
986
+ };
987
+ reason: {
988
+ type: string;
989
+ description: string;
990
+ };
991
+ journey_slug?: undefined;
992
+ context?: undefined;
993
+ session_id?: undefined;
994
+ message?: undefined;
995
+ save_checkpoint?: undefined;
996
+ checkpoint_key?: undefined;
997
+ advance_step?: undefined;
998
+ include_memory?: undefined;
999
+ system_prompt?: undefined;
1000
+ conversation_type?: undefined;
1001
+ key?: undefined;
1002
+ value?: undefined;
1003
+ save_as_insight?: undefined;
1004
+ insight_tags?: undefined;
1005
+ preserve_context?: undefined;
1006
+ context_category?: undefined;
1007
+ governance_check?: undefined;
1008
+ tag?: undefined;
1009
+ content?: undefined;
1010
+ tags?: undefined;
1011
+ limit?: undefined;
1012
+ auth?: undefined;
1013
+ include_recent_insights?: undefined;
1014
+ include_session_history?: undefined;
1015
+ backup_id?: undefined;
1016
+ action?: undefined;
1017
+ category?: undefined;
1018
+ search_term?: undefined;
1019
+ include_metadata?: undefined;
1020
+ };
1021
+ required: string[];
1022
+ };
1023
+ };
1024
+ handler: typeof protectFiles;
1025
+ } | {
1026
+ definition: {
1027
+ name: string;
1028
+ description: string;
1029
+ annotations: {
1030
+ readOnlyHint: boolean;
1031
+ destructiveHint: boolean;
1032
+ openWorldHint: boolean;
1033
+ };
1034
+ inputSchema: {
1035
+ type: string;
1036
+ properties: {
1037
+ journey_slug?: undefined;
1038
+ context?: undefined;
1039
+ session_id?: undefined;
1040
+ message?: undefined;
1041
+ save_checkpoint?: undefined;
1042
+ checkpoint_key?: undefined;
1043
+ advance_step?: undefined;
1044
+ include_memory?: undefined;
1045
+ system_prompt?: undefined;
1046
+ conversation_type?: undefined;
1047
+ key?: undefined;
1048
+ value?: undefined;
1049
+ save_as_insight?: undefined;
1050
+ insight_tags?: undefined;
1051
+ preserve_context?: undefined;
1052
+ context_category?: undefined;
1053
+ governance_check?: undefined;
1054
+ tag?: undefined;
1055
+ content?: undefined;
1056
+ tags?: undefined;
1057
+ limit?: undefined;
1058
+ auth?: undefined;
1059
+ include_recent_insights?: undefined;
1060
+ include_session_history?: undefined;
1061
+ operation?: undefined;
1062
+ path?: undefined;
1063
+ target_path?: undefined;
1064
+ force?: undefined;
1065
+ reason?: undefined;
1066
+ backup_id?: undefined;
1067
+ action?: undefined;
1068
+ category?: undefined;
1069
+ search_term?: undefined;
1070
+ include_metadata?: undefined;
1071
+ };
1072
+ required: never[];
1073
+ };
1074
+ };
1075
+ handler: typeof getProtectionStatus;
1076
+ } | {
1077
+ definition: {
1078
+ name: string;
1079
+ description: string;
1080
+ annotations: {
1081
+ readOnlyHint: boolean;
1082
+ destructiveHint: boolean;
1083
+ openWorldHint: boolean;
1084
+ };
1085
+ inputSchema: {
1086
+ type: string;
1087
+ properties: {
1088
+ limit: {
1089
+ type: string;
1090
+ description: string;
1091
+ };
1092
+ journey_slug?: undefined;
1093
+ context?: undefined;
1094
+ session_id?: undefined;
1095
+ message?: undefined;
1096
+ save_checkpoint?: undefined;
1097
+ checkpoint_key?: undefined;
1098
+ advance_step?: undefined;
1099
+ include_memory?: undefined;
1100
+ system_prompt?: undefined;
1101
+ conversation_type?: undefined;
1102
+ key?: undefined;
1103
+ value?: undefined;
1104
+ save_as_insight?: undefined;
1105
+ insight_tags?: undefined;
1106
+ preserve_context?: undefined;
1107
+ context_category?: undefined;
1108
+ governance_check?: undefined;
1109
+ tag?: undefined;
1110
+ content?: undefined;
1111
+ tags?: undefined;
1112
+ auth?: undefined;
1113
+ include_recent_insights?: undefined;
1114
+ include_session_history?: undefined;
1115
+ operation?: undefined;
1116
+ path?: undefined;
1117
+ target_path?: undefined;
1118
+ force?: undefined;
1119
+ reason?: undefined;
1120
+ backup_id?: undefined;
1121
+ action?: undefined;
1122
+ category?: undefined;
1123
+ search_term?: undefined;
1124
+ include_metadata?: undefined;
1125
+ };
1126
+ required: never[];
1127
+ };
1128
+ };
1129
+ handler: typeof getOperationHistory;
1130
+ } | {
1131
+ definition: {
1132
+ name: string;
1133
+ description: string;
1134
+ annotations: {
1135
+ readOnlyHint: boolean;
1136
+ destructiveHint: boolean;
1137
+ openWorldHint: boolean;
1138
+ };
1139
+ inputSchema: {
1140
+ type: string;
1141
+ properties: {
1142
+ journey_slug?: undefined;
1143
+ context?: undefined;
1144
+ session_id?: undefined;
1145
+ message?: undefined;
1146
+ save_checkpoint?: undefined;
1147
+ checkpoint_key?: undefined;
1148
+ advance_step?: undefined;
1149
+ include_memory?: undefined;
1150
+ system_prompt?: undefined;
1151
+ conversation_type?: undefined;
1152
+ key?: undefined;
1153
+ value?: undefined;
1154
+ save_as_insight?: undefined;
1155
+ insight_tags?: undefined;
1156
+ preserve_context?: undefined;
1157
+ context_category?: undefined;
1158
+ governance_check?: undefined;
1159
+ tag?: undefined;
1160
+ content?: undefined;
1161
+ tags?: undefined;
1162
+ limit?: undefined;
1163
+ auth?: undefined;
1164
+ include_recent_insights?: undefined;
1165
+ include_session_history?: undefined;
1166
+ operation?: undefined;
1167
+ path?: undefined;
1168
+ target_path?: undefined;
1169
+ force?: undefined;
1170
+ reason?: undefined;
1171
+ backup_id?: undefined;
1172
+ action?: undefined;
1173
+ category?: undefined;
1174
+ search_term?: undefined;
1175
+ include_metadata?: undefined;
1176
+ };
1177
+ required: never[];
1178
+ };
1179
+ };
1180
+ handler: typeof listBackups;
1181
+ } | {
1182
+ definition: {
1183
+ name: string;
1184
+ description: string;
1185
+ annotations: {
1186
+ readOnlyHint: boolean;
1187
+ destructiveHint: boolean;
1188
+ openWorldHint: boolean;
1189
+ };
1190
+ inputSchema: {
1191
+ type: string;
1192
+ properties: {
1193
+ backup_id: {
1194
+ type: string;
1195
+ description: string;
1196
+ };
1197
+ journey_slug?: undefined;
1198
+ context?: undefined;
1199
+ session_id?: undefined;
1200
+ message?: undefined;
1201
+ save_checkpoint?: undefined;
1202
+ checkpoint_key?: undefined;
1203
+ advance_step?: undefined;
1204
+ include_memory?: undefined;
1205
+ system_prompt?: undefined;
1206
+ conversation_type?: undefined;
1207
+ key?: undefined;
1208
+ value?: undefined;
1209
+ save_as_insight?: undefined;
1210
+ insight_tags?: undefined;
1211
+ preserve_context?: undefined;
1212
+ context_category?: undefined;
1213
+ governance_check?: undefined;
1214
+ tag?: undefined;
1215
+ content?: undefined;
1216
+ tags?: undefined;
1217
+ limit?: undefined;
1218
+ auth?: undefined;
1219
+ include_recent_insights?: undefined;
1220
+ include_session_history?: undefined;
1221
+ operation?: undefined;
1222
+ path?: undefined;
1223
+ target_path?: undefined;
1224
+ force?: undefined;
1225
+ reason?: undefined;
1226
+ action?: undefined;
1227
+ category?: undefined;
1228
+ search_term?: undefined;
1229
+ include_metadata?: undefined;
1230
+ };
1231
+ required: string[];
1232
+ };
1233
+ };
1234
+ handler: typeof rollbackFile;
1235
+ } | {
1236
+ definition: {
1237
+ name: string;
1238
+ description: string;
1239
+ annotations: {
1240
+ readOnlyHint: boolean;
1241
+ destructiveHint: boolean;
1242
+ openWorldHint: boolean;
1243
+ };
1244
+ inputSchema: {
1245
+ type: string;
1246
+ properties: {
1247
+ journey_slug?: undefined;
1248
+ context?: undefined;
1249
+ session_id?: undefined;
1250
+ message?: undefined;
1251
+ save_checkpoint?: undefined;
1252
+ checkpoint_key?: undefined;
1253
+ advance_step?: undefined;
1254
+ include_memory?: undefined;
1255
+ system_prompt?: undefined;
1256
+ conversation_type?: undefined;
1257
+ key?: undefined;
1258
+ value?: undefined;
1259
+ save_as_insight?: undefined;
1260
+ insight_tags?: undefined;
1261
+ preserve_context?: undefined;
1262
+ context_category?: undefined;
1263
+ governance_check?: undefined;
1264
+ tag?: undefined;
1265
+ content?: undefined;
1266
+ tags?: undefined;
1267
+ limit?: undefined;
1268
+ auth?: undefined;
1269
+ include_recent_insights?: undefined;
1270
+ include_session_history?: undefined;
1271
+ operation?: undefined;
1272
+ path?: undefined;
1273
+ target_path?: undefined;
1274
+ force?: undefined;
1275
+ reason?: undefined;
1276
+ backup_id?: undefined;
1277
+ action?: undefined;
1278
+ category?: undefined;
1279
+ search_term?: undefined;
1280
+ include_metadata?: undefined;
1281
+ };
1282
+ required: never[];
1283
+ };
1284
+ };
1285
+ handler: typeof disableCodeFreeze;
1286
+ } | {
1287
+ definition: {
1288
+ name: string;
1289
+ description: string;
1290
+ annotations: {
1291
+ readOnlyHint: boolean;
1292
+ destructiveHint: boolean;
1293
+ openWorldHint: boolean;
1294
+ };
1295
+ inputSchema: {
1296
+ type: string;
1297
+ properties: {
1298
+ action: {
1299
+ type: string;
1300
+ enum: string[];
1301
+ description: string;
1302
+ };
1303
+ category: {
1304
+ type: string;
1305
+ enum: string[];
1306
+ description: string;
1307
+ };
1308
+ content: {
1309
+ type: string;
1310
+ description: string;
1311
+ };
1312
+ search_term: {
1313
+ type: string;
1314
+ description: string;
1315
+ };
1316
+ include_metadata: {
1317
+ type: string;
1318
+ description: string;
1319
+ };
1320
+ journey_slug?: undefined;
1321
+ context?: undefined;
1322
+ session_id?: undefined;
1323
+ message?: undefined;
1324
+ save_checkpoint?: undefined;
1325
+ checkpoint_key?: undefined;
1326
+ advance_step?: undefined;
1327
+ include_memory?: undefined;
1328
+ system_prompt?: undefined;
1329
+ conversation_type?: undefined;
1330
+ key?: undefined;
1331
+ value?: undefined;
1332
+ save_as_insight?: undefined;
1333
+ insight_tags?: undefined;
1334
+ preserve_context?: undefined;
1335
+ context_category?: undefined;
1336
+ governance_check?: undefined;
1337
+ tag?: undefined;
1338
+ tags?: undefined;
1339
+ limit?: undefined;
1340
+ auth?: undefined;
1341
+ include_recent_insights?: undefined;
1342
+ include_session_history?: undefined;
1343
+ operation?: undefined;
1344
+ path?: undefined;
1345
+ target_path?: undefined;
1346
+ force?: undefined;
1347
+ reason?: undefined;
1348
+ backup_id?: undefined;
1349
+ };
1350
+ required: string[];
1351
+ };
1352
+ };
1353
+ handler: typeof preserveContext;
1354
+ })[]>;
1355
+ //# sourceMappingURL=index-full.d.ts.map