remnote-mcp-server 0.14.2 → 0.16.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 (53) hide show
  1. package/CHANGELOG.md +78 -0
  2. package/README.md +74 -30
  3. package/dist/cli.d.ts +2 -1
  4. package/dist/cli.js +9 -2
  5. package/dist/cli.js.map +1 -1
  6. package/dist/config.d.ts +14 -2
  7. package/dist/config.js +210 -10
  8. package/dist/config.js.map +1 -1
  9. package/dist/daemon.d.ts +61 -0
  10. package/dist/daemon.js +735 -0
  11. package/dist/daemon.js.map +1 -0
  12. package/dist/index.js +8 -10
  13. package/dist/index.js.map +1 -1
  14. package/dist/remnote-cli/cli.js +8 -1
  15. package/dist/remnote-cli/cli.js.map +1 -1
  16. package/dist/remnote-cli/client/mcp-server-client.d.ts +1 -0
  17. package/dist/remnote-cli/client/mcp-server-client.js +14 -5
  18. package/dist/remnote-cli/client/mcp-server-client.js.map +1 -1
  19. package/dist/remnote-cli/commands/content-input.d.ts +0 -12
  20. package/dist/remnote-cli/commands/content-input.js +0 -20
  21. package/dist/remnote-cli/commands/content-input.js.map +1 -1
  22. package/dist/remnote-cli/commands/create.js +6 -3
  23. package/dist/remnote-cli/commands/create.js.map +1 -1
  24. package/dist/remnote-cli/commands/journal.js +3 -0
  25. package/dist/remnote-cli/commands/journal.js.map +1 -1
  26. package/dist/remnote-cli/commands/read.js +37 -5
  27. package/dist/remnote-cli/commands/read.js.map +1 -1
  28. package/dist/remnote-cli/commands/search.d.ts +1 -0
  29. package/dist/remnote-cli/commands/search.js +111 -11
  30. package/dist/remnote-cli/commands/search.js.map +1 -1
  31. package/dist/remnote-cli/commands/update.js +5 -24
  32. package/dist/remnote-cli/commands/update.js.map +1 -1
  33. package/dist/remnote-cli/commands/write-actions.d.ts +6 -0
  34. package/dist/remnote-cli/commands/write-actions.js +229 -0
  35. package/dist/remnote-cli/commands/write-actions.js.map +1 -0
  36. package/dist/schemas/remnote-schemas.d.ts +105 -18
  37. package/dist/schemas/remnote-schemas.js +179 -60
  38. package/dist/schemas/remnote-schemas.js.map +1 -1
  39. package/dist/shutdown.d.ts +15 -0
  40. package/dist/shutdown.js +59 -0
  41. package/dist/shutdown.js.map +1 -0
  42. package/dist/tools/index.d.ts +3722 -173
  43. package/dist/tools/index.js +595 -66
  44. package/dist/tools/index.js.map +1 -1
  45. package/dist/websocket-server.d.ts +2 -1
  46. package/dist/websocket-server.js +6 -2
  47. package/dist/websocket-server.js.map +1 -1
  48. package/mcpb/remnote-local/manifest.json +40 -26
  49. package/mcpb/remnote-local/package.json +1 -1
  50. package/mcpb/remnote-local/remnote-local.mcpb +0 -0
  51. package/mcpb/remnote-local/server/fallback-tools.generated.js +477 -0
  52. package/mcpb/remnote-local/server/index.js +11 -124
  53. package/package.json +5 -3
@@ -19,15 +19,20 @@ export declare const CREATE_NOTE_TOOL: {
19
19
  type: string;
20
20
  description: string;
21
21
  };
22
- tags: {
22
+ tagRemIds: {
23
23
  type: string;
24
24
  items: {
25
25
  type: string;
26
26
  };
27
27
  description: string;
28
28
  };
29
+ asDocument: {
30
+ type: string;
31
+ description: string;
32
+ };
29
33
  };
30
34
  required: never[];
35
+ additionalProperties: boolean;
31
36
  };
