couchloop-eq-mcp 1.1.4 → 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 (63) hide show
  1. package/dist/clients/shrinkChatClient.d.ts +4 -4
  2. package/dist/index.js +80 -5
  3. package/dist/index.js.map +1 -1
  4. package/dist/tools/check-versions.d.ts +7 -7
  5. package/dist/tools/checkpoint.d.ts +2 -19
  6. package/dist/tools/checkpoint.d.ts.map +1 -1
  7. package/dist/tools/checkpoint.js +68 -2
  8. package/dist/tools/checkpoint.js.map +1 -1
  9. package/dist/tools/comprehensive-code-review.d.ts +78 -0
  10. package/dist/tools/comprehensive-code-review.d.ts.map +1 -0
  11. package/dist/tools/comprehensive-code-review.js +177 -0
  12. package/dist/tools/comprehensive-code-review.js.map +1 -0
  13. package/dist/tools/comprehensive-package-audit.d.ts +75 -0
  14. package/dist/tools/comprehensive-package-audit.d.ts.map +1 -0
  15. package/dist/tools/comprehensive-package-audit.js +151 -0
  16. package/dist/tools/comprehensive-package-audit.js.map +1 -0
  17. package/dist/tools/detect-build-context.d.ts +59 -0
  18. package/dist/tools/detect-build-context.d.ts.map +1 -0
  19. package/dist/tools/detect-build-context.js +80 -0
  20. package/dist/tools/detect-build-context.js.map +1 -0
  21. package/dist/tools/generate-upgrade-report.d.ts +85 -0
  22. package/dist/tools/generate-upgrade-report.d.ts.map +1 -0
  23. package/dist/tools/generate-upgrade-report.js +102 -0
  24. package/dist/tools/generate-upgrade-report.js.map +1 -0
  25. package/dist/tools/index-full.d.ts +1355 -0
  26. package/dist/tools/index-full.d.ts.map +1 -0
  27. package/dist/tools/index-full.js +611 -0
  28. package/dist/tools/index-full.js.map +1 -0
  29. package/dist/tools/index.d.ts +27 -1018
  30. package/dist/tools/index.d.ts.map +1 -1
  31. package/dist/tools/index.js +29 -554
  32. package/dist/tools/index.js.map +1 -1
  33. package/dist/tools/insight.d.ts +25 -6
  34. package/dist/tools/insight.d.ts.map +1 -1
  35. package/dist/tools/insight.js +2 -1
  36. package/dist/tools/insight.js.map +1 -1
  37. package/dist/tools/prevent-ai-errors.d.ts +85 -0
  38. package/dist/tools/prevent-ai-errors.d.ts.map +1 -0
  39. package/dist/tools/prevent-ai-errors.js +97 -0
  40. package/dist/tools/prevent-ai-errors.js.map +1 -0
  41. package/dist/tools/primary-tools.d.ts +430 -0
  42. package/dist/tools/primary-tools.d.ts.map +1 -0
  43. package/dist/tools/primary-tools.js +294 -0
  44. package/dist/tools/primary-tools.js.map +1 -0
  45. package/dist/tools/sendMessage.d.ts.map +1 -1
  46. package/dist/tools/sendMessage.js +10 -7
  47. package/dist/tools/sendMessage.js.map +1 -1
  48. package/dist/tools/smart-context.d.ts +66 -0
  49. package/dist/tools/smart-context.d.ts.map +1 -0
  50. package/dist/tools/smart-context.js +167 -0
  51. package/dist/tools/smart-context.js.map +1 -0
  52. package/dist/types/checkpoint.d.ts +26 -1
  53. package/dist/types/checkpoint.d.ts.map +1 -1
  54. package/dist/types/checkpoint.js +17 -0
  55. package/dist/types/checkpoint.js.map +1 -1
  56. package/dist/types/journey.d.ts +6 -6
  57. package/dist/types/session.d.ts +3 -3
  58. package/dist/utils/sanitize.d.ts +24 -0
  59. package/dist/utils/sanitize.d.ts.map +1 -0
  60. package/dist/utils/sanitize.js +117 -0
  61. package/dist/utils/sanitize.js.map +1 -0
  62. package/dist/workflows/index.d.ts +1 -1
  63. package/package.json +1 -1