32
37
  outputSchema: {
33
38
  type: "object";
@@ -64,11 +69,24 @@ export declare const SEARCH_TOOL: {
64
69
  type: string;
65
70
  description: string;
66
71
  };
67
- includeContent: {
72
+ cursor: {
73
+ type: string;
74
+ description: string;
75
+ };
76
+ contentMode: {
77
+ type: string;
78
+ enum: string[];
79
+ description: string;
80
+ };
81
+ view: {
68
82
  type: string;
69
83
  enum: string[];
70
84
  description: string;
71
85
  };
86
+ ancestorDepth: {
87
+ type: string;
88
+ description: string;
89
+ };
72
90
  depth: {
73
91
  type: string;
74
92
  description: string;
@@ -105,6 +123,30 @@ export declare const SEARCH_TOOL: {
105
123
  type: string;
106
124
  description: string;
107
125
  };
126
+ inlineRefs: {
127
+ type: string;
128
+ items: {
129
+ type: "object";
130
+ properties: {
131
+ text: {
132
+ type: string;
133
+ description: string;
134
+ };
135
+ targetRemId: {
136
+ type: string;
137
+ description: string;
138
+ };
139
+ kind: {
140
+ type: string;
141
+ enum: string[];
142
+ description: string;
143
+ };
144
+ };
145
+ required: string[];
146
+ additionalProperties: boolean;
147
+ };
148
+ description: string;
149
+ };
108
150
  parentRemId: {
109
151
  type: string;
110
152
  description: string;
@@ -113,6 +155,33 @@ export declare const SEARCH_TOOL: {
113
155
  type: string;
114
156
  description: string;
115
157
  };
158
+ ancestors: {
159
+ type: string;
160
+ items: {
161
+ type: "object";
162
+ properties: {
163
+ remId: {
164
+ type: string;
165
+ description: string;
166
+ };
167
+ title: {
168
+ type: string;
169
+ description: string;
170
+ };
171
+ remType: {
172
+ type: string;
173
+ description: string;
174
+ };
175
+ };
176
+ required: string[];
177
+ additionalProperties: boolean;
178
+ };
179
+ description: string;
180
+ };
181
+ ancestorsTruncated: {
182
+ type: string;
183
+ description: string;
184
+ };
116
185
  aliases: {
117
186
  type: string;
118
187
  items: {
@@ -123,7 +192,19 @@ export declare const SEARCH_TOOL: {
123
192
  tags: {
124
193
  type: string;
125
194
  items: {
126
- type: string;
195
+ type: "object";
196
+ properties: {
197
+ tagRemId: {
198
+ type: string;
199
+ description: string;
200
+ };
201
+ name: {
202
+ type: string;
203
+ description: string;
204
+ };
205
+ };
206
+ required: string[];
207
+ additionalProperties: boolean;
127
208
  };
128
209
  description: string;
129
210
  };
@@ -131,6 +212,124 @@ export declare const SEARCH_TOOL: {
131
212
  type: string;
132
213
  description: string;
133
214
  };
215
+ matchedRems: {
216
+ type: string;
217
+ items: {
218
+ type: "object";
219
+ properties: {
220
+ remId: {
221
+ type: string;
222
+ description: string;
223
+ };
224
+ title: {
225
+ type: string;
226
+ description: string;
227
+ };
228
+ headline: {
229
+ type: string;
230
+ description: string;
231
+ };
232
+ inlineRefs: {
233
+ type: string;
234
+ items: {
235
+ type: "object";
236
+ properties: {
237
+ text: {
238
+ type: string;
239
+ description: string;
240
+ };
241
+ targetRemId: {
242
+ type: string;
243
+ description: string;
244
+ };
245
+ kind: {
246
+ type: string;
247
+ enum: string[];
248
+ description: string;
249
+ };
250
+ };
251
+ required: string[];
252
+ additionalProperties: boolean;
253
+ };
254
+ description: string;
255
+ };
256
+ remType: {
257
+ type: string;
258
+ description: string;
259
+ };
260
+ parentRemId: {
261
+ type: string;
262
+ description: string;
263
+ };
264
+ parentTitle: {
265
+ type: string;
266
+ description: string;
267
+ };
268
+ ancestors: {
269
+ type: string;
270
+ items: {
271
+ type: "object";
272
+ properties: {
273
+ remId: {
274
+ type: string;
275
+ description: string;
276
+ };
277
+ title: {
278
+ type: string;
279
+ description: string;
280
+ };
281
+ remType: {
282
+ type: string;
283
+ description: string;
284
+ };
285
+ };
286
+ required: string[];
287
+ additionalProperties: boolean;
288
+ };
289
+ description: string;
290
+ };
291
+ ancestorsTruncated: {
292
+ type: string;
293
+ description: string;
294
+ };
295
+ tags: {
296
+ type: string;
297
+ items: {
298
+ type: "object";
299
+ properties: {
300
+ tagRemId: {
301
+ type: string;
302
+ description: string;
303
+ };
304
+ name: {
305
+ type: string;
306
+ description: string;
307
+ };
308
+ };
309
+ required: string[];
310
+ additionalProperties: boolean;
311
+ };
312
+ description: string;
313
+ };
314
+ };
315
+ required: string[];
316
+ additionalProperties: boolean;
317
+ };
318
+ description: string;
319
+ };
320
+ contextRemId: {
321
+ type: string;
322
+ description: string;
323
+ };
324
+ contextTitle: {
325
+ type: string;
326
+ description: string;
327
+ };
328
+ contextReason: {
329
+ type: string;
330
+ enum: string[];
331
+ description: string;
332
+ };
134
333
  cardDirection: {
135
334
  type: string;
136
335
  description: string;
@@ -157,6 +356,30 @@ export declare const SEARCH_TOOL: {
157
356
  type: string;
158
357
  description: string;
159
358
  };
359
+ inlineRefs: {
360
+ type: string;
361
+ items: {
362
+ type: "object";
363
+ properties: {
364
+ text: {
365
+ type: string;
366
+ description: string;
367
+ };
368
+ targetRemId: {
369
+ type: string;
370
+ description: string;
371
+ };
372
+ kind: {
373
+ type: string;
374
+ enum: string[];
375
+ description: string;
376
+ };
377
+ };
378
+ required: string[];
379
+ additionalProperties: boolean;
380
+ };
381
+ description: string;
382
+ };
160
383
  aliases: {
161
384
  type: string;
162
385
  items: {
@@ -167,7 +390,19 @@ export declare const SEARCH_TOOL: {
167
390
  tags: {
168
391
  type: string;
169
392
  items: {
170
- type: string;
393
+ type: "object";
394
+ properties: {
395
+ tagRemId: {
396
+ type: string;
397
+ description: string;
398
+ };
399
+ name: {
400
+ type: string;
401
+ description: string;
402
+ };
403
+ };
404
+ required: string[];
405
+ additionalProperties: boolean;
171
406
  };
172
407
  description: string;
173
408
  };
@@ -211,6 +446,23 @@ export declare const SEARCH_TOOL: {
211
446
  };
212
447
  };
213
448
  };
449
+ hasMore: {
450
+ type: string;
451
+ description: string;
452
+ };
453
+ nextCursor: {
454
+ type: string;
455
+ description: string;
456
+ };
457
+ truncated: {
458
+ type: string;
459
+ description: string;
460
+ };
461
+ truncationReason: {
462
+ type: string;
463
+ enum: string[];
464
+ description: string;
465
+ };
214
466
  };
215
467
  };
216
468
  };
@@ -220,19 +472,33 @@ export declare const SEARCH_BY_TAG_TOOL: {
220
472
  inputSchema: {
221
473
  type: "object";
222
474
  properties: {
223
- tag: {
475
+ tagRemId: {
476
+ type: string;
477
+ description: string;
478
+ };
479
+ resultMode: {
224
480
  type: string;
481
+ enum: string[];
225
482
  description: string;
226
483
  };
227
484
  limit: {
228
485
  type: string;
229
486
  description: string;
230
487
  };
231
- includeContent: {
488
+ contentMode: {
489
+ type: string;
490
+ enum: string[];
491
+ description: string;
492
+ };
493
+ view: {
232
494
  type: string;
233
495
  enum: string[];
234
496
  description: string;
235
497
  };
498
+ ancestorDepth: {
499
+ type: string;
500
+ description: string;
501
+ };
236
502
  depth: {
237
503
  type: string;
238
504
  description: string;
@@ -245,6 +511,14 @@ export declare const SEARCH_BY_TAG_TOOL: {
245
511
  type: string;
246
512
  description: string;
247
513
  };
514
+ cursor: {
515
+ type: string;
516
+ description: string;
517
+ };
518
+ timeoutMs: {
519
+ type: string;
520
+ description: string;
521
+ };
248
522
  };
249
523
  required: string[];
250
524
  };
@@ -269,6 +543,30 @@ export declare const SEARCH_BY_TAG_TOOL: {
269
543
  type: string;
270
544
  description: string;
271
545
  };
546
+ inlineRefs: {
547
+ type: string;
548
+ items: {
549
+ type: "object";
550
+ properties: {
551
+ text: {
552
+ type: string;
553
+ description: string;
554
+ };
555
+ targetRemId: {
556
+ type: string;
557
+ description: string;
558
+ };
559
+ kind: {
560
+ type: string;
561
+ enum: string[];
562
+ description: string;
563
+ };
564
+ };
565
+ required: string[];
566
+ additionalProperties: boolean;
567
+ };
568
+ description: string;
569
+ };
272
570
  parentRemId: {
273
571
  type: string;
274
572
  description: string;
@@ -277,37 +575,67 @@ export declare const SEARCH_BY_TAG_TOOL: {
277
575
  type: string;
278
576
  description: string;
279
577
  };
280
- aliases: {
578
+ ancestors: {
281
579
  type: string;
282
580
  items: {
283
- type: string;
581
+ type: "object";
582
+ properties: {
583
+ remId: {
584
+ type: string;
585
+ description: string;
586
+ };
587
+ title: {
588
+ type: string;
589
+ description: string;
590
+ };
591
+ remType: {
592
+ type: string;
593
+ description: string;
594
+ };
595
+ };
596
+ required: string[];
597
+ additionalProperties: boolean;
284
598
  };
285
599
  description: string;
286
600
  };
287
- tags: {
601
+ ancestorsTruncated: {
288
602
  type: string;
289
- items: {
290
- type: string;
291
- };
292
603
  description: string;
293
604
  };
294
- remType: {
605
+ aliases: {
295
606
  type: string;
607
+ items: {
608
+ type: string;
609
+ };
296
610
  description: string;
297
611
  };
298
- cardDirection: {
612
+ tags: {
299
613
  type: string;
614
+ items: {
615
+ type: "object";
616
+ properties: {
617
+ tagRemId: {
618
+ type: string;
619
+ description: string;
620
+ };
621
+ name: {
622
+ type: string;
623
+ description: string;
624
+ };
625
+ };
626
+ required: string[];
627
+ additionalProperties: boolean;
628
+ };
300
629
  description: string;
301
630
  };
302
- content: {
631
+ remType: {
303
632
  type: string;
304
633
  description: string;
305
634
  };
306
- contentStructured: {
635
+ matchedRems: {
307
636
  type: string;
308
- description: string;
309
637
  items: {
310
- type: string;
638
+ type: "object";
311
639
  properties: {
312
640
  remId: {
313
641
  type: string;
@@ -321,60 +649,240 @@ export declare const SEARCH_BY_TAG_TOOL: {
321
649
  type: string;
322
650
  description: string;
323
651
  };
324
- aliases: {
652
+ inlineRefs: {
325
653
  type: string;
326
654
  items: {
327
- type: string;
655
+ type: "object";
656
+ properties: {
657
+ text: {
658
+ type: string;
659
+ description: string;
660
+ };
661
+ targetRemId: {
662
+ type: string;
663
+ description: string;
664
+ };
665
+ kind: {
666
+ type: string;
667
+ enum: string[];
668
+ description: string;
669
+ };
670
+ };
671
+ required: string[];
672
+ additionalProperties: boolean;
328
673
  };
329
674
  description: string;
330
675
  };
331
- tags: {
676
+ remType: {
332
677
  type: string;
333
- items: {
334
- type: string;
335
- };
336
678
  description: string;
337
679
  };
338
- remType: {
680
+ parentRemId: {
339
681
  type: string;
340
682
  description: string;
341
683
  };
342
- cardDirection: {
684
+ parentTitle: {
343
685
  type: string;
344
686
  description: string;
345
687
  };
346
- children: {
688
+ ancestors: {
689
+ type: string;
690
+ items: {
691
+ type: "object";
692
+ properties: {
693
+ remId: {
694
+ type: string;
695
+ description: string;
696
+ };
697
+ title: {
698
+ type: string;
699
+ description: string;
700
+ };
701
+ remType: {
702
+ type: string;
703
+ description: string;
704
+ };
705
+ };
706
+ required: string[];
707
+ additionalProperties: boolean;
708
+ };
709
+ description: string;
710
+ };
711
+ ancestorsTruncated: {
347
712
  type: string;
348
713
  description: string;
714
+ };
715
+ tags: {
716
+ type: string;
349
717
  items: {
350
- type: string;
718
+ type: "object";
719
+ properties: {
720
+ tagRemId: {
721
+ type: string;
722
+ description: string;
723
+ };
724
+ name: {
725
+ type: string;
726
+ description: string;
727
+ };
728
+ };
729
+ required: string[];
730
+ additionalProperties: boolean;
351
731
  };
732
+ description: string;
352
733
  };
353
734
  };
354
735
  required: string[];
736
+ additionalProperties: boolean;
355
737
  };
738
+ description: string;
356
739
  };
357
- contentProperties: {
740
+ contextRemId: {
358
741
  type: string;
359
742
  description: string;
360
- properties: {
361
- childrenRendered: {
362
- type: string;
363
- description: string;
364
- };
365
- childrenTotal: {
366
- type: string;
367
- description: string;
368
- };
369
- contentTruncated: {
370
- type: string;
371
- description: string;
372
- };
373
- };
374
743
  };
375
- };
744
+ contextTitle: {
745
+ type: string;
746
+ description: string;
747
+ };
748
+ contextReason: {
749
+ type: string;
750
+ enum: string[];
751
+ description: string;
752
+ };
753
+ cardDirection: {
754
+ type: string;
755
+ description: string;
756
+ };
757
+ content: {
758
+ type: string;
759
+ description: string;
760
+ };
761
+ contentStructured: {
762
+ type: string;
763
+ description: string;
764
+ items: {
765
+ type: string;
766
+ properties: {
767
+ remId: {
768
+ type: string;
769
+ description: string;
770
+ };
771
+ title: {
772
+ type: string;
773
+ description: string;
774
+ };
775
+ headline: {
776
+ type: string;
777
+ description: string;
778
+ };
779
+ inlineRefs: {
780
+ type: string;
781
+ items: {
782
+ type: "object";
783
+ properties: {
784
+ text: {
785
+ type: string;
786
+ description: string;
787
+ };
788
+ targetRemId: {
789
+ type: string;
790
+ description: string;
791
+ };
792
+ kind: {
793
+ type: string;
794
+ enum: string[];
795
+ description: string;
796
+ };
797
+ };
798
+ required: string[];
799
+ additionalProperties: boolean;
800
+ };
801
+ description: string;
802
+ };
803
+ aliases: {
804
+ type: string;
805
+ items: {
806
+ type: string;
807
+ };
808
+ description: string;
809
+ };
810
+ tags: {
811
+ type: string;
812
+ items: {
813
+ type: "object";
814
+ properties: {
815
+ tagRemId: {
816
+ type: string;
817
+ description: string;
818
+ };
819
+ name: {
820
+ type: string;
821
+ description: string;
822
+ };
823
+ };
824
+ required: string[];
825
+ additionalProperties: boolean;
826
+ };
827
+ description: string;
828
+ };
829
+ remType: {
830
+ type: string;
831
+ description: string;
832
+ };
833
+ cardDirection: {
834
+ type: string;
835
+ description: string;
836
+ };
837
+ children: {
838
+ type: string;
839
+ description: string;
840
+ items: {
841
+ type: string;
842
+ };
843
+ };
844
+ };
845
+ required: string[];
846
+ };
847
+ };
848
+ contentProperties: {
849
+ type: string;
850
+ description: string;
851
+ properties: {
852
+ childrenRendered: {
853
+ type: string;
854
+ description: string;
855
+ };
856
+ childrenTotal: {
857
+ type: string;
858
+ description: string;
859
+ };
860
+ contentTruncated: {
861
+ type: string;
862
+ description: string;
863
+ };
864
+ };
865
+ };
866
+ };
376
867
  };
377
868
  };
869
+ hasMore: {
870
+ type: string;
871
+ description: string;
872
+ };
873
+ nextCursor: {
874
+ type: string;
875
+ description: string;
876
+ };
877
+ truncated: {
878
+ type: string;
879
+ description: string;
880
+ };
881
+ truncationReason: {
882
+ type: string;
883
+ enum: string[];
884
+ description: string;
885
+ };
378
886
  };
379
887
  };
380
888
  };
@@ -392,11 +900,20 @@ export declare const READ_NOTE_TOOL: {
392
900
  type: string;
393
901
  description: string;
394
902
  };
395
- includeContent: {
903
+ contentMode: {
904
+ type: string;
905
+ enum: string[];
906
+ description: string;
907
+ };
908
+ view: {
396
909
  type: string;
397
910
  enum: string[];
398
911
  description: string;
399
912
  };
913
+ ancestorDepth: {
914
+ type: string;
915
+ description: string;
916
+ };
400
917
  childLimit: {
401
918
  type: string;
402
919
  description: string;
@@ -423,6 +940,30 @@ export declare const READ_NOTE_TOOL: {
423
940
  type: string;
424
941
  description: string;
425
942
  };
943
+ inlineRefs: {
944
+ type: string;
945
+ items: {
946
+ type: "object";
947
+ properties: {
948
+ text: {
949
+ type: string;
950
+ description: string;
951
+ };
952
+ targetRemId: {
953
+ type: string;
954
+ description: string;
955
+ };
956
+ kind: {
957
+ type: string;
958
+ enum: string[];
959
+ description: string;
960
+ };
961
+ };
962
+ required: string[];
963
+ additionalProperties: boolean;
964
+ };
965
+ description: string;
966
+ };
426
967
  parentRemId: {
427
968
  type: string;
428
969
  description: string;
@@ -431,6 +972,33 @@ export declare const READ_NOTE_TOOL: {
431
972
  type: string;
432
973
  description: string;
433
974
  };
975
+ ancestors: {
976
+ type: string;
977
+ items: {
978
+ type: "object";
979
+ properties: {
980
+ remId: {
981
+ type: string;
982
+ description: string;
983
+ };
984
+ title: {
985
+ type: string;
986
+ description: string;
987
+ };
988
+ remType: {
989
+ type: string;
990
+ description: string;
991
+ };
992
+ };
993
+ required: string[];
994
+ additionalProperties: boolean;
995
+ };
996
+ description: string;
997
+ };
998
+ ancestorsTruncated: {
999
+ type: string;
1000
+ description: string;
1001
+ };
434
1002
  aliases: {
435
1003
  type: string;
436
1004
  items: {
@@ -441,7 +1009,19 @@ export declare const READ_NOTE_TOOL: {
441
1009
  tags: {
442
1010
  type: string;
443
1011
  items: {
444
- type: string;
1012
+ type: "object";
1013
+ properties: {
1014
+ tagRemId: {
1015
+ type: string;
1016
+ description: string;
1017
+ };
1018
+ name: {
1019
+ type: string;
1020
+ description: string;
1021
+ };
1022
+ };
1023
+ required: string[];
1024
+ additionalProperties: boolean;
445
1025
  };
446
1026
  description: string;
447
1027
  };
@@ -475,6 +1055,30 @@ export declare const READ_NOTE_TOOL: {
475
1055
  type: string;
476
1056
  description: string;
477
1057
  };
1058
+ inlineRefs: {
1059
+ type: string;
1060
+ items: {
1061
+ type: "object";
1062
+ properties: {
1063
+ text: {
1064
+ type: string;
1065
+ description: string;
1066
+ };
1067
+ targetRemId: {
1068
+ type: string;
1069
+ description: string;
1070
+ };
1071
+ kind: {
1072
+ type: string;
1073
+ enum: string[];
1074
+ description: string;
1075
+ };
1076
+ };
1077
+ required: string[];
1078
+ additionalProperties: boolean;
1079
+ };
1080
+ description: string;
1081
+ };
478
1082
  aliases: {
479
1083
  type: string;
480
1084
  items: {
@@ -485,7 +1089,19 @@ export declare const READ_NOTE_TOOL: {
485
1089
  tags: {
486
1090
  type: string;
487
1091
  items: {
488
- type: string;
1092
+ type: "object";
1093
+ properties: {
1094
+ tagRemId: {
1095
+ type: string;
1096
+ description: string;
1097
+ };
1098
+ name: {
1099
+ type: string;
1100
+ description: string;
1101
+ };
1102
+ };
1103
+ required: string[];
1104
+ additionalProperties: boolean;
489
1105
  };
490
1106
  description: string;
491
1107
  };
@@ -510,63 +1126,2989 @@ export declare const READ_NOTE_TOOL: {
510
1126
  };
511
1127
  contentProperties: {
512
1128
  type: string;
513
- description: string;
514
- properties: {
515
- childrenRendered: {
516
- type: string;
517
- description: string;
518
- };
519
- childrenTotal: {
520
- type: string;
521
- description: string;
522
- };
523
- contentTruncated: {
524
- type: string;
525
- description: string;
526
- };
1129
+ description: string;
1130
+ properties: {
1131
+ childrenRendered: {
1132
+ type: string;
1133
+ description: string;
1134
+ };
1135
+ childrenTotal: {
1136
+ type: string;
1137
+ description: string;
1138
+ };
1139
+ contentTruncated: {
1140
+ type: string;
1141
+ description: string;
1142
+ };
1143
+ };
1144
+ };
1145
+ };
1146
+ };
1147
+ };
1148
+ export declare const LIST_CHILDREN_TOOL: {
1149
+ name: string;
1150
+ description: string;
1151
+ inputSchema: {
1152
+ type: "object";
1153
+ properties: {
1154
+ parentRemId: {
1155
+ type: string;
1156
+ description: string;
1157
+ };
1158
+ limit: {
1159
+ type: string;
1160
+ description: string;
1161
+ };
1162
+ cursor: {
1163
+ type: string;
1164
+ description: string;
1165
+ };
1166
+ view: {
1167
+ type: string;
1168
+ enum: string[];
1169
+ description: string;
1170
+ };
1171
+ ancestorDepth: {
1172
+ type: string;
1173
+ description: string;
1174
+ };
1175
+ };
1176
+ required: string[];
1177
+ };
1178
+ outputSchema: {
1179
+ type: "object";
1180
+ properties: {
1181
+ children: {
1182
+ type: string;
1183
+ items: {
1184
+ type: string;
1185
+ properties: {
1186
+ remId: {
1187
+ type: string;
1188
+ description: string;
1189
+ };
1190
+ title: {
1191
+ type: string;
1192
+ description: string;
1193
+ };
1194
+ headline: {
1195
+ type: string;
1196
+ description: string;
1197
+ };
1198
+ inlineRefs: {
1199
+ type: string;
1200
+ items: {
1201
+ type: "object";
1202
+ properties: {
1203
+ text: {
1204
+ type: string;
1205
+ description: string;
1206
+ };
1207
+ targetRemId: {
1208
+ type: string;
1209
+ description: string;
1210
+ };
1211
+ kind: {
1212
+ type: string;
1213
+ enum: string[];
1214
+ description: string;
1215
+ };
1216
+ };
1217
+ required: string[];
1218
+ additionalProperties: boolean;
1219
+ };
1220
+ description: string;
1221
+ };
1222
+ parentRemId: {
1223
+ type: string;
1224
+ description: string;
1225
+ };
1226
+ parentTitle: {
1227
+ type: string;
1228
+ description: string;
1229
+ };
1230
+ ancestors: {
1231
+ type: string;
1232
+ items: {
1233
+ type: "object";
1234
+ properties: {
1235
+ remId: {
1236
+ type: string;
1237
+ description: string;
1238
+ };
1239
+ title: {
1240
+ type: string;
1241
+ description: string;
1242
+ };
1243
+ remType: {
1244
+ type: string;
1245
+ description: string;
1246
+ };
1247
+ };
1248
+ required: string[];
1249
+ additionalProperties: boolean;
1250
+ };
1251
+ description: string;
1252
+ };
1253
+ ancestorsTruncated: {
1254
+ type: string;
1255
+ description: string;
1256
+ };
1257
+ aliases: {
1258
+ type: string;
1259
+ items: {
1260
+ type: string;
1261
+ };
1262
+ description: string;
1263
+ };
1264
+ tags: {
1265
+ type: string;
1266
+ items: {
1267
+ type: "object";
1268
+ properties: {
1269
+ tagRemId: {
1270
+ type: string;
1271
+ description: string;
1272
+ };
1273
+ name: {
1274
+ type: string;
1275
+ description: string;
1276
+ };
1277
+ };
1278
+ required: string[];
1279
+ additionalProperties: boolean;
1280
+ };
1281
+ description: string;
1282
+ };
1283
+ remType: {
1284
+ type: string;
1285
+ description: string;
1286
+ };
1287
+ matchedRems: {
1288
+ type: string;
1289
+ items: {
1290
+ type: "object";
1291
+ properties: {
1292
+ remId: {
1293
+ type: string;
1294
+ description: string;
1295
+ };
1296
+ title: {
1297
+ type: string;
1298
+ description: string;
1299
+ };
1300
+ headline: {
1301
+ type: string;
1302
+ description: string;
1303
+ };
1304
+ inlineRefs: {
1305
+ type: string;
1306
+ items: {
1307
+ type: "object";
1308
+ properties: {
1309
+ text: {
1310
+ type: string;
1311
+ description: string;
1312
+ };
1313
+ targetRemId: {
1314
+ type: string;
1315
+ description: string;
1316
+ };
1317
+ kind: {
1318
+ type: string;
1319
+ enum: string[];
1320
+ description: string;
1321
+ };
1322
+ };
1323
+ required: string[];
1324
+ additionalProperties: boolean;
1325
+ };
1326
+ description: string;
1327
+ };
1328
+ remType: {
1329
+ type: string;
1330
+ description: string;
1331
+ };
1332
+ parentRemId: {
1333
+ type: string;
1334
+ description: string;
1335
+ };
1336
+ parentTitle: {
1337
+ type: string;
1338
+ description: string;
1339
+ };
1340
+ ancestors: {
1341
+ type: string;
1342
+ items: {
1343
+ type: "object";
1344
+ properties: {
1345
+ remId: {
1346
+ type: string;
1347
+ description: string;
1348
+ };
1349
+ title: {
1350
+ type: string;
1351
+ description: string;
1352
+ };
1353
+ remType: {
1354
+ type: string;
1355
+ description: string;
1356
+ };
1357
+ };
1358
+ required: string[];
1359
+ additionalProperties: boolean;
1360
+ };
1361
+ description: string;
1362
+ };
1363
+ ancestorsTruncated: {
1364
+ type: string;
1365
+ description: string;
1366
+ };
1367
+ tags: {
1368
+ type: string;
1369
+ items: {
1370
+ type: "object";
1371
+ properties: {
1372
+ tagRemId: {
1373
+ type: string;
1374
+ description: string;
1375
+ };
1376
+ name: {
1377
+ type: string;
1378
+ description: string;
1379
+ };
1380
+ };
1381
+ required: string[];
1382
+ additionalProperties: boolean;
1383
+ };
1384
+ description: string;
1385
+ };
1386
+ };
1387
+ required: string[];
1388
+ additionalProperties: boolean;
1389
+ };
1390
+ description: string;
1391
+ };
1392
+ contextRemId: {
1393
+ type: string;
1394
+ description: string;
1395
+ };
1396
+ contextTitle: {
1397
+ type: string;
1398
+ description: string;
1399
+ };
1400
+ contextReason: {
1401
+ type: string;
1402
+ enum: string[];
1403
+ description: string;
1404
+ };
1405
+ cardDirection: {
1406
+ type: string;
1407
+ description: string;
1408
+ };
1409
+ content: {
1410
+ type: string;
1411
+ description: string;
1412
+ };
1413
+ contentStructured: {
1414
+ type: string;
1415
+ description: string;
1416
+ items: {
1417
+ type: string;
1418
+ properties: {
1419
+ remId: {
1420
+ type: string;
1421
+ description: string;
1422
+ };
1423
+ title: {
1424
+ type: string;
1425
+ description: string;
1426
+ };
1427
+ headline: {
1428
+ type: string;
1429
+ description: string;
1430
+ };
1431
+ inlineRefs: {
1432
+ type: string;
1433
+ items: {
1434
+ type: "object";
1435
+ properties: {
1436
+ text: {
1437
+ type: string;
1438
+ description: string;
1439
+ };
1440
+ targetRemId: {
1441
+ type: string;
1442
+ description: string;
1443
+ };
1444
+ kind: {
1445
+ type: string;
1446
+ enum: string[];
1447
+ description: string;
1448
+ };
1449
+ };
1450
+ required: string[];
1451
+ additionalProperties: boolean;
1452
+ };
1453
+ description: string;
1454
+ };
1455
+ aliases: {
1456
+ type: string;
1457
+ items: {
1458
+ type: string;
1459
+ };
1460
+ description: string;
1461
+ };
1462
+ tags: {
1463
+ type: string;
1464
+ items: {
1465
+ type: "object";
1466
+ properties: {
1467
+ tagRemId: {
1468
+ type: string;
1469
+ description: string;
1470
+ };
1471
+ name: {
1472
+ type: string;
1473
+ description: string;
1474
+ };
1475
+ };
1476
+ required: string[];
1477
+ additionalProperties: boolean;
1478
+ };
1479
+ description: string;
1480
+ };
1481
+ remType: {
1482
+ type: string;
1483
+ description: string;
1484
+ };
1485
+ cardDirection: {
1486
+ type: string;
1487
+ description: string;
1488
+ };
1489
+ children: {
1490
+ type: string;
1491
+ description: string;
1492
+ items: {
1493
+ type: string;
1494
+ };
1495
+ };
1496
+ };
1497
+ required: string[];
1498
+ };
1499
+ };
1500
+ contentProperties: {
1501
+ type: string;
1502
+ description: string;
1503
+ properties: {
1504
+ childrenRendered: {
1505
+ type: string;
1506
+ description: string;
1507
+ };
1508
+ childrenTotal: {
1509
+ type: string;
1510
+ description: string;
1511
+ };
1512
+ contentTruncated: {
1513
+ type: string;
1514
+ description: string;
1515
+ };
1516
+ };
1517
+ };
1518
+ };
1519
+ };
1520
+ };
1521
+ hasMore: {
1522
+ type: string;
1523
+ description: string;
1524
+ };
1525
+ nextCursor: {
1526
+ type: string;
1527
+ description: string;
1528
+ };
1529
+ totalChildren: {
1530
+ type: string;
1531
+ description: string;
1532
+ };
1533
+ };
1534
+ };
1535
+ };
1536
+ export declare const MOVE_NOTE_TOOL: {
1537
+ name: string;
1538
+ description: string;
1539
+ inputSchema: {
1540
+ type: "object";
1541
+ properties: {
1542
+ remId: {
1543
+ type: string;
1544
+ description: string;
1545
+ };
1546
+ newParentRemId: {
1547
+ type: string;
1548
+ description: string;
1549
+ };
1550
+ position: {
1551
+ type: string;
1552
+ enum: string[];
1553
+ description: string;
1554
+ };
1555
+ siblingRemId: {
1556
+ type: string;
1557
+ description: string;
1558
+ };
1559
+ dryRun: {
1560
+ type: string;
1561
+ description: string;
1562
+ };
1563
+ expectedOldParentRemId: {
1564
+ type: string;
1565
+ description: string;
1566
+ };
1567
+ ancestorDepth: {
1568
+ type: string;
1569
+ description: string;
1570
+ };
1571
+ };
1572
+ required: string[];
1573
+ };
1574
+ outputSchema: {
1575
+ type: "object";
1576
+ properties: {
1577
+ remId: {
1578
+ type: string;
1579
+ };
1580
+ title: {
1581
+ type: string;
1582
+ };
1583
+ dryRun: {
1584
+ type: string;
1585
+ };
1586
+ oldParentRemId: {
1587
+ type: string;
1588
+ };
1589
+ oldParentTitle: {
1590
+ type: string;
1591
+ };
1592
+ newParentRemId: {
1593
+ type: string;
1594
+ };
1595
+ newParentTitle: {
1596
+ type: string;
1597
+ };
1598
+ position: {
1599
+ type: string;
1600
+ enum: string[];
1601
+ };
1602
+ siblingRemId: {
1603
+ type: string;
1604
+ };
1605
+ ancestorsBefore: {
1606
+ type: string;
1607
+ items: {
1608
+ type: "object";
1609
+ properties: {
1610
+ remId: {
1611
+ type: string;
1612
+ description: string;
1613
+ };
1614
+ title: {
1615
+ type: string;
1616
+ description: string;
1617
+ };
1618
+ remType: {
1619
+ type: string;
1620
+ description: string;
1621
+ };
1622
+ };
1623
+ required: string[];
1624
+ additionalProperties: boolean;
1625
+ };
1626
+ };
1627
+ ancestorsBeforeTruncated: {
1628
+ type: string;
1629
+ };
1630
+ ancestorsAfter: {
1631
+ type: string;
1632
+ items: {
1633
+ type: "object";
1634
+ properties: {
1635
+ remId: {
1636
+ type: string;
1637
+ description: string;
1638
+ };
1639
+ title: {
1640
+ type: string;
1641
+ description: string;
1642
+ };
1643
+ remType: {
1644
+ type: string;
1645
+ description: string;
1646
+ };
1647
+ };
1648
+ required: string[];
1649
+ additionalProperties: boolean;
1650
+ };
1651
+ };
1652
+ ancestorsAfterTruncated: {
1653
+ type: string;
1654
+ };
1655
+ };
1656
+ required: string[];
1657
+ };
1658
+ };
1659
+ export declare const UPDATE_NOTE_TOOL: {
1660
+ name: string;
1661
+ description: string;
1662
+ inputSchema: {
1663
+ type: "object";
1664
+ properties: {
1665
+ remId: {
1666
+ type: string;
1667
+ description: string;
1668
+ };
1669
+ title: {
1670
+ type: string;
1671
+ description: string;
1672
+ };
1673
+ };
1674
+ required: string[];
1675
+ additionalProperties: boolean;
1676
+ };
1677
+ outputSchema: {
1678
+ type: "object";
1679
+ properties: {
1680
+ remIds: {
1681
+ type: string;
1682
+ items: {
1683
+ type: string;
1684
+ };
1685
+ description: string;
1686
+ };
1687
+ titles: {
1688
+ type: string;
1689
+ items: {
1690
+ type: string;
1691
+ };
1692
+ description: string;
1693
+ };
1694
+ };
1695
+ required: string[];
1696
+ };
1697
+ };
1698
+ export declare const SET_DOCUMENT_STATUS_TOOL: {
1699
+ name: string;
1700
+ description: string;
1701
+ inputSchema: {
1702
+ type: "object";
1703
+ properties: {
1704
+ remId: {
1705
+ type: string;
1706
+ description: string;
1707
+ };
1708
+ isDocument: {
1709
+ type: string;
1710
+ description: string;
1711
+ };
1712
+ dryRun: {
1713
+ type: string;
1714
+ description: string;
1715
+ };
1716
+ expectedOldRemType: {
1717
+ type: string;
1718
+ enum: string[];
1719
+ description: string;
1720
+ };
1721
+ };
1722
+ required: string[];
1723
+ additionalProperties: boolean;
1724
+ };
1725
+ outputSchema: {
1726
+ type: "object";
1727
+ properties: {
1728
+ remId: {
1729
+ type: string;
1730
+ description: string;
1731
+ };
1732
+ title: {
1733
+ type: string;
1734
+ description: string;
1735
+ };
1736
+ oldRemType: {
1737
+ type: string;
1738
+ description: string;
1739
+ };
1740
+ newRemType: {
1741
+ type: string;
1742
+ description: string;
1743
+ };
1744
+ oldIsDocument: {
1745
+ type: string;
1746
+ description: string;
1747
+ };
1748
+ newIsDocument: {
1749
+ type: string;
1750
+ description: string;
1751
+ };
1752
+ requestedIsDocument: {
1753
+ type: string;
1754
+ description: string;
1755
+ };
1756
+ dryRun: {
1757
+ type: string;
1758
+ description: string;
1759
+ };
1760
+ changed: {
1761
+ type: string;
1762
+ description: string;
1763
+ };
1764
+ wouldChange: {
1765
+ type: string;
1766
+ description: string;
1767
+ };
1768
+ sdkSupportsDocumentStatus: {
1769
+ type: string;
1770
+ description: string;
1771
+ };
1772
+ warnings: {
1773
+ type: string;
1774
+ items: {
1775
+ type: string;
1776
+ };
1777
+ description: string;
1778
+ };
1779
+ cardDirectionBefore: {
1780
+ type: string;
1781
+ description: string;
1782
+ };
1783
+ cardDirectionAfter: {
1784
+ type: string;
1785
+ description: string;
1786
+ };
1787
+ };
1788
+ required: string[];
1789
+ };
1790
+ };
1791
+ export declare const INSERT_CHILDREN_TOOL: {
1792
+ name: string;
1793
+ description: string;
1794
+ inputSchema: {
1795
+ type: "object";
1796
+ properties: {
1797
+ parentRemId: {
1798
+ type: string;
1799
+ description: string;
1800
+ };
1801
+ content: {
1802
+ type: string;
1803
+ description: string;
1804
+ };
1805
+ position: {
1806
+ type: string;
1807
+ enum: string[];
1808
+ description: string;
1809
+ };
1810
+ siblingRemId: {
1811
+ type: string;
1812
+ description: string;
1813
+ };
1814
+ };
1815
+ required: string[];
1816
+ additionalProperties: boolean;
1817
+ };
1818
+ outputSchema: {
1819
+ type: "object";
1820
+ properties: {
1821
+ remIds: {
1822
+ type: string;
1823
+ items: {
1824
+ type: string;
1825
+ };
1826
+ description: string;
1827
+ };
1828
+ titles: {
1829
+ type: string;
1830
+ items: {
1831
+ type: string;
1832
+ };
1833
+ description: string;
1834
+ };
1835
+ };
1836
+ required: string[];
1837
+ };
1838
+ };
1839
+ export declare const REPLACE_CHILDREN_TOOL: {
1840
+ name: string;
1841
+ description: string;
1842
+ inputSchema: {
1843
+ type: "object";
1844
+ properties: {
1845
+ parentRemId: {
1846
+ type: string;
1847
+ description: string;
1848
+ };
1849
+ content: {
1850
+ type: string;
1851
+ description: string;
1852
+ };
1853
+ };
1854
+ required: string[];
1855
+ additionalProperties: boolean;
1856
+ };
1857
+ outputSchema: {
1858
+ type: "object";
1859
+ properties: {
1860
+ remIds: {
1861
+ type: string;
1862
+ items: {
1863
+ type: string;
1864
+ };
1865
+ description: string;
1866
+ };
1867
+ titles: {
1868
+ type: string;
1869
+ items: {
1870
+ type: string;
1871
+ };
1872
+ description: string;
1873
+ };
1874
+ };
1875
+ required: string[];
1876
+ };
1877
+ };
1878
+ export declare const UPDATE_TAGS_TOOL: {
1879
+ name: string;
1880
+ description: string;
1881
+ inputSchema: {
1882
+ type: "object";
1883
+ properties: {
1884
+ remId: {
1885
+ type: string;
1886
+ description: string;
1887
+ };
1888
+ addTagRemIds: {
1889
+ type: string;
1890
+ items: {
1891
+ type: string;
1892
+ };
1893
+ minItems: number;
1894
+ description: string;
1895
+ };
1896
+ removeTagRemIds: {
1897
+ type: string;
1898
+ items: {
1899
+ type: string;
1900
+ };
1901
+ minItems: number;
1902
+ description: string;
1903
+ };
1904
+ };
1905
+ required: string[];
1906
+ additionalProperties: boolean;
1907
+ };
1908
+ outputSchema: {
1909
+ type: "object";
1910
+ properties: {
1911
+ remIds: {
1912
+ type: string;
1913
+ items: {
1914
+ type: string;
1915
+ };
1916
+ description: string;
1917
+ };
1918
+ titles: {
1919
+ type: string;
1920
+ items: {
1921
+ type: string;
1922
+ };
1923
+ description: string;
1924
+ };
1925
+ };
1926
+ required: string[];
1927
+ };
1928
+ };
1929
+ export declare const APPEND_JOURNAL_TOOL: {
1930
+ name: string;
1931
+ description: string;
1932
+ inputSchema: {
1933
+ type: "object";
1934
+ properties: {
1935
+ content: {
1936
+ type: string;
1937
+ description: string;
1938
+ };
1939
+ timestamp: {
1940
+ type: string;
1941
+ description: string;
1942
+ };
1943
+ tagRemIds: {
1944
+ type: string;
1945
+ items: {
1946
+ type: string;
1947
+ };
1948
+ description: string;
1949
+ };
1950
+ };
1951
+ required: string[];
1952
+ additionalProperties: boolean;
1953
+ };
1954
+ outputSchema: {
1955
+ type: "object";
1956
+ properties: {
1957
+ remIds: {
1958
+ type: string;
1959
+ items: {
1960
+ type: string;
1961
+ };
1962
+ description: string;
1963
+ };
1964
+ titles: {
1965
+ type: string;
1966
+ items: {
1967
+ type: string;
1968
+ };
1969
+ description: string;
1970
+ };
1971
+ };
1972
+ required: string[];
1973
+ };
1974
+ };
1975
+ export declare const STATUS_TOOL: {
1976
+ name: string;
1977
+ description: string;
1978
+ inputSchema: {
1979
+ type: "object";
1980
+ properties: {};
1981
+ };
1982
+ outputSchema: {
1983
+ type: "object";
1984
+ properties: {
1985
+ connected: {
1986
+ type: string;
1987
+ description: string;
1988
+ };
1989
+ serverVersion: {
1990
+ type: string;
1991
+ description: string;
1992
+ };
1993
+ pluginVersion: {
1994
+ type: string;
1995
+ description: string;
1996
+ };
1997
+ version_warning: {
1998
+ type: string;
1999
+ description: string;
2000
+ };
2001
+ acceptWriteOperations: {
2002
+ type: string;
2003
+ description: string;
2004
+ };
2005
+ acceptReplaceOperation: {
2006
+ type: string;
2007
+ description: string;
2008
+ };
2009
+ message: {
2010
+ type: string;
2011
+ description: string;
2012
+ };
2013
+ };
2014
+ required: string[];
2015
+ };
2016
+ };
2017
+ export declare const READ_TABLE_TOOL: {
2018
+ name: string;
2019
+ description: string;
2020
+ inputSchema: {
2021
+ type: "object";
2022
+ properties: {
2023
+ tableRemId: {
2024
+ type: string;
2025
+ description: string;
2026
+ };
2027
+ tableTitle: {
2028
+ type: string;
2029
+ description: string;
2030
+ };
2031
+ limit: {
2032
+ type: string;
2033
+ description: string;
2034
+ };
2035
+ offset: {
2036
+ type: string;
2037
+ description: string;
2038
+ };
2039
+ propertyFilter: {
2040
+ type: string;
2041
+ items: {
2042
+ type: string;
2043
+ };
2044
+ description: string;
2045
+ };
2046
+ };
2047
+ description: string;
2048
+ };
2049
+ outputSchema: {
2050
+ type: "object";
2051
+ properties: {
2052
+ tableId: {
2053
+ type: string;
2054
+ description: string;
2055
+ };
2056
+ tableName: {
2057
+ type: string;
2058
+ description: string;
2059
+ };
2060
+ columns: {
2061
+ type: string;
2062
+ description: string;
2063
+ items: {
2064
+ type: string;
2065
+ properties: {
2066
+ propertyId: {
2067
+ type: string;
2068
+ description: string;
2069
+ };
2070
+ name: {
2071
+ type: string;
2072
+ description: string;
2073
+ };
2074
+ type: {
2075
+ type: string;
2076
+ description: string;
2077
+ };
2078
+ };
2079
+ required: string[];
2080
+ };
2081
+ };
2082
+ rows: {
2083
+ type: string;
2084
+ description: string;
2085
+ items: {
2086
+ type: string;
2087
+ properties: {
2088
+ remId: {
2089
+ type: string;
2090
+ description: string;
2091
+ };
2092
+ name: {
2093
+ type: string;
2094
+ description: string;
2095
+ };
2096
+ values: {
2097
+ type: string;
2098
+ description: string;
2099
+ additionalProperties: {
2100
+ type: string;
2101
+ };
2102
+ };
2103
+ };
2104
+ required: string[];
2105
+ };
2106
+ };
2107
+ totalRows: {
2108
+ type: string;
2109
+ description: string;
2110
+ };
2111
+ rowsReturned: {
2112
+ type: string;
2113
+ description: string;
2114
+ };
2115
+ };
2116
+ required: string[];
2117
+ };
2118
+ };
2119
+ export declare const PLAYBOOK_TOOL: {
2120
+ name: string;
2121
+ description: string;
2122
+ inputSchema: {
2123
+ type: "object";
2124
+ properties: {};
2125
+ };
2126
+ outputSchema: {
2127
+ type: "object";
2128
+ properties: {
2129
+ playbookVersion: {
2130
+ type: string;
2131
+ };
2132
+ summary: {
2133
+ type: string;
2134
+ };
2135
+ recommendedStatusCheck: {
2136
+ type: string;
2137
+ properties: {
2138
+ tool: {
2139
+ type: string;
2140
+ };
2141
+ cadence: {
2142
+ type: string;
2143
+ };
2144
+ rationale: {
2145
+ type: string;
2146
+ };
2147
+ };
2148
+ };
2149
+ decisionTree: {
2150
+ type: string;
2151
+ items: {
2152
+ type: string;
2153
+ };
2154
+ };
2155
+ navigationPresets: {
2156
+ type: string;
2157
+ properties: {
2158
+ orientation: {
2159
+ type: string;
2160
+ properties: {
2161
+ contentMode: {
2162
+ type: string;
2163
+ };
2164
+ view: {
2165
+ type: string;
2166
+ };
2167
+ depth: {
2168
+ type: string;
2169
+ };
2170
+ childLimit: {
2171
+ type: string;
2172
+ };
2173
+ };
2174
+ };
2175
+ };
2176
+ };
2177
+ contentModes: {
2178
+ type: string;
2179
+ properties: {
2180
+ structured: {
2181
+ type: string;
2182
+ };
2183
+ markdown: {
2184
+ type: string;
2185
+ };
2186
+ none: {
2187
+ type: string;
2188
+ };
2189
+ };
2190
+ };
2191
+ writePolicy: {
2192
+ type: string;
2193
+ properties: {
2194
+ statusTool: {
2195
+ type: string;
2196
+ };
2197
+ requiredFields: {
2198
+ type: string;
2199
+ items: {
2200
+ type: string;
2201
+ };
2202
+ };
2203
+ guidance: {
2204
+ type: string;
2205
+ items: {
2206
+ type: string;
2207
+ };
2208
+ };
2209
+ };
2210
+ };
2211
+ currentStatus: {
2212
+ type: string;
2213
+ description: string;
2214
+ };
2215
+ };
2216
+ required: string[];
2217
+ };
2218
+ };
2219
+ export declare const ALL_TOOLS: readonly [{
2220
+ name: string;
2221
+ description: string;
2222
+ inputSchema: {
2223
+ type: "object";
2224
+ properties: {
2225
+ title: {
2226
+ type: string;
2227
+ description: string;
2228
+ };
2229
+ content: {
2230
+ type: string;
2231
+ description: string;
2232
+ };
2233
+ parentId: {
2234
+ type: string;
2235
+ description: string;
2236
+ };
2237
+ tagRemIds: {
2238
+ type: string;
2239
+ items: {
2240
+ type: string;
2241
+ };
2242
+ description: string;
2243
+ };
2244
+ asDocument: {
2245
+ type: string;
2246
+ description: string;
2247
+ };
2248
+ };
2249
+ required: never[];
2250
+ additionalProperties: boolean;
2251
+ };
2252
+ outputSchema: {
2253
+ type: "object";
2254
+ properties: {
2255
+ remIds: {
2256
+ type: string;
2257
+ items: {
2258
+ type: string;
2259
+ };
2260
+ description: string;
2261
+ };
2262
+ titles: {
2263
+ type: string;
2264
+ items: {
2265
+ type: string;
2266
+ };
2267
+ description: string;
2268
+ };
2269
+ };
2270
+ required: string[];
2271
+ };
2272
+ }, {
2273
+ name: string;
2274
+ description: string;
2275
+ inputSchema: {
2276
+ type: "object";
2277
+ properties: {
2278
+ query: {
2279
+ type: string;
2280
+ description: string;
2281
+ };
2282
+ limit: {
2283
+ type: string;
2284
+ description: string;
2285
+ };
2286
+ cursor: {
2287
+ type: string;
2288
+ description: string;
2289
+ };
2290
+ contentMode: {
2291
+ type: string;
2292
+ enum: string[];
2293
+ description: string;
2294
+ };
2295
+ view: {
2296
+ type: string;
2297
+ enum: string[];
2298
+ description: string;
2299
+ };
2300
+ ancestorDepth: {
2301
+ type: string;
2302
+ description: string;
2303
+ };
2304
+ depth: {
2305
+ type: string;
2306
+ description: string;
2307
+ };
2308
+ childLimit: {
2309
+ type: string;
2310
+ description: string;
2311
+ };
2312
+ maxContentLength: {
2313
+ type: string;
2314
+ description: string;
2315
+ };
2316
+ };
2317
+ required: string[];
2318
+ };
2319
+ outputSchema: {
2320
+ type: "object";
2321
+ properties: {
2322
+ results: {
2323
+ type: string;
2324
+ description: string;
2325
+ items: {
2326
+ type: string;
2327
+ properties: {
2328
+ remId: {
2329
+ type: string;
2330
+ description: string;
2331
+ };
2332
+ title: {
2333
+ type: string;
2334
+ description: string;
2335
+ };
2336
+ headline: {
2337
+ type: string;
2338
+ description: string;
2339
+ };
2340
+ inlineRefs: {
2341
+ type: string;
2342
+ items: {
2343
+ type: "object";
2344
+ properties: {
2345
+ text: {
2346
+ type: string;
2347
+ description: string;
2348
+ };
2349
+ targetRemId: {
2350
+ type: string;
2351
+ description: string;
2352
+ };
2353
+ kind: {
2354
+ type: string;
2355
+ enum: string[];
2356
+ description: string;
2357
+ };
2358
+ };
2359
+ required: string[];
2360
+ additionalProperties: boolean;
2361
+ };
2362
+ description: string;
2363
+ };
2364
+ parentRemId: {
2365
+ type: string;
2366
+ description: string;
2367
+ };
2368
+ parentTitle: {
2369
+ type: string;
2370
+ description: string;
2371
+ };
2372
+ ancestors: {
2373
+ type: string;
2374
+ items: {
2375
+ type: "object";
2376
+ properties: {
2377
+ remId: {
2378
+ type: string;
2379
+ description: string;
2380
+ };
2381
+ title: {
2382
+ type: string;
2383
+ description: string;
2384
+ };
2385
+ remType: {
2386
+ type: string;
2387
+ description: string;
2388
+ };
2389
+ };
2390
+ required: string[];
2391
+ additionalProperties: boolean;
2392
+ };
2393
+ description: string;
2394
+ };
2395
+ ancestorsTruncated: {
2396
+ type: string;
2397
+ description: string;
2398
+ };
2399
+ aliases: {
2400
+ type: string;
2401
+ items: {
2402
+ type: string;
2403
+ };
2404
+ description: string;
2405
+ };
2406
+ tags: {
2407
+ type: string;
2408
+ items: {
2409
+ type: "object";
2410
+ properties: {
2411
+ tagRemId: {
2412
+ type: string;
2413
+ description: string;
2414
+ };
2415
+ name: {
2416
+ type: string;
2417
+ description: string;
2418
+ };
2419
+ };
2420
+ required: string[];
2421
+ additionalProperties: boolean;
2422
+ };
2423
+ description: string;
2424
+ };
2425
+ remType: {
2426
+ type: string;
2427
+ description: string;
2428
+ };
2429
+ matchedRems: {
2430
+ type: string;
2431
+ items: {
2432
+ type: "object";
2433
+ properties: {
2434
+ remId: {
2435
+ type: string;
2436
+ description: string;
2437
+ };
2438
+ title: {
2439
+ type: string;
2440
+ description: string;
2441
+ };
2442
+ headline: {
2443
+ type: string;
2444
+ description: string;
2445
+ };
2446
+ inlineRefs: {
2447
+ type: string;
2448
+ items: {
2449
+ type: "object";
2450
+ properties: {
2451
+ text: {
2452
+ type: string;
2453
+ description: string;
2454
+ };
2455
+ targetRemId: {
2456
+ type: string;
2457
+ description: string;
2458
+ };
2459
+ kind: {
2460
+ type: string;
2461
+ enum: string[];
2462
+ description: string;
2463
+ };
2464
+ };
2465
+ required: string[];
2466
+ additionalProperties: boolean;
2467
+ };
2468
+ description: string;
2469
+ };
2470
+ remType: {
2471
+ type: string;
2472
+ description: string;
2473
+ };
2474
+ parentRemId: {
2475
+ type: string;
2476
+ description: string;
2477
+ };
2478
+ parentTitle: {
2479
+ type: string;
2480
+ description: string;
2481
+ };
2482
+ ancestors: {
2483
+ type: string;
2484
+ items: {
2485
+ type: "object";
2486
+ properties: {
2487
+ remId: {
2488
+ type: string;
2489
+ description: string;
2490
+ };
2491
+ title: {
2492
+ type: string;
2493
+ description: string;
2494
+ };
2495
+ remType: {
2496
+ type: string;
2497
+ description: string;
2498
+ };
2499
+ };
2500
+ required: string[];
2501
+ additionalProperties: boolean;
2502
+ };
2503
+ description: string;
2504
+ };
2505
+ ancestorsTruncated: {
2506
+ type: string;
2507
+ description: string;
2508
+ };
2509
+ tags: {
2510
+ type: string;
2511
+ items: {
2512
+ type: "object";
2513
+ properties: {
2514
+ tagRemId: {
2515
+ type: string;
2516
+ description: string;
2517
+ };
2518
+ name: {
2519
+ type: string;
2520
+ description: string;
2521
+ };
2522
+ };
2523
+ required: string[];
2524
+ additionalProperties: boolean;
2525
+ };
2526
+ description: string;
2527
+ };
2528
+ };
2529
+ required: string[];
2530
+ additionalProperties: boolean;
2531
+ };
2532
+ description: string;
2533
+ };
2534
+ contextRemId: {
2535
+ type: string;
2536
+ description: string;
2537
+ };
2538
+ contextTitle: {
2539
+ type: string;
2540
+ description: string;
2541
+ };
2542
+ contextReason: {
2543
+ type: string;
2544
+ enum: string[];
2545
+ description: string;
2546
+ };
2547
+ cardDirection: {
2548
+ type: string;
2549
+ description: string;
2550
+ };
2551
+ content: {
2552
+ type: string;
2553
+ description: string;
2554
+ };
2555
+ contentStructured: {
2556
+ type: string;
2557
+ description: string;
2558
+ items: {
2559
+ type: string;
2560
+ properties: {
2561
+ remId: {
2562
+ type: string;
2563
+ description: string;
2564
+ };
2565
+ title: {
2566
+ type: string;
2567
+ description: string;
2568
+ };
2569
+ headline: {
2570
+ type: string;
2571
+ description: string;
2572
+ };
2573
+ inlineRefs: {
2574
+ type: string;
2575
+ items: {
2576
+ type: "object";
2577
+ properties: {
2578
+ text: {
2579
+ type: string;
2580
+ description: string;
2581
+ };
2582
+ targetRemId: {
2583
+ type: string;
2584
+ description: string;
2585
+ };
2586
+ kind: {
2587
+ type: string;
2588
+ enum: string[];
2589
+ description: string;
2590
+ };
2591
+ };
2592
+ required: string[];
2593
+ additionalProperties: boolean;
2594
+ };
2595
+ description: string;
2596
+ };
2597
+ aliases: {
2598
+ type: string;
2599
+ items: {
2600
+ type: string;
2601
+ };
2602
+ description: string;
2603
+ };
2604
+ tags: {
2605
+ type: string;
2606
+ items: {
2607
+ type: "object";
2608
+ properties: {
2609
+ tagRemId: {
2610
+ type: string;
2611
+ description: string;
2612
+ };
2613
+ name: {
2614
+ type: string;
2615
+ description: string;
2616
+ };
2617
+ };
2618
+ required: string[];
2619
+ additionalProperties: boolean;
2620
+ };
2621
+ description: string;
2622
+ };
2623
+ remType: {
2624
+ type: string;
2625
+ description: string;
2626
+ };
2627
+ cardDirection: {
2628
+ type: string;
2629
+ description: string;
2630
+ };
2631
+ children: {
2632
+ type: string;
2633
+ description: string;
2634
+ items: {
2635
+ type: string;
2636
+ };
2637
+ };
2638
+ };
2639
+ required: string[];
2640
+ };
2641
+ };
2642
+ contentProperties: {
2643
+ type: string;
2644
+ description: string;
2645
+ properties: {
2646
+ childrenRendered: {
2647
+ type: string;
2648
+ description: string;
2649
+ };
2650
+ childrenTotal: {
2651
+ type: string;
2652
+ description: string;
2653
+ };
2654
+ contentTruncated: {
2655
+ type: string;
2656
+ description: string;
2657
+ };
2658
+ };
2659
+ };
2660
+ };
2661
+ };
2662
+ };
2663
+ hasMore: {
2664
+ type: string;
2665
+ description: string;
2666
+ };
2667
+ nextCursor: {
2668
+ type: string;
2669
+ description: string;
2670
+ };
2671
+ truncated: {
2672
+ type: string;
2673
+ description: string;
2674
+ };
2675
+ truncationReason: {
2676
+ type: string;
2677
+ enum: string[];
2678
+ description: string;
2679
+ };
2680
+ };
2681
+ };
2682
+ }, {
2683
+ name: string;
2684
+ description: string;
2685
+ inputSchema: {
2686
+ type: "object";
2687
+ properties: {
2688
+ tagRemId: {
2689
+ type: string;
2690
+ description: string;
2691
+ };
2692
+ resultMode: {
2693
+ type: string;
2694
+ enum: string[];
2695
+ description: string;
2696
+ };
2697
+ limit: {
2698
+ type: string;
2699
+ description: string;
2700
+ };
2701
+ contentMode: {
2702
+ type: string;
2703
+ enum: string[];
2704
+ description: string;
2705
+ };
2706
+ view: {
2707
+ type: string;
2708
+ enum: string[];
2709
+ description: string;
2710
+ };
2711
+ ancestorDepth: {
2712
+ type: string;
2713
+ description: string;
2714
+ };
2715
+ depth: {
2716
+ type: string;
2717
+ description: string;
2718
+ };
2719
+ childLimit: {
2720
+ type: string;
2721
+ description: string;
2722
+ };
2723
+ maxContentLength: {
2724
+ type: string;
2725
+ description: string;
2726
+ };
2727
+ cursor: {
2728
+ type: string;
2729
+ description: string;
2730
+ };
2731
+ timeoutMs: {
2732
+ type: string;
2733
+ description: string;
2734
+ };
2735
+ };
2736
+ required: string[];
2737
+ };
2738
+ outputSchema: {
2739
+ type: "object";
2740
+ properties: {
2741
+ results: {
2742
+ type: string;
2743
+ description: string;
2744
+ items: {
2745
+ type: string;
2746
+ properties: {
2747
+ remId: {
2748
+ type: string;
2749
+ description: string;
2750
+ };
2751
+ title: {
2752
+ type: string;
2753
+ description: string;
2754
+ };
2755
+ headline: {
2756
+ type: string;
2757
+ description: string;
2758
+ };
2759
+ inlineRefs: {
2760
+ type: string;
2761
+ items: {
2762
+ type: "object";
2763
+ properties: {
2764
+ text: {
2765
+ type: string;
2766
+ description: string;
2767
+ };
2768
+ targetRemId: {
2769
+ type: string;
2770
+ description: string;
2771
+ };
2772
+ kind: {
2773
+ type: string;
2774
+ enum: string[];
2775
+ description: string;
2776
+ };
2777
+ };
2778
+ required: string[];
2779
+ additionalProperties: boolean;
2780
+ };
2781
+ description: string;
2782
+ };
2783
+ parentRemId: {
2784
+ type: string;
2785
+ description: string;
2786
+ };
2787
+ parentTitle: {
2788
+ type: string;
2789
+ description: string;
2790
+ };
2791
+ ancestors: {
2792
+ type: string;
2793
+ items: {
2794
+ type: "object";
2795
+ properties: {
2796
+ remId: {
2797
+ type: string;
2798
+ description: string;
2799
+ };
2800
+ title: {
2801
+ type: string;
2802
+ description: string;
2803
+ };
2804
+ remType: {
2805
+ type: string;
2806
+ description: string;
2807
+ };
2808
+ };
2809
+ required: string[];
2810
+ additionalProperties: boolean;
2811
+ };
2812
+ description: string;
2813
+ };
2814
+ ancestorsTruncated: {
2815
+ type: string;
2816
+ description: string;
2817
+ };
2818
+ aliases: {
2819
+ type: string;
2820
+ items: {
2821
+ type: string;
2822
+ };
2823
+ description: string;
2824
+ };
2825
+ tags: {
2826
+ type: string;
2827
+ items: {
2828
+ type: "object";
2829
+ properties: {
2830
+ tagRemId: {
2831
+ type: string;
2832
+ description: string;
2833
+ };
2834
+ name: {
2835
+ type: string;
2836
+ description: string;
2837
+ };
2838
+ };
2839
+ required: string[];
2840
+ additionalProperties: boolean;
2841
+ };
2842
+ description: string;
2843
+ };
2844
+ remType: {
2845
+ type: string;
2846
+ description: string;
2847
+ };
2848
+ matchedRems: {
2849
+ type: string;
2850
+ items: {
2851
+ type: "object";
2852
+ properties: {
2853
+ remId: {
2854
+ type: string;
2855
+ description: string;
2856
+ };
2857
+ title: {
2858
+ type: string;
2859
+ description: string;
2860
+ };
2861
+ headline: {
2862
+ type: string;
2863
+ description: string;
2864
+ };
2865
+ inlineRefs: {
2866
+ type: string;
2867
+ items: {
2868
+ type: "object";
2869
+ properties: {
2870
+ text: {
2871
+ type: string;
2872
+ description: string;
2873
+ };
2874
+ targetRemId: {
2875
+ type: string;
2876
+ description: string;
2877
+ };
2878
+ kind: {
2879
+ type: string;
2880
+ enum: string[];
2881
+ description: string;
2882
+ };
2883
+ };
2884
+ required: string[];
2885
+ additionalProperties: boolean;
2886
+ };
2887
+ description: string;
2888
+ };
2889
+ remType: {
2890
+ type: string;
2891
+ description: string;
2892
+ };
2893
+ parentRemId: {
2894
+ type: string;
2895
+ description: string;
2896
+ };
2897
+ parentTitle: {
2898
+ type: string;
2899
+ description: string;
2900
+ };
2901
+ ancestors: {
2902
+ type: string;
2903
+ items: {
2904
+ type: "object";
2905
+ properties: {
2906
+ remId: {
2907
+ type: string;
2908
+ description: string;
2909
+ };
2910
+ title: {
2911
+ type: string;
2912
+ description: string;
2913
+ };
2914
+ remType: {
2915
+ type: string;
2916
+ description: string;
2917
+ };
2918
+ };
2919
+ required: string[];
2920
+ additionalProperties: boolean;
2921
+ };
2922
+ description: string;
2923
+ };
2924
+ ancestorsTruncated: {
2925
+ type: string;
2926
+ description: string;
2927
+ };
2928
+ tags: {
2929
+ type: string;
2930
+ items: {
2931
+ type: "object";
2932
+ properties: {
2933
+ tagRemId: {
2934
+ type: string;
2935
+ description: string;
2936
+ };
2937
+ name: {
2938
+ type: string;
2939
+ description: string;
2940
+ };
2941
+ };
2942
+ required: string[];
2943
+ additionalProperties: boolean;
2944
+ };
2945
+ description: string;
2946
+ };
2947
+ };
2948
+ required: string[];
2949
+ additionalProperties: boolean;
2950
+ };
2951
+ description: string;
2952
+ };
2953
+ contextRemId: {
2954
+ type: string;
2955
+ description: string;
2956
+ };
2957
+ contextTitle: {
2958
+ type: string;
2959
+ description: string;
2960
+ };
2961
+ contextReason: {
2962
+ type: string;
2963
+ enum: string[];
2964
+ description: string;
2965
+ };
2966
+ cardDirection: {
2967
+ type: string;
2968
+ description: string;
2969
+ };
2970
+ content: {
2971
+ type: string;
2972
+ description: string;
2973
+ };
2974
+ contentStructured: {
2975
+ type: string;
2976
+ description: string;
2977
+ items: {
2978
+ type: string;
2979
+ properties: {
2980
+ remId: {
2981
+ type: string;
2982
+ description: string;
2983
+ };
2984
+ title: {
2985
+ type: string;
2986
+ description: string;
2987
+ };
2988
+ headline: {
2989
+ type: string;
2990
+ description: string;
2991
+ };
2992
+ inlineRefs: {
2993
+ type: string;
2994
+ items: {
2995
+ type: "object";
2996
+ properties: {
2997
+ text: {
2998
+ type: string;
2999
+ description: string;
3000
+ };
3001
+ targetRemId: {
3002
+ type: string;
3003
+ description: string;
3004
+ };
3005
+ kind: {
3006
+ type: string;
3007
+ enum: string[];
3008
+ description: string;
3009
+ };
3010
+ };
3011
+ required: string[];
3012
+ additionalProperties: boolean;
3013
+ };
3014
+ description: string;
3015
+ };
3016
+ aliases: {
3017
+ type: string;
3018
+ items: {
3019
+ type: string;
3020
+ };
3021
+ description: string;
3022
+ };
3023
+ tags: {
3024
+ type: string;
3025
+ items: {
3026
+ type: "object";
3027
+ properties: {
3028
+ tagRemId: {
3029
+ type: string;
3030
+ description: string;
3031
+ };
3032
+ name: {
3033
+ type: string;
3034
+ description: string;
3035
+ };
3036
+ };
3037
+ required: string[];
3038
+ additionalProperties: boolean;
3039
+ };
3040
+ description: string;
3041
+ };
3042
+ remType: {
3043
+ type: string;
3044
+ description: string;
3045
+ };
3046
+ cardDirection: {
3047
+ type: string;
3048
+ description: string;
3049
+ };
3050
+ children: {
3051
+ type: string;
3052
+ description: string;
3053
+ items: {
3054
+ type: string;
3055
+ };
3056
+ };
3057
+ };
3058
+ required: string[];
3059
+ };
3060
+ };
3061
+ contentProperties: {
3062
+ type: string;
3063
+ description: string;
3064
+ properties: {
3065
+ childrenRendered: {
3066
+ type: string;
3067
+ description: string;
3068
+ };
3069
+ childrenTotal: {
3070
+ type: string;
3071
+ description: string;
3072
+ };
3073
+ contentTruncated: {
3074
+ type: string;
3075
+ description: string;
3076
+ };
3077
+ };
3078
+ };
3079
+ };
3080
+ };
3081
+ };
3082
+ hasMore: {
3083
+ type: string;
3084
+ description: string;
3085
+ };
3086
+ nextCursor: {
3087
+ type: string;
3088
+ description: string;
3089
+ };
3090
+ truncated: {
3091
+ type: string;
3092
+ description: string;
3093
+ };
3094
+ truncationReason: {
3095
+ type: string;
3096
+ enum: string[];
3097
+ description: string;
3098
+ };
3099
+ };
3100
+ };
3101
+ }, {
3102
+ name: string;
3103
+ description: string;
3104
+ inputSchema: {
3105
+ type: "object";
3106
+ properties: {
3107
+ remId: {
3108
+ type: string;
3109
+ description: string;
3110
+ };
3111
+ depth: {
3112
+ type: string;
3113
+ description: string;
3114
+ };
3115
+ contentMode: {
3116
+ type: string;
3117
+ enum: string[];
3118
+ description: string;
3119
+ };
3120
+ view: {
3121
+ type: string;
3122
+ enum: string[];
3123
+ description: string;
3124
+ };
3125
+ ancestorDepth: {
3126
+ type: string;
3127
+ description: string;
3128
+ };
3129
+ childLimit: {
3130
+ type: string;
3131
+ description: string;
3132
+ };
3133
+ maxContentLength: {
3134
+ type: string;
3135
+ description: string;
3136
+ };
3137
+ };
3138
+ required: string[];
3139
+ };
3140
+ outputSchema: {
3141
+ type: "object";
3142
+ properties: {
3143
+ remId: {
3144
+ type: string;
3145
+ description: string;
3146
+ };
3147
+ title: {
3148
+ type: string;
3149
+ description: string;
3150
+ };
3151
+ headline: {
3152
+ type: string;
3153
+ description: string;
3154
+ };
3155
+ inlineRefs: {
3156
+ type: string;
3157
+ items: {
3158
+ type: "object";
3159
+ properties: {
3160
+ text: {
3161
+ type: string;
3162
+ description: string;
3163
+ };
3164
+ targetRemId: {
3165
+ type: string;
3166
+ description: string;
3167
+ };
3168
+ kind: {
3169
+ type: string;
3170
+ enum: string[];
3171
+ description: string;
3172
+ };
3173
+ };
3174
+ required: string[];
3175
+ additionalProperties: boolean;
3176
+ };
3177
+ description: string;
3178
+ };
3179
+ parentRemId: {
3180
+ type: string;
3181
+ description: string;
3182
+ };
3183
+ parentTitle: {
3184
+ type: string;
3185
+ description: string;
3186
+ };
3187
+ ancestors: {
3188
+ type: string;
3189
+ items: {
3190
+ type: "object";
3191
+ properties: {
3192
+ remId: {
3193
+ type: string;
3194
+ description: string;
3195
+ };
3196
+ title: {
3197
+ type: string;
3198
+ description: string;
3199
+ };
3200
+ remType: {
3201
+ type: string;
3202
+ description: string;
3203
+ };
3204
+ };
3205
+ required: string[];
3206
+ additionalProperties: boolean;
3207
+ };
3208
+ description: string;
3209
+ };
3210
+ ancestorsTruncated: {
3211
+ type: string;
3212
+ description: string;
3213
+ };
3214
+ aliases: {
3215
+ type: string;
3216
+ items: {
3217
+ type: string;
3218
+ };
3219
+ description: string;
3220
+ };
3221
+ tags: {
3222
+ type: string;
3223
+ items: {
3224
+ type: "object";
3225
+ properties: {
3226
+ tagRemId: {
3227
+ type: string;
3228
+ description: string;
3229
+ };
3230
+ name: {
3231
+ type: string;
3232
+ description: string;
3233
+ };
3234
+ };
3235
+ required: string[];
3236
+ additionalProperties: boolean;
3237
+ };
3238
+ description: string;
3239
+ };
3240
+ remType: {
3241
+ type: string;
3242
+ description: string;
3243
+ };
3244
+ cardDirection: {
3245
+ type: string;
3246
+ description: string;
3247
+ };
3248
+ content: {
3249
+ type: string;
3250
+ description: string;
3251
+ };
3252
+ contentStructured: {
3253
+ type: string;
3254
+ description: string;
3255
+ items: {
3256
+ type: string;
3257
+ properties: {
3258
+ remId: {
3259
+ type: string;
3260
+ description: string;
3261
+ };
3262
+ title: {
3263
+ type: string;
3264
+ description: string;
3265
+ };
3266
+ headline: {
3267
+ type: string;
3268
+ description: string;
3269
+ };
3270
+ inlineRefs: {
3271
+ type: string;
3272
+ items: {
3273
+ type: "object";
3274
+ properties: {
3275
+ text: {
3276
+ type: string;
3277
+ description: string;
3278
+ };
3279
+ targetRemId: {
3280
+ type: string;
3281
+ description: string;
3282
+ };
3283
+ kind: {
3284
+ type: string;
3285
+ enum: string[];
3286
+ description: string;
3287
+ };
3288
+ };
3289
+ required: string[];
3290
+ additionalProperties: boolean;
3291
+ };
3292
+ description: string;
3293
+ };
3294
+ aliases: {
3295
+ type: string;
3296
+ items: {
3297
+ type: string;
3298
+ };
3299
+ description: string;
3300
+ };
3301
+ tags: {
3302
+ type: string;
3303
+ items: {
3304
+ type: "object";
3305
+ properties: {
3306
+ tagRemId: {
3307
+ type: string;
3308
+ description: string;
3309
+ };
3310
+ name: {
3311
+ type: string;
3312
+ description: string;
3313
+ };
3314
+ };
3315
+ required: string[];
3316
+ additionalProperties: boolean;
3317
+ };
3318
+ description: string;
3319
+ };
3320
+ remType: {
3321
+ type: string;
3322
+ description: string;
3323
+ };
3324
+ cardDirection: {
3325
+ type: string;
3326
+ description: string;
3327
+ };
3328
+ children: {
3329
+ type: string;
3330
+ description: string;
3331
+ items: {
3332
+ type: string;
3333
+ };
3334
+ };
3335
+ };
3336
+ required: string[];
3337
+ };
3338
+ };
3339
+ contentProperties: {
3340
+ type: string;
3341
+ description: string;
3342
+ properties: {
3343
+ childrenRendered: {
3344
+ type: string;
3345
+ description: string;
3346
+ };
3347
+ childrenTotal: {
3348
+ type: string;
3349
+ description: string;
3350
+ };
3351
+ contentTruncated: {
3352
+ type: string;
3353
+ description: string;
3354
+ };
3355
+ };
3356
+ };
3357
+ };
3358
+ };
3359
+ }, {
3360
+ name: string;
3361
+ description: string;
3362
+ inputSchema: {
3363
+ type: "object";
3364
+ properties: {
3365
+ parentRemId: {
3366
+ type: string;
3367
+ description: string;
3368
+ };
3369
+ limit: {
3370
+ type: string;
3371
+ description: string;
3372
+ };
3373
+ cursor: {
3374
+ type: string;
3375
+ description: string;
3376
+ };
3377
+ view: {
3378
+ type: string;
3379
+ enum: string[];
3380
+ description: string;
3381
+ };
3382
+ ancestorDepth: {
3383
+ type: string;
3384
+ description: string;
3385
+ };
3386
+ };
3387
+ required: string[];
3388
+ };
3389
+ outputSchema: {
3390
+ type: "object";
3391
+ properties: {
3392
+ children: {
3393
+ type: string;
3394
+ items: {
3395
+ type: string;
3396
+ properties: {
3397
+ remId: {
3398
+ type: string;
3399
+ description: string;
3400
+ };
3401
+ title: {
3402
+ type: string;
3403
+ description: string;
3404
+ };
3405
+ headline: {
3406
+ type: string;
3407
+ description: string;
3408
+ };
3409
+ inlineRefs: {
3410
+ type: string;
3411
+ items: {
3412
+ type: "object";
3413
+ properties: {
3414
+ text: {
3415
+ type: string;
3416
+ description: string;
3417
+ };
3418
+ targetRemId: {
3419
+ type: string;
3420
+ description: string;
3421
+ };
3422
+ kind: {
3423
+ type: string;
3424
+ enum: string[];
3425
+ description: string;
3426
+ };
3427
+ };
3428
+ required: string[];
3429
+ additionalProperties: boolean;
3430
+ };
3431
+ description: string;
3432
+ };
3433
+ parentRemId: {
3434
+ type: string;
3435
+ description: string;
3436
+ };
3437
+ parentTitle: {
3438
+ type: string;
3439
+ description: string;
3440
+ };
3441
+ ancestors: {
3442
+ type: string;
3443
+ items: {
3444
+ type: "object";
3445
+ properties: {
3446
+ remId: {
3447
+ type: string;
3448
+ description: string;
3449
+ };
3450
+ title: {
3451
+ type: string;
3452
+ description: string;
3453
+ };
3454
+ remType: {
3455
+ type: string;
3456
+ description: string;
3457
+ };
3458
+ };
3459
+ required: string[];
3460
+ additionalProperties: boolean;
3461
+ };
3462
+ description: string;
3463
+ };
3464
+ ancestorsTruncated: {
3465
+ type: string;
3466
+ description: string;
3467
+ };
3468
+ aliases: {
3469
+ type: string;
3470
+ items: {
3471
+ type: string;
3472
+ };
3473
+ description: string;
3474
+ };
3475
+ tags: {
3476
+ type: string;
3477
+ items: {
3478
+ type: "object";
3479
+ properties: {
3480
+ tagRemId: {
3481
+ type: string;
3482
+ description: string;
3483
+ };
3484
+ name: {
3485
+ type: string;
3486
+ description: string;
3487
+ };
3488
+ };
3489
+ required: string[];
3490
+ additionalProperties: boolean;
3491
+ };
3492
+ description: string;
3493
+ };
3494
+ remType: {
3495
+ type: string;
3496
+ description: string;
3497
+ };
3498
+ matchedRems: {
3499
+ type: string;
3500
+ items: {
3501
+ type: "object";
3502
+ properties: {
3503
+ remId: {
3504
+ type: string;
3505
+ description: string;
3506
+ };
3507
+ title: {
3508
+ type: string;
3509
+ description: string;
3510
+ };
3511
+ headline: {
3512
+ type: string;
3513
+ description: string;
3514
+ };
3515
+ inlineRefs: {
3516
+ type: string;
3517
+ items: {
3518
+ type: "object";
3519
+ properties: {
3520
+ text: {
3521
+ type: string;
3522
+ description: string;
3523
+ };
3524
+ targetRemId: {
3525
+ type: string;
3526
+ description: string;
3527
+ };
3528
+ kind: {
3529
+ type: string;
3530
+ enum: string[];
3531
+ description: string;
3532
+ };
3533
+ };
3534
+ required: string[];
3535
+ additionalProperties: boolean;
3536
+ };
3537
+ description: string;
3538
+ };
3539
+ remType: {
3540
+ type: string;
3541
+ description: string;
3542
+ };
3543
+ parentRemId: {
3544
+ type: string;
3545
+ description: string;
3546
+ };
3547
+ parentTitle: {
3548
+ type: string;
3549
+ description: string;
3550
+ };
3551
+ ancestors: {
3552
+ type: string;
3553
+ items: {
3554
+ type: "object";
3555
+ properties: {
3556
+ remId: {
3557
+ type: string;
3558
+ description: string;
3559
+ };
3560
+ title: {
3561
+ type: string;
3562
+ description: string;
3563
+ };
3564
+ remType: {
3565
+ type: string;
3566
+ description: string;
3567
+ };
3568
+ };
3569
+ required: string[];
3570
+ additionalProperties: boolean;
3571
+ };
3572
+ description: string;
3573
+ };
3574
+ ancestorsTruncated: {
3575
+ type: string;
3576
+ description: string;
3577
+ };
3578
+ tags: {
3579
+ type: string;
3580
+ items: {
3581
+ type: "object";
3582
+ properties: {
3583
+ tagRemId: {
3584
+ type: string;
3585
+ description: string;
3586
+ };
3587
+ name: {
3588
+ type: string;
3589
+ description: string;
3590
+ };
3591
+ };
3592
+ required: string[];
3593
+ additionalProperties: boolean;
3594
+ };
3595
+ description: string;
3596
+ };
3597
+ };
3598
+ required: string[];
3599
+ additionalProperties: boolean;
3600
+ };
3601
+ description: string;
3602
+ };
3603
+ contextRemId: {
3604
+ type: string;
3605
+ description: string;
3606
+ };
3607
+ contextTitle: {
3608
+ type: string;
3609
+ description: string;
3610
+ };
3611
+ contextReason: {
3612
+ type: string;
3613
+ enum: string[];
3614
+ description: string;
3615
+ };
3616
+ cardDirection: {
3617
+ type: string;
3618
+ description: string;
3619
+ };
3620
+ content: {
3621
+ type: string;
3622
+ description: string;
3623
+ };
3624
+ contentStructured: {
3625
+ type: string;
3626
+ description: string;
3627
+ items: {
3628
+ type: string;
3629
+ properties: {
3630
+ remId: {
3631
+ type: string;
3632
+ description: string;
3633
+ };
3634
+ title: {
3635
+ type: string;
3636
+ description: string;
3637
+ };
3638
+ headline: {
3639
+ type: string;
3640
+ description: string;
3641
+ };
3642
+ inlineRefs: {
3643
+ type: string;
3644
+ items: {
3645
+ type: "object";
3646
+ properties: {
3647
+ text: {
3648
+ type: string;
3649
+ description: string;
3650
+ };
3651
+ targetRemId: {
3652
+ type: string;
3653
+ description: string;
3654
+ };
3655
+ kind: {
3656
+ type: string;
3657
+ enum: string[];
3658
+ description: string;
3659
+ };
3660
+ };
3661
+ required: string[];
3662
+ additionalProperties: boolean;
3663
+ };
3664
+ description: string;
3665
+ };
3666
+ aliases: {
3667
+ type: string;
3668
+ items: {
3669
+ type: string;
3670
+ };
3671
+ description: string;
3672
+ };
3673
+ tags: {
3674
+ type: string;
3675
+ items: {
3676
+ type: "object";
3677
+ properties: {
3678
+ tagRemId: {
3679
+ type: string;
3680
+ description: string;
3681
+ };
3682
+ name: {
3683
+ type: string;
3684
+ description: string;
3685
+ };
3686
+ };
3687
+ required: string[];
3688
+ additionalProperties: boolean;
3689
+ };
3690
+ description: string;
3691
+ };
3692
+ remType: {
3693
+ type: string;
3694
+ description: string;
3695
+ };
3696
+ cardDirection: {
3697
+ type: string;
3698
+ description: string;
3699
+ };
3700
+ children: {
3701
+ type: string;
3702
+ description: string;
3703
+ items: {
3704
+ type: string;
3705
+ };
3706
+ };
3707
+ };
3708
+ required: string[];
3709
+ };
3710
+ };
3711
+ contentProperties: {
3712
+ type: string;
3713
+ description: string;
3714
+ properties: {
3715
+ childrenRendered: {
3716
+ type: string;
3717
+ description: string;
3718
+ };
3719
+ childrenTotal: {
3720
+ type: string;
3721
+ description: string;
3722
+ };
3723
+ contentTruncated: {
3724
+ type: string;
3725
+ description: string;
3726
+ };
3727
+ };
3728
+ };
3729
+ };
3730
+ };
3731
+ };
3732
+ hasMore: {
3733
+ type: string;
3734
+ description: string;
3735
+ };
3736
+ nextCursor: {
3737
+ type: string;
3738
+ description: string;
3739
+ };
3740
+ totalChildren: {
3741
+ type: string;
3742
+ description: string;
3743
+ };
3744
+ };
3745
+ };
3746
+ }, {
3747
+ name: string;
3748
+ description: string;
3749
+ inputSchema: {
3750
+ type: "object";
3751
+ properties: {
3752
+ remId: {
3753
+ type: string;
3754
+ description: string;
3755
+ };
3756
+ title: {
3757
+ type: string;
3758
+ description: string;
3759
+ };
3760
+ };
3761
+ required: string[];
3762
+ additionalProperties: boolean;
3763
+ };
3764
+ outputSchema: {
3765
+ type: "object";
3766
+ properties: {
3767
+ remIds: {
3768
+ type: string;
3769
+ items: {
3770
+ type: string;
3771
+ };
3772
+ description: string;
3773
+ };
3774
+ titles: {
3775
+ type: string;
3776
+ items: {
3777
+ type: string;
3778
+ };
3779
+ description: string;
3780
+ };
3781
+ };
3782
+ required: string[];
3783
+ };
3784
+ }, {
3785
+ name: string;
3786
+ description: string;
3787
+ inputSchema: {
3788
+ type: "object";
3789
+ properties: {
3790
+ remId: {
3791
+ type: string;
3792
+ description: string;
3793
+ };
3794
+ isDocument: {
3795
+ type: string;
3796
+ description: string;
3797
+ };
3798
+ dryRun: {
3799
+ type: string;
3800
+ description: string;
3801
+ };
3802
+ expectedOldRemType: {
3803
+ type: string;
3804
+ enum: string[];
3805
+ description: string;
3806
+ };
3807
+ };
3808
+ required: string[];
3809
+ additionalProperties: boolean;
3810
+ };
3811
+ outputSchema: {
3812
+ type: "object";
3813
+ properties: {
3814
+ remId: {
3815
+ type: string;
3816
+ description: string;
3817
+ };
3818
+ title: {
3819
+ type: string;
3820
+ description: string;
3821
+ };
3822
+ oldRemType: {
3823
+ type: string;
3824
+ description: string;
3825
+ };
3826
+ newRemType: {
3827
+ type: string;
3828
+ description: string;
3829
+ };
3830
+ oldIsDocument: {
3831
+ type: string;
3832
+ description: string;
3833
+ };
3834
+ newIsDocument: {
3835
+ type: string;
3836
+ description: string;
3837
+ };
3838
+ requestedIsDocument: {
3839
+ type: string;
3840
+ description: string;
3841
+ };
3842
+ dryRun: {
3843
+ type: string;
3844
+ description: string;
3845
+ };
3846
+ changed: {
3847
+ type: string;
3848
+ description: string;
3849
+ };
3850
+ wouldChange: {
3851
+ type: string;
3852
+ description: string;
3853
+ };
3854
+ sdkSupportsDocumentStatus: {
3855
+ type: string;
3856
+ description: string;
3857
+ };
3858
+ warnings: {
3859
+ type: string;
3860
+ items: {
3861
+ type: string;
3862
+ };
3863
+ description: string;
3864
+ };
3865
+ cardDirectionBefore: {
3866
+ type: string;
3867
+ description: string;
3868
+ };
3869
+ cardDirectionAfter: {
3870
+ type: string;
3871
+ description: string;
3872
+ };
3873
+ };
3874
+ required: string[];
3875
+ };
3876
+ }, {
3877
+ name: string;
3878
+ description: string;
3879
+ inputSchema: {
3880
+ type: "object";
3881
+ properties: {
3882
+ remId: {
3883
+ type: string;
3884
+ description: string;
3885
+ };
3886
+ newParentRemId: {
3887
+ type: string;
3888
+ description: string;
3889
+ };
3890
+ position: {
3891
+ type: string;
3892
+ enum: string[];
3893
+ description: string;
3894
+ };
3895
+ siblingRemId: {
3896
+ type: string;
3897
+ description: string;
3898
+ };
3899
+ dryRun: {
3900
+ type: string;
3901
+ description: string;
3902
+ };
3903
+ expectedOldParentRemId: {
3904
+ type: string;
3905
+ description: string;
3906
+ };
3907
+ ancestorDepth: {
3908
+ type: string;
3909
+ description: string;
3910
+ };
3911
+ };
3912
+ required: string[];
3913
+ };
3914
+ outputSchema: {
3915
+ type: "object";
3916
+ properties: {
3917
+ remId: {
3918
+ type: string;
3919
+ };
3920
+ title: {
3921
+ type: string;
3922
+ };
3923
+ dryRun: {
3924
+ type: string;
3925
+ };
3926
+ oldParentRemId: {
3927
+ type: string;
3928
+ };
3929
+ oldParentTitle: {
3930
+ type: string;
3931
+ };
3932
+ newParentRemId: {
3933
+ type: string;
3934
+ };
3935
+ newParentTitle: {
3936
+ type: string;
3937
+ };
3938
+ position: {
3939
+ type: string;
3940
+ enum: string[];
3941
+ };
3942
+ siblingRemId: {
3943
+ type: string;
3944
+ };
3945
+ ancestorsBefore: {
3946
+ type: string;
3947
+ items: {
3948
+ type: "object";
3949
+ properties: {
3950
+ remId: {
3951
+ type: string;
3952
+ description: string;
3953
+ };
3954
+ title: {
3955
+ type: string;
3956
+ description: string;
3957
+ };
3958
+ remType: {
3959
+ type: string;
3960
+ description: string;
3961
+ };
3962
+ };
3963
+ required: string[];
3964
+ additionalProperties: boolean;
3965
+ };
3966
+ };
3967
+ ancestorsBeforeTruncated: {
3968
+ type: string;
3969
+ };
3970
+ ancestorsAfter: {
3971
+ type: string;
3972
+ items: {
3973
+ type: "object";
3974
+ properties: {
3975
+ remId: {
3976
+ type: string;
3977
+ description: string;
3978
+ };
3979
+ title: {
3980
+ type: string;
3981
+ description: string;
3982
+ };
3983
+ remType: {
3984
+ type: string;
3985
+ description: string;
3986
+ };
3987
+ };
3988
+ required: string[];
3989
+ additionalProperties: boolean;
3990
+ };
3991
+ };
3992
+ ancestorsAfterTruncated: {
3993
+ type: string;
3994
+ };
3995
+ };
3996
+ required: string[];
3997
+ };
3998
+ }, {
3999
+ name: string;
4000
+ description: string;
4001
+ inputSchema: {
4002
+ type: "object";
4003
+ properties: {
4004
+ parentRemId: {
4005
+ type: string;
4006
+ description: string;
4007
+ };
4008
+ content: {
4009
+ type: string;
4010
+ description: string;
4011
+ };
4012
+ position: {
4013
+ type: string;
4014
+ enum: string[];
4015
+ description: string;
4016
+ };
4017
+ siblingRemId: {
4018
+ type: string;
4019
+ description: string;
4020
+ };
4021
+ };
4022
+ required: string[];
4023
+ additionalProperties: boolean;
4024
+ };
4025
+ outputSchema: {
4026
+ type: "object";
4027
+ properties: {
4028
+ remIds: {
4029
+ type: string;
4030
+ items: {
4031
+ type: string;
4032
+ };
4033
+ description: string;
4034
+ };
4035
+ titles: {
4036
+ type: string;
4037
+ items: {
4038
+ type: string;
527
4039
  };
4040
+ description: string;
528
4041
  };
529
4042
  };
4043
+ required: string[];
530
4044
  };
531
- };
532
- export declare const UPDATE_NOTE_TOOL: {
4045
+ }, {
533
4046
  name: string;
534
4047
  description: string;
535
4048
  inputSchema: {
536
4049
  type: "object";
537
4050
  properties: {
538
- remId: {
4051
+ parentRemId: {
539
4052
  type: string;
540
4053
  description: string;
541
4054
  };
542
- title: {
4055
+ content: {
4056
+ type: string;
4057
+ description: string;
4058
+ };
4059
+ };
4060
+ required: string[];
4061
+ additionalProperties: boolean;
4062
+ };
4063
+ outputSchema: {
4064
+ type: "object";
4065
+ properties: {
4066
+ remIds: {
543
4067
  type: string;
4068
+ items: {
4069
+ type: string;
4070
+ };
544
4071
  description: string;
545
4072
  };
546
- appendContent: {
4073
+ titles: {
547
4074
  type: string;
4075
+ items: {
4076
+ type: string;
4077
+ };
548
4078
  description: string;
549
4079
  };
550
- replaceContent: {
4080
+ };
4081
+ required: string[];
4082
+ };
4083
+ }, {
4084
+ name: string;
4085
+ description: string;
4086
+ inputSchema: {
4087
+ type: "object";
4088
+ properties: {
4089
+ remId: {
551
4090
  type: string;
552
4091
  description: string;
553
4092
  };
554
- addTags: {
4093
+ addTagRemIds: {
555
4094
  type: string;
556
4095
  items: {
557
4096
  type: string;
558
4097
  };
4098
+ minItems: number;
559
4099
  description: string;
560
4100
  };
561
- removeTags: {
4101
+ removeTagRemIds: {
562
4102
  type: string;
563
4103
  items: {
564
4104
  type: string;
565
4105
  };
4106
+ minItems: number;
566
4107
  description: string;
567
4108
  };
568
4109
  };
569
4110
  required: string[];
4111
+ additionalProperties: boolean;
570
4112
  };
571
4113
  outputSchema: {
572
4114
  type: "object";
@@ -588,8 +4130,7 @@ export declare const UPDATE_NOTE_TOOL: {
588
4130
  };
589
4131
  required: string[];
590
4132
  };
591
- };
592
- export declare const APPEND_JOURNAL_TOOL: {
4133
+ }, {
593
4134
  name: string;
594
4135
  description: string;
595
4136
  inputSchema: {
@@ -603,8 +4144,16 @@ export declare const APPEND_JOURNAL_TOOL: {
603
4144
  type: string;
604
4145
  description: string;
605
4146
  };
4147
+ tagRemIds: {
4148
+ type: string;
4149
+ items: {
4150
+ type: string;
4151
+ };
4152
+ description: string;
4153
+ };
606
4154
  };
607
4155
  required: string[];
4156
+ additionalProperties: boolean;
608
4157
  };
609
4158
  outputSchema: {
610
4159
  type: "object";
@@ -626,8 +4175,106 @@ export declare const APPEND_JOURNAL_TOOL: {
626
4175
  };
627
4176
  required: string[];
628
4177
  };
629
- };
630
- export declare const STATUS_TOOL: {
4178
+ }, {
4179
+ name: string;
4180
+ description: string;
4181
+ inputSchema: {
4182
+ type: "object";
4183
+ properties: {};
4184
+ };
4185
+ outputSchema: {
4186
+ type: "object";
4187
+ properties: {
4188
+ playbookVersion: {
4189
+ type: string;
4190
+ };
4191
+ summary: {
4192
+ type: string;
4193
+ };
4194
+ recommendedStatusCheck: {
4195
+ type: string;
4196
+ properties: {
4197
+ tool: {
4198
+ type: string;
4199
+ };
4200
+ cadence: {
4201
+ type: string;
4202
+ };
4203
+ rationale: {
4204
+ type: string;
4205
+ };
4206
+ };
4207
+ };
4208
+ decisionTree: {
4209
+ type: string;
4210
+ items: {
4211
+ type: string;
4212
+ };
4213
+ };
4214
+ navigationPresets: {
4215
+ type: string;
4216
+ properties: {
4217
+ orientation: {
4218
+ type: string;
4219
+ properties: {
4220
+ contentMode: {
4221
+ type: string;
4222
+ };
4223
+ view: {
4224
+ type: string;
4225
+ };
4226
+ depth: {
4227
+ type: string;
4228
+ };
4229
+ childLimit: {
4230
+ type: string;
4231
+ };
4232
+ };
4233
+ };
4234
+ };
4235
+ };
4236
+ contentModes: {
4237
+ type: string;
4238
+ properties: {
4239
+ structured: {
4240
+ type: string;
4241
+ };
4242
+ markdown: {
4243
+ type: string;
4244
+ };
4245
+ none: {
4246
+ type: string;
4247
+ };
4248
+ };
4249
+ };
4250
+ writePolicy: {
4251
+ type: string;
4252
+ properties: {
4253
+ statusTool: {
4254
+ type: string;
4255
+ };
4256
+ requiredFields: {
4257
+ type: string;
4258
+ items: {
4259
+ type: string;
4260
+ };
4261
+ };
4262
+ guidance: {
4263
+ type: string;
4264
+ items: {
4265
+ type: string;
4266
+ };
4267
+ };
4268
+ };
4269
+ };
4270
+ currentStatus: {
4271
+ type: string;
4272
+ description: string;
4273
+ };
4274
+ };
4275
+ required: string[];
4276
+ };
4277
+ }, {
631
4278
  name: string;
632
4279
  description: string;
633
4280
  inputSchema: {
@@ -668,8 +4315,7 @@ export declare const STATUS_TOOL: {
668
4315
  };
669
4316
  required: string[];
670
4317
  };
671
- };
672
- export declare const READ_TABLE_TOOL: {
4318
+ }, {
673
4319
  name: string;
674
4320
  description: string;
675
4321
  inputSchema: {
@@ -770,102 +4416,5 @@ export declare const READ_TABLE_TOOL: {
770
4416
  };
771
4417
  required: string[];
772
4418
  };
773
- };
774
- export declare const PLAYBOOK_TOOL: {
775
- name: string;
776
- description: string;
777
- inputSchema: {
778
- type: "object";
779
- properties: {};
780
- };
781
- outputSchema: {
782
- type: "object";
783
- properties: {
784
- playbookVersion: {
785
- type: string;
786
- };
787
- summary: {
788
- type: string;
789
- };
790
- recommendedStatusCheck: {
791
- type: string;
792
- properties: {
793
- tool: {
794
- type: string;
795
- };
796
- cadence: {
797
- type: string;
798
- };
799
- rationale: {
800
- type: string;
801
- };
802
- };
803
- };
804
- decisionTree: {
805
- type: string;
806
- items: {
807
- type: string;
808
- };
809
- };
810
- navigationPresets: {
811
- type: string;
812
- properties: {
813
- orientation: {
814
- type: string;
815
- properties: {
816
- includeContent: {
817
- type: string;
818
- };
819
- depth: {
820
- type: string;
821
- };
822
- childLimit: {
823
- type: string;
824
- };
825
- };
826
- };
827
- };
828
- };
829
- contentModes: {
830
- type: string;
831
- properties: {
832
- structured: {
833
- type: string;
834
- };
835
- markdown: {
836
- type: string;
837
- };
838
- none: {
839
- type: string;
840
- };
841
- };
842
- };
843
- writePolicy: {
844
- type: string;
845
- properties: {
846
- statusTool: {
847
- type: string;
848
- };
849
- requiredFields: {
850
- type: string;
851
- items: {
852
- type: string;
853
- };
854
- };
855
- guidance: {
856
- type: string;
857
- items: {
858
- type: string;
859
- };
860
- };
861
- };
862
- };
863
- currentStatus: {
864
- type: string;
865
- description: string;
866
- };
867
- };
868
- required: string[];
869
- };
870
- };
4419
+ }];
871
4420
  export declare function registerAllTools(server: Server, wsServer: WebSocketServer, logger: Logger): void;