@@ -1,1019 +1,28 @@
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 { protectFiles, getProtectionStatus, getOperationHistory, listBackups, rollbackFile, disableCodeFreeze } from './protect-files.js';
9
- import { preserveContext } from './preserve-context.js';
10
- export declare function setupTools(): Promise<({
11
- definition: {
12
- name: string;
13
- description: string;
14
- annotations: {
15
- readOnlyHint: boolean;
16
- destructiveHint: boolean;
17
- openWorldHint: boolean;
18
- };
19
- inputSchema: {
20
- type: string;
21
- properties: {
22
- journey_slug: {
23
- type: string;
24
- description: string;
25
- };
26
- context: {
27
- type: string;
28
- description: string;
29
- };
30
- session_id?: undefined;
31
- message?: undefined;
32
- save_checkpoint?: undefined;
33
- checkpoint_key?: undefined;
34
- advance_step?: undefined;
35
- include_memory?: undefined;
36
- system_prompt?: undefined;
37
- conversation_type?: undefined;
38
- key?: undefined;
39
- value?: undefined;
40
- tag?: undefined;
41
- content?: undefined;
42
- tags?: undefined;
43
- limit?: undefined;
44
- auth?: undefined;
45
- include_recent_insights?: undefined;
46
- include_session_history?: undefined;
47
- operation?: undefined;
48
- path?: undefined;
49
- target_path?: undefined;
50
- force?: undefined;
51
- reason?: undefined;
52
- backup_id?: undefined;
53
- action?: undefined;
54
- category?: undefined;
55
- search_term?: undefined;
56
- include_metadata?: undefined;
57
- };
58
- required: never[];
59
- };
60
- };
61
- handler: typeof createSession;
62
- } | {
63
- definition: {
64
- name: string;
65
- description: string;
66
- annotations: {
67
- readOnlyHint: boolean;
68
- destructiveHint: boolean;
69
- openWorldHint: boolean;
70
- };
71
- inputSchema: {
72
- type: string;
73
- properties: {
74
- session_id: {
75
- type: string;
76
- description: string;
77
- };
78
- message: {
79
- type: string;
80
- description: string;
81
- };
82
- save_checkpoint: {
83
- type: string;
84
- description: string;
85
- };
86
- checkpoint_key: {
87
- type: string;
88
- description: string;
89
- };
90
- advance_step: {
91
- type: string;
92
- description: string;
93
- };
94
- include_memory: {
95
- type: string;
96
- description: string;
97
- };
98
- system_prompt: {
99
- type: string;
100
- description: string;
101
- };
102
- conversation_type: {
103
- type: string;
104
- description: string;
105
- };
106
- journey_slug?: undefined;
107
- context?: undefined;
108
- key?: undefined;
109
- value?: undefined;
110
- tag?: undefined;
111
- content?: undefined;
112
- tags?: undefined;
113
- limit?: undefined;
114
- auth?: undefined;
115
- include_recent_insights?: undefined;
116
- include_session_history?: undefined;
117
- operation?: undefined;
118
- path?: undefined;
119
- target_path?: undefined;
120
- force?: undefined;
121
- reason?: undefined;
122
- backup_id?: undefined;
123
- action?: undefined;
124
- category?: undefined;
125
- search_term?: undefined;
126
- include_metadata?: undefined;
127
- };
128
- required: string[];
129
- };
130
- };
131
- handler: typeof sendMessage;
132
- } | {
133
- definition: {
134
- name: string;
135
- description: string;
136
- annotations: {
137
- readOnlyHint: boolean;
138
- destructiveHint: boolean;
139
- openWorldHint: boolean;
140
- };
141
- inputSchema: {
142
- type: string;
143
- properties: {
144
- session_id: {
145
- type: string;
146
- description: string;
147
- };
148
- journey_slug?: undefined;
149
- context?: undefined;
150
- message?: undefined;
151
- save_checkpoint?: undefined;
152
- checkpoint_key?: undefined;
153
- advance_step?: undefined;
154
- include_memory?: undefined;
155
- system_prompt?: undefined;
156
- conversation_type?: undefined;
157
- key?: undefined;
158
- value?: undefined;
159
- tag?: undefined;
160
- content?: undefined;
161
- tags?: undefined;
162
- limit?: undefined;
163
- auth?: undefined;
164
- include_recent_insights?: undefined;
165
- include_session_history?: undefined;
166
- operation?: undefined;
167
- path?: undefined;
168
- target_path?: undefined;
169
- force?: undefined;
170
- reason?: undefined;
171
- backup_id?: undefined;
172
- action?: undefined;
173
- category?: undefined;
174
- search_term?: undefined;
175
- include_metadata?: undefined;
176
- };
177
- required: never[];
178
- };
179
- };
180
- handler: typeof resumeSession;
181
- } | {
182
- definition: {
183
- name: string;
184
- description: string;
185
- annotations: {
186
- readOnlyHint: boolean;
187
- destructiveHint: boolean;
188
- openWorldHint: boolean;
189
- };
190
- inputSchema: {
191
- type: string;
192
- properties: {
193
- session_id: {
194
- type: string;
195
- description: string;
196
- };
197
- journey_slug?: undefined;
198
- context?: undefined;
199
- message?: undefined;
200
- save_checkpoint?: undefined;
201
- checkpoint_key?: undefined;
202
- advance_step?: undefined;
203
- include_memory?: undefined;
204
- system_prompt?: undefined;
205
- conversation_type?: undefined;
206
- key?: undefined;
207
- value?: undefined;
208
- tag?: undefined;
209
- content?: undefined;
210
- tags?: undefined;
211
- limit?: undefined;
212
- auth?: undefined;
213
- include_recent_insights?: undefined;
214
- include_session_history?: undefined;
215
- operation?: undefined;
216
- path?: undefined;
217
- target_path?: undefined;
218
- force?: undefined;
219
- reason?: undefined;
220
- backup_id?: undefined;
221
- action?: undefined;
222
- category?: undefined;
223
- search_term?: undefined;
224
- include_metadata?: undefined;
225
- };
226
- required: never[];
227
- };
228
- };
229
- handler: typeof endSession;
230
- } | {
231
- definition: {
232
- name: string;
233
- description: string;
234
- annotations: {
235
- readOnlyHint: boolean;
236
- destructiveHint: boolean;
237
- openWorldHint: boolean;
238
- };
239
- inputSchema: {
240
- type: string;
241
- properties: {
242
- session_id: {
243
- type: string;
244
- description: string;
245
- };
246
- key: {
247
- type: string;
248
- description: string;
249
- };
250
- value: {
251
- type: string;
252
- additionalProperties: boolean;
253
- description: string;
254
- };
255
- advance_step: {
256
- type: string;
257
- description: string;
258
- };
259
- journey_slug?: undefined;
260
- context?: undefined;
261
- message?: undefined;
262
- save_checkpoint?: undefined;
263
- checkpoint_key?: undefined;
264
- include_memory?: undefined;
265
- system_prompt?: undefined;
266
- conversation_type?: undefined;
267
- tag?: undefined;
268
- content?: undefined;
269
- tags?: undefined;
270
- limit?: undefined;
271
- auth?: undefined;
272
- include_recent_insights?: undefined;
273
- include_session_history?: undefined;
274
- operation?: undefined;
275
- path?: undefined;
276
- target_path?: undefined;
277
- force?: undefined;
278
- reason?: undefined;
279
- backup_id?: undefined;
280
- action?: undefined;
281
- category?: undefined;
282
- search_term?: undefined;
283
- include_metadata?: undefined;
284
- };
285
- required: string[];
286
- };
287
- };
288
- handler: typeof saveCheckpoint;
289
- } | {
290
- definition: {
291
- name: string;
292
- description: string;
293
- annotations: {
294
- readOnlyHint: boolean;
295
- destructiveHint: boolean;
296
- openWorldHint: boolean;
297
- };
298
- inputSchema: {
299
- type: string;
300
- properties: {
301
- session_id: {
302
- type: string;
303
- description: string;
304
- };
305
- journey_slug?: undefined;
306
- context?: undefined;
307
- message?: undefined;
308
- save_checkpoint?: undefined;
309
- checkpoint_key?: undefined;
310
- advance_step?: undefined;
311
- include_memory?: undefined;
312
- system_prompt?: undefined;
313
- conversation_type?: undefined;
314
- key?: undefined;
315
- value?: undefined;
316
- tag?: undefined;
317
- content?: undefined;
318
- tags?: undefined;
319
- limit?: undefined;
320
- auth?: undefined;
321
- include_recent_insights?: undefined;
322
- include_session_history?: undefined;
323
- operation?: undefined;
324
- path?: undefined;
325
- target_path?: undefined;
326
- force?: undefined;
327
- reason?: undefined;
328
- backup_id?: undefined;
329
- action?: undefined;
330
- category?: undefined;
331
- search_term?: undefined;
332
- include_metadata?: undefined;
333
- };
334
- required: never[];
335
- };
336
- };
337
- handler: typeof getCheckpoints;
338
- } | {
339
- definition: {
340
- name: string;
341
- description: string;
342
- annotations: {
343
- readOnlyHint: boolean;
344
- destructiveHint: boolean;
345
- openWorldHint: boolean;
346
- };
347
- inputSchema: {
348
- type: string;
349
- properties: {
350
- tag: {
351
- type: string;
352
- description: string;
353
- };
354
- journey_slug?: undefined;
355
- context?: undefined;
356
- session_id?: 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
- content?: undefined;
367
- tags?: undefined;
368
- limit?: undefined;
369
- auth?: undefined;
370
- include_recent_insights?: undefined;
371
- include_session_history?: undefined;
372
- operation?: undefined;
373
- path?: undefined;
374
- target_path?: undefined;
375
- force?: undefined;
376
- reason?: undefined;
377
- backup_id?: undefined;
378
- action?: undefined;
379
- category?: undefined;
380
- search_term?: undefined;
381
- include_metadata?: undefined;
382
- };
383
- required: never[];
384
- };
385
- };
386
- handler: typeof listJourneys;
387
- } | {
388
- definition: {
389
- name: string;
390
- description: string;
391
- annotations: {
392
- readOnlyHint: boolean;
393
- destructiveHint: boolean;
394
- openWorldHint: boolean;
395
- };
396
- inputSchema: {
397
- type: string;
398
- properties: {
399
- session_id: {
400
- type: string;
401
- description: string;
402
- };
403
- journey_slug?: undefined;
404
- context?: undefined;
405
- message?: undefined;
406
- save_checkpoint?: undefined;
407
- checkpoint_key?: undefined;
408
- advance_step?: undefined;
409
- include_memory?: undefined;
410
- system_prompt?: undefined;
411
- conversation_type?: undefined;
412
- key?: undefined;
413
- value?: undefined;
414
- tag?: undefined;
415
- content?: undefined;
416
- tags?: undefined;
417
- limit?: undefined;
418
- auth?: undefined;
419
- include_recent_insights?: undefined;
420
- include_session_history?: undefined;
421
- operation?: undefined;
422
- path?: undefined;
423
- target_path?: undefined;
424
- force?: undefined;
425
- reason?: undefined;
426
- backup_id?: undefined;
427
- action?: undefined;
428
- category?: undefined;
429
- search_term?: undefined;
430
- include_metadata?: undefined;
431
- };
432
- required: string[];
433
- };
434
- };
435
- handler: typeof getJourneyStatus;
436
- } | {
437
- definition: {
438
- name: string;
439
- description: string;
440
- annotations: {
441
- readOnlyHint: boolean;
442
- destructiveHint: boolean;
443
- openWorldHint: boolean;
444
- };
445
- inputSchema: {
446
- type: string;
447
- properties: {
448
- content: {
449
- type: string;
450
- description: string;
451
- };
452
- session_id: {
453
- type: string;
454
- description: string;
455
- };
456
- tags: {
457
- type: string;
458
- items: {
459
- type: string;
460
- };
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
- tag?: undefined;
475
- limit?: undefined;
476
- auth?: undefined;
477
- include_recent_insights?: undefined;
478
- include_session_history?: undefined;
479
- operation?: undefined;
480
- path?: undefined;
481
- target_path?: undefined;
482
- force?: undefined;
483
- reason?: undefined;
484
- backup_id?: undefined;
485
- action?: undefined;
486
- category?: undefined;
487
- search_term?: undefined;
488
- include_metadata?: undefined;
489
- };
490
- required: string[];
491
- };
492
- };
493
- handler: typeof saveInsight;
494
- } | {
495
- definition: {
496
- name: string;
497
- description: string;
498
- annotations: {
499
- readOnlyHint: boolean;
500
- destructiveHint: boolean;
501
- openWorldHint: boolean;
502
- };
503
- inputSchema: {
504
- type: string;
505
- properties: {
506
- session_id: {
507
- type: string;
508
- description: string;
509
- };
510
- limit: {
511
- type: string;
512
- description: string;
513
- };
514
- auth: {
515
- type: string;
516
- description: string;
517
- properties: {
518
- token: {
519
- type: string;
520
- description: string;
521
- };
522
- user_id: {
523
- type: string;
524
- description: string;
525
- };
526
- client_id: {
527
- type: string;
528
- description: string;
529
- };
530
- };
531
- };
532
- journey_slug?: undefined;
533
- context?: undefined;
534
- message?: undefined;
535
- save_checkpoint?: undefined;
536
- checkpoint_key?: undefined;
537
- advance_step?: undefined;
538
- include_memory?: undefined;
539
- system_prompt?: undefined;
540
- conversation_type?: undefined;
541
- key?: undefined;
542
- value?: undefined;
543
- tag?: undefined;
544
- content?: undefined;
545
- tags?: undefined;
546
- include_recent_insights?: undefined;
547
- include_session_history?: undefined;
548
- operation?: undefined;
549
- path?: undefined;
550
- target_path?: undefined;
551
- force?: undefined;
552
- reason?: undefined;
553
- backup_id?: undefined;
554
- action?: undefined;
555
- category?: undefined;
556
- search_term?: undefined;
557
- include_metadata?: undefined;
558
- };
559
- required: never[];
560
- };
561
- };
562
- handler: typeof getInsights;
563
- } | {
564
- definition: {
565
- name: string;
566
- description: string;
567
- annotations: {
568
- readOnlyHint: boolean;
569
- destructiveHint: boolean;
570
- openWorldHint: boolean;
571
- };
572
- inputSchema: {
573
- type: string;
574
- properties: {
575
- include_recent_insights: {
576
- type: string;
577
- description: string;
578
- };
579
- include_session_history: {
580
- type: string;
581
- description: string;
582
- };
583
- journey_slug?: undefined;
584
- context?: undefined;
585
- session_id?: undefined;
586
- message?: undefined;
587
- save_checkpoint?: undefined;
588
- checkpoint_key?: undefined;
589
- advance_step?: undefined;
590
- include_memory?: undefined;
591
- system_prompt?: undefined;
592
- conversation_type?: undefined;
593
- key?: undefined;
594
- value?: undefined;
595
- tag?: undefined;
596
- content?: undefined;
597
- tags?: undefined;
598
- limit?: undefined;
599
- auth?: undefined;
600
- operation?: undefined;
601
- path?: undefined;
602
- target_path?: undefined;
603
- force?: undefined;
604
- reason?: undefined;
605
- backup_id?: undefined;
606
- action?: undefined;
607
- category?: undefined;
608
- search_term?: undefined;
609
- include_metadata?: undefined;
610
- };
611
- required: never[];
612
- };
613
- };
614
- handler: typeof getUserContext;
615
- } | {
616
- definition: {
617
- inputSchema: {
618
- [x: string]: unknown;
619
- type: "object";
620
- properties?: {
621
- [x: string]: object;
622
- } | undefined;
623
- required?: string[] | undefined;
624
- };
625
- name: string;
626
- description?: string | undefined;
627
- outputSchema?: {
628
- [x: string]: unknown;
629
- type: "object";
630
- properties?: {
631
- [x: string]: object;
632
- } | undefined;
633
- required?: string[] | undefined;
634
- } | undefined;
635
- annotations?: {
636
- title?: string | undefined;
637
- readOnlyHint?: boolean | undefined;
638
- destructiveHint?: boolean | undefined;
639
- idempotentHint?: boolean | undefined;
640
- openWorldHint?: boolean | undefined;
641
- } | undefined;
642
- execution?: {
643
- taskSupport?: "optional" | "required" | "forbidden" | undefined;
644
- } | undefined;
645
- _meta?: {
646
- [x: string]: unknown;
647
- } | undefined;
648
- icons?: {
649
- src: string;
650
- mimeType?: string | undefined;
651
- sizes?: string[] | undefined;
652
- theme?: "light" | "dark" | undefined;
653
- }[] | undefined;
654
- title?: string | undefined;
655
- };
656
- handler: typeof handleValidatePackages;
657
- } | {
658
- definition: {
659
- name: string;
660
- description: string;
661
- annotations: {
662
- readOnlyHint: boolean;
663
- destructiveHint: boolean;
664
- openWorldHint: boolean;
665
- };
666
- inputSchema: {
667
- type: string;
668
- properties: {
669
- operation: {
670
- type: string;
671
- enum: string[];
672
- description: string;
673
- };
674
- path: {
675
- type: string;
676
- description: string;
677
- };
678
- target_path: {
679
- type: string;
680
- description: string;
681
- };
682
- force: {
683
- type: string;
684
- description: string;
685
- };
686
- reason: {
687
- type: string;
688
- description: string;
689
- };
690
- journey_slug?: undefined;
691
- context?: undefined;
692
- session_id?: undefined;
693
- message?: undefined;
694
- save_checkpoint?: undefined;
695
- checkpoint_key?: undefined;
696
- advance_step?: undefined;
697
- include_memory?: undefined;
698
- system_prompt?: undefined;
699
- conversation_type?: undefined;
700
- key?: undefined;
701
- value?: undefined;
702
- tag?: undefined;
703
- content?: undefined;
704
- tags?: undefined;
705
- limit?: undefined;
706
- auth?: undefined;
707
- include_recent_insights?: undefined;
708
- include_session_history?: undefined;
709
- backup_id?: undefined;
710
- action?: undefined;
711
- category?: undefined;
712
- search_term?: undefined;
713
- include_metadata?: undefined;
714
- };
715
- required: string[];
716
- };
717
- };
718
- handler: typeof protectFiles;
719
- } | {
720
- definition: {
721
- name: string;
722
- description: string;
723
- annotations: {
724
- readOnlyHint: boolean;
725
- destructiveHint: boolean;
726
- openWorldHint: boolean;
727
- };
728
- inputSchema: {
729
- type: string;
730
- properties: {
731
- journey_slug?: undefined;
732
- context?: undefined;
733
- session_id?: undefined;
734
- message?: undefined;
735
- save_checkpoint?: undefined;
736
- checkpoint_key?: undefined;
737
- advance_step?: undefined;
738
- include_memory?: undefined;
739
- system_prompt?: undefined;
740
- conversation_type?: undefined;
741
- key?: undefined;
742
- value?: undefined;
743
- tag?: undefined;
744
- content?: undefined;
745
- tags?: undefined;
746
- limit?: undefined;
747
- auth?: undefined;
748
- include_recent_insights?: undefined;
749
- include_session_history?: undefined;
750
- operation?: undefined;
751
- path?: undefined;
752
- target_path?: undefined;
753
- force?: undefined;
754
- reason?: undefined;
755
- backup_id?: undefined;
756
- action?: undefined;
757
- category?: undefined;
758
- search_term?: undefined;
759
- include_metadata?: undefined;
760
- };
761
- required: never[];
762
- };
763
- };
764
- handler: typeof getProtectionStatus;
765
- } | {
766
- definition: {
767
- name: string;
768
- description: string;
769
- annotations: {
770
- readOnlyHint: boolean;
771
- destructiveHint: boolean;
772
- openWorldHint: boolean;
773
- };
774
- inputSchema: {
775
- type: string;
776
- properties: {
777
- limit: {
778
- type: string;
779
- description: string;
780
- };
781
- journey_slug?: undefined;
782
- context?: undefined;
783
- session_id?: undefined;
784
- message?: undefined;
785
- save_checkpoint?: undefined;
786
- checkpoint_key?: undefined;
787
- advance_step?: undefined;
788
- include_memory?: undefined;
789
- system_prompt?: undefined;
790
- conversation_type?: undefined;
791
- key?: undefined;
792
- value?: undefined;
793
- tag?: undefined;
794
- content?: undefined;
795
- tags?: undefined;
796
- auth?: undefined;
797
- include_recent_insights?: undefined;
798
- include_session_history?: undefined;
799
- operation?: undefined;
800
- path?: undefined;
801
- target_path?: undefined;
802
- force?: undefined;
803
- reason?: undefined;
804
- backup_id?: undefined;
805
- action?: undefined;
806
- category?: undefined;
807
- search_term?: undefined;
808
- include_metadata?: undefined;
809
- };
810
- required: never[];
811
- };
812
- };
813
- handler: typeof getOperationHistory;
814
- } | {
815
- definition: {
816
- name: string;
817
- description: string;
818
- annotations: {
819
- readOnlyHint: boolean;
820
- destructiveHint: boolean;
821
- openWorldHint: boolean;
822
- };
823
- inputSchema: {
824
- type: string;
825
- properties: {
826
- journey_slug?: undefined;
827
- context?: undefined;
828
- session_id?: undefined;
829
- message?: undefined;
830
- save_checkpoint?: undefined;
831
- checkpoint_key?: undefined;
832
- advance_step?: undefined;
833
- include_memory?: undefined;
834
- system_prompt?: undefined;
835
- conversation_type?: undefined;
836
- key?: undefined;
837
- value?: undefined;
838
- tag?: undefined;
839
- content?: undefined;
840
- tags?: undefined;
841
- limit?: undefined;
842
- auth?: undefined;
843
- include_recent_insights?: undefined;
844
- include_session_history?: undefined;
845
- operation?: undefined;
846
- path?: undefined;
847
- target_path?: undefined;
848
- force?: undefined;
849
- reason?: undefined;
850
- backup_id?: undefined;
851
- action?: undefined;
852
- category?: undefined;
853
- search_term?: undefined;
854
- include_metadata?: undefined;
855
- };
856
- required: never[];
857
- };
858
- };
859
- handler: typeof listBackups;
860
- } | {
861
- definition: {
862
- name: string;
863
- description: string;
864
- annotations: {
865
- readOnlyHint: boolean;
866
- destructiveHint: boolean;
867
- openWorldHint: boolean;
868
- };
869
- inputSchema: {
870
- type: string;
871
- properties: {
872
- backup_id: {
873
- type: string;
874
- description: string;
875
- };
876
- journey_slug?: undefined;
877
- context?: undefined;
878
- session_id?: undefined;
879
- message?: undefined;
880
- save_checkpoint?: undefined;
881
- checkpoint_key?: undefined;
882
- advance_step?: undefined;
883
- include_memory?: undefined;
884
- system_prompt?: undefined;
885
- conversation_type?: undefined;
886
- key?: undefined;
887
- value?: undefined;
888
- tag?: undefined;
889
- content?: undefined;
890
- tags?: undefined;
891
- limit?: undefined;
892
- auth?: undefined;
893
- include_recent_insights?: undefined;
894
- include_session_history?: undefined;
895
- operation?: undefined;
896
- path?: undefined;
897
- target_path?: undefined;
898
- force?: undefined;
899
- reason?: undefined;
900
- action?: undefined;
901
- category?: undefined;
902
- search_term?: undefined;
903
- include_metadata?: undefined;
904
- };
905
- required: string[];
906
- };
907
- };
908
- handler: typeof rollbackFile;
909
- } | {
910
- definition: {
911
- name: string;
912
- description: string;
913
- annotations: {
914
- readOnlyHint: boolean;
915
- destructiveHint: boolean;
916
- openWorldHint: boolean;
917
- };
918
- inputSchema: {
919
- type: string;
920
- properties: {
921
- journey_slug?: undefined;
922
- context?: undefined;
923
- session_id?: undefined;
924
- message?: undefined;
925
- save_checkpoint?: undefined;
926
- checkpoint_key?: undefined;
927
- advance_step?: undefined;
928
- include_memory?: undefined;
929
- system_prompt?: undefined;
930
- conversation_type?: undefined;
931
- key?: undefined;
932
- value?: undefined;
933
- tag?: undefined;
934
- content?: undefined;
935
- tags?: undefined;
936
- limit?: undefined;
937
- auth?: undefined;
938
- include_recent_insights?: undefined;
939
- include_session_history?: undefined;
940
- operation?: undefined;
941
- path?: undefined;
942
- target_path?: undefined;
943
- force?: undefined;
944
- reason?: undefined;
945
- backup_id?: undefined;
946
- action?: undefined;
947
- category?: undefined;
948
- search_term?: undefined;
949
- include_metadata?: undefined;
950
- };
951
- required: never[];
952
- };
953
- };
954
- handler: typeof disableCodeFreeze;
955
- } | {
956
- definition: {
957
- name: string;
958
- description: string;
959
- annotations: {
960
- readOnlyHint: boolean;
961
- destructiveHint: boolean;
962
- openWorldHint: boolean;
963
- };
964
- inputSchema: {
965
- type: string;
966
- properties: {
967
- action: {
968
- type: string;
969
- enum: string[];
970
- description: string;
971
- };
972
- category: {
973
- type: string;
974
- enum: string[];
975
- description: string;
976
- };
977
- content: {
978
- type: string;
979
- description: string;
980
- };
981
- search_term: {
982
- type: string;
983
- description: string;
984
- };
985
- include_metadata: {
986
- type: string;
987
- description: string;
988
- };
989
- journey_slug?: undefined;
990
- context?: undefined;
991
- session_id?: undefined;
992
- message?: undefined;
993
- save_checkpoint?: undefined;
994
- checkpoint_key?: undefined;
995
- advance_step?: undefined;
996
- include_memory?: undefined;
997
- system_prompt?: undefined;
998
- conversation_type?: undefined;
999
- key?: undefined;
1000
- value?: undefined;
1001
- tag?: undefined;
1002
- tags?: undefined;
1003
- limit?: undefined;
1004
- auth?: undefined;
1005
- include_recent_insights?: undefined;
1006
- include_session_history?: undefined;
1007
- operation?: undefined;
1008
- path?: undefined;
1009
- target_path?: undefined;
1010
- force?: undefined;
1011
- reason?: undefined;
1012
- backup_id?: undefined;
1013
- };
1014
- required: string[];
1015
- };
1016
- };
1017
- handler: typeof preserveContext;
1018
- })[]>;
1
+ /**
2
+ * MCP Tools - Main Export
3
+ *
4
+ * This module provides two modes:
5
+ * 1. SIMPLE MODE (default): 5 primary tools that bundle all functionality
6
+ * 2. FULL MODE: All 30 granular tools for power users
7
+ *
8
+ * Set MCP_TOOL_MODE=full in environment for full mode
9
+ */
10
+ export { setupTools } from './primary-tools.js';
11
+ export { saveCheckpoint, getCheckpoints } from './checkpoint.js';
12
+ export { saveInsight, getInsights, getUserContext } from './insight.js';
13
+ export { sendMessage } from './sendMessage.js';
14
+ export { createSession, resumeSession } from './session.js';
15
+ export { endSession } from './session-manager.js';
16
+ export { preserveContext, storeContext, retrieveContext } from './preserve-context.js';
17
+ export { handleComprehensiveCodeReview } from './comprehensive-code-review.js';
18
+ export { handleComprehensivePackageAudit } from './comprehensive-package-audit.js';
19
+ export { handleSmartContext } from './smart-context.js';
20
+ export { handlePreventAIErrors } from './prevent-ai-errors.js';
21
+ export { handleDetectBuildContext } from './detect-build-context.js';
22
+ export { handleGenerateUpgradeReport } from './generate-upgrade-report.js';
23
+ export { handleScanSecurity } from './scan-security.js';
24
+ export { handlePreReviewCode } from './pre-review-code.js';
25
+ export { handleDetectCodeSmell } from './detect-code-smell.js';
26
+ export { handleValidatePackages } from './validate_packages.js';
27
+ export { handleCheckVersions } from './check-versions.js';
1019
28
  //# sourceMappingURL=index.d.ts.map