-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtool-schemas.json
More file actions
2761 lines (2761 loc) · 108 KB
/
tool-schemas.json
File metadata and controls
2761 lines (2761 loc) · 108 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"generatedAt": "2026-04-21T11:13:20.013Z",
"toolCount": 60,
"agentCount": 11,
"agents": {
"canvasManager": 4,
"composer": 2,
"contentManager": 5,
"elevenlabs": 4,
"ingestManager": 2,
"memoryManager": 9,
"promptManager": 9,
"searchManager": 3,
"storageManager": 6,
"taskManager": 11,
"webTools": 5
},
"tools": [
{
"agent": "canvasManager",
"tool": "list",
"description": "List canvas files in the vault with node/edge counts",
"command": "canvas list",
"usage": "canvas list [--folder <folder>] [--recursive]",
"arguments": [
{
"name": "folder",
"flag": "--folder",
"type": "string",
"required": false,
"positional": false,
"description": "[OPTIONAL] Folder to search (default: vault root). Example: \"projects/diagrams\" (string)"
},
{
"name": "recursive",
"flag": "--recursive",
"type": "boolean",
"required": false,
"positional": false,
"description": "[OPTIONAL] Search subfolders (default: true) (boolean)"
}
],
"examples": [
"canvas list --folder \"folder-value\""
]
},
{
"agent": "canvasManager",
"tool": "read",
"description": "Read the structure of a canvas file (nodes and edges)",
"command": "canvas read",
"usage": "canvas read <path>",
"arguments": [
{
"name": "path",
"flag": "--path",
"type": "string",
"required": true,
"positional": true,
"description": "[REQUIRED] Path to the canvas file (with or without .canvas extension) (string)"
}
],
"examples": [
"canvas read \"path-value\""
]
},
{
"agent": "canvasManager",
"tool": "update",
"description": "Modify an EXISTING canvas file. Replaces nodes and/or edges arrays. Fails if canvas does not exist - use canvasManager.write to create new canvases.",
"command": "canvas update",
"usage": "canvas update <path> [--nodes <nodes>] [--edges <edges>]",
"arguments": [
{
"name": "path",
"flag": "--path",
"type": "string",
"required": true,
"positional": true,
"description": "[REQUIRED] Path to the existing canvas file (with or without .canvas extension) (string)"
},
{
"name": "nodes",
"flag": "--nodes",
"type": "array<object>",
"required": false,
"positional": false,
"description": "[OPTIONAL] Full nodes array (replaces existing nodes). Omit to keep existing nodes. (Array of an object)"
},
{
"name": "edges",
"flag": "--edges",
"type": "array<object>",
"required": false,
"positional": false,
"description": "[OPTIONAL] Full edges array (replaces existing edges). Omit to keep existing edges. (Array of an object)"
}
],
"examples": [
"canvas update \"path-value\" --nodes \"value-1,value-2\" --edges \"value-1,value-2\""
]
},
{
"agent": "canvasManager",
"tool": "write",
"description": "Create a NEW canvas file. Fails if canvas already exists - use canvasManager.update to modify existing canvases.",
"command": "canvas write",
"usage": "canvas write <path> [--nodes <nodes>] [--edges <edges>]",
"arguments": [
{
"name": "path",
"flag": "--path",
"type": "string",
"required": true,
"positional": true,
"description": "[REQUIRED] Path for the new canvas file (with or without .canvas extension) (string)"
},
{
"name": "nodes",
"flag": "--nodes",
"type": "array<object>",
"required": false,
"positional": false,
"description": "[OPTIONAL] Initial nodes. Each node needs: type (text/file/link/group), x, y, width, height. IDs auto-generated if missing. (Array of an object)"
},
{
"name": "edges",
"flag": "--edges",
"type": "array<object>",
"required": false,
"positional": false,
"description": "[OPTIONAL] Initial edges connecting nodes (Array of an object)"
}
],
"examples": [
"canvas write \"path-value\" --nodes \"value-1,value-2\" --edges \"value-1,value-2\""
]
},
{
"agent": "composer",
"tool": "compose",
"description": "Merge multiple vault files of the same type into a single output. Supports markdown (.md), PDF (.pdf), and audio (.mp3, .wav, .ogg, .webm). Audio supports concat (sequential) and mix (layered tracks with volume/fade) modes. Note: WebM audio encoding runs at real-time speed (encoding time equals audio duration).",
"command": "composer compose",
"usage": "composer compose [--files <files>] <format> <outputPath> [--separator <separator>] [--include-headers] [--header-level <headerLevel>] [--frontmatter-handling <frontmatterHandling>] [--max-file-size-mb <maxFileSizeMb>] [--max-total-size-mb <maxTotalSizeMb>] [--audio-mode <audioMode>] [--tracks <tracks>] [--output-format <outputFormat>] [--duration <duration>] [--overwrite]",
"arguments": [
{
"name": "files",
"flag": "--files",
"type": "array<string>",
"required": false,
"positional": false,
"description": "[OPTIONAL] Vault-relative paths of files to compose. All files must be the same type. Required for concat mode (default). (Array of a string)"
},
{
"name": "format",
"flag": "--format",
"type": "string",
"required": true,
"positional": true,
"description": "[REQUIRED] Output format. Determines which composer handles the operation. (One of: [\"markdown\", \"pdf\", \"audio\"])"
},
{
"name": "outputPath",
"flag": "--output-path",
"type": "string",
"required": true,
"positional": true,
"description": "[REQUIRED] Vault-relative path for the output file. Parent directories are created automatically. (string)"
},
{
"name": "separator",
"flag": "--separator",
"type": "string",
"required": false,
"positional": false,
"description": "[OPTIONAL] Markdown only: separator between file sections. Default: \"\\n---\\n\" (string)"
},
{
"name": "includeHeaders",
"flag": "--include-headers",
"type": "boolean",
"required": false,
"positional": false,
"description": "[OPTIONAL] Markdown only: prepend each file's name as a heading. Default: false (boolean)"
},
{
"name": "headerLevel",
"flag": "--header-level",
"type": "number",
"required": false,
"positional": false,
"description": "[OPTIONAL] Markdown only: heading level for file headers. Default: 2 (One of: [1, 2, 3, 4, 5, 6])"
},
{
"name": "frontmatterHandling",
"flag": "--frontmatter-handling",
"type": "string",
"required": false,
"positional": false,
"description": "[OPTIONAL] Markdown only: how to handle YAML frontmatter. \"first\" keeps only the first file's frontmatter. \"merge\" shallow-merges all. \"strip\" removes all. Default: \"first\" (One of: [\"first\", \"merge\", \"strip\"])"
},
{
"name": "maxFileSizeMb",
"flag": "--max-file-size-mb",
"type": "number",
"required": false,
"positional": false,
"description": "[OPTIONAL] Per-file size limit in MB. Default: 50 (number)"
},
{
"name": "maxTotalSizeMb",
"flag": "--max-total-size-mb",
"type": "number",
"required": false,
"positional": false,
"description": "[OPTIONAL] Aggregate size limit for all input files in MB. Default: 200 (number)"
},
{
"name": "audioMode",
"flag": "--audio-mode",
"type": "string",
"required": false,
"positional": false,
"description": "[OPTIONAL] Audio only: \"concat\" joins files sequentially. \"mix\" layers tracks with individual volume/offset/fade. Default: \"concat\" (One of: [\"concat\", \"mix\"])"
},
{
"name": "tracks",
"flag": "--tracks",
"type": "array<object>",
"required": false,
"positional": false,
"description": "[OPTIONAL] Audio mix mode only: track definitions with per-track volume, offset, and fade controls. (Array of an object)"
},
{
"name": "outputFormat",
"flag": "--output-format",
"type": "string",
"required": false,
"positional": false,
"description": "[OPTIONAL] Audio only: output encoding format. Default: \"wav\" (One of: [\"wav\", \"mp3\", \"webm\"])"
},
{
"name": "duration",
"flag": "--duration",
"type": "number",
"required": false,
"positional": false,
"description": "[OPTIONAL] Audio only: total output duration in seconds. Trims if shorter than composed audio. Default: full duration. (number)"
},
{
"name": "overwrite",
"flag": "--overwrite",
"type": "boolean",
"required": false,
"positional": false,
"description": "[OPTIONAL] If true, overwrite existing file at outputPath. Default: false (boolean)"
}
],
"examples": [
"composer compose --files \"value-1,value-2\" \"format-value\" \"outputPath-value\" --separator \"separator-value\" --header-level 1 --frontmatter-handling \"frontmatterHandling-value\" --max-file-size-mb 1 --max-total-size-mb 1 --audio-mode \"audioMode-value\" --tracks \"value-1,value-2\" --output-format \"outputFormat-value\" --duration 1"
]
},
{
"agent": "composer",
"tool": "listFormats",
"description": "List supported composition formats, their file extensions, and platform availability.",
"command": "composer list-formats",
"usage": "composer list-formats",
"arguments": [],
"examples": [
"composer list-formats"
]
},
{
"agent": "contentManager",
"tool": "insert",
"description": "Insert new content into a note at a specific position. Does not modify existing content — use replace for that.",
"command": "content insert",
"usage": "content insert --path <path> --content <content> --start-line <startLine>",
"arguments": [
{
"name": "path",
"flag": "--path",
"type": "string",
"required": true,
"positional": false,
"description": "[REQUIRED] Path to the note to modify (e.g. \"folder/note.md\"). Do not include a leading slash. (string)"
},
{
"name": "content",
"flag": "--content",
"type": "string",
"required": true,
"positional": false,
"description": "[REQUIRED] The text to insert into the note. For multi-line content, use newline characters (\\n). This content is added without modifying any existing text. (string)"
},
{
"name": "startLine",
"flag": "--start-line",
"type": "number",
"required": true,
"positional": false,
"description": "[REQUIRED] Where to insert the content (1-indexed). Use -1 to append to the end of the note. Use 1 to prepend at the beginning. Any other number inserts before that line, pushing existing content down. (number)"
}
],
"examples": [
"content insert --path \"path-value\" --content \"content-value\" --start-line 1"
]
},
{
"agent": "contentManager",
"tool": "read",
"description": "Read content from a file with line range",
"command": "content read",
"usage": "content read <path> <startLine> [--end-line <endLine>]",
"arguments": [
{
"name": "path",
"flag": "--path",
"type": "string",
"required": true,
"positional": true,
"description": "[REQUIRED] Path to the file to read (string)"
},
{
"name": "startLine",
"flag": "--start-line",
"type": "number",
"required": true,
"positional": true,
"description": "[REQUIRED] Start line (1-based), REQUIRED - forces intentional positioning. Use 1 to read from beginning. (number)"
},
{
"name": "endLine",
"flag": "--end-line",
"type": "number",
"required": false,
"positional": false,
"description": "[OPTIONAL] End line (1-based, inclusive). If omitted, reads to end of file. (number)"
}
],
"examples": [
"content read \"path-value\" 1 --end-line 1"
]
},
{
"agent": "contentManager",
"tool": "replace",
"description": "Replace or delete existing content in a note. Validates that the content at the specified lines matches before making changes. If the content has moved, returns the new line numbers.",
"command": "content replace",
"usage": "content replace --path <path> --old-content <oldContent> --new-content <newContent> --start-line <startLine> --end-line <endLine>",
"arguments": [
{
"name": "path",
"flag": "--path",
"type": "string",
"required": true,
"positional": false,
"description": "[REQUIRED] Path to the note to modify (e.g. \"folder/note.md\"). Do not include a leading slash. (string)"
},
{
"name": "oldContent",
"flag": "--old-content",
"type": "string",
"required": true,
"positional": false,
"description": "[REQUIRED] The exact text currently at lines startLine through endLine that you want to replace. This is validated before any changes are made — if the content at those lines doesn't match, the tool will search the entire note to find where your content actually is and tell you the correct line numbers. To delete content, set newContent to an empty string. (string)"
},
{
"name": "newContent",
"flag": "--new-content",
"type": "string",
"required": true,
"positional": false,
"description": "[REQUIRED] The text to replace oldContent with. Set to an empty string to delete the content at the specified lines. (string)"
},
{
"name": "startLine",
"flag": "--start-line",
"type": "number",
"required": true,
"positional": false,
"description": "[REQUIRED] The line number (1-indexed) where oldContent begins. Required — ensures the correct occurrence is targeted when identical content appears multiple times in a note. (number)"
},
{
"name": "endLine",
"flag": "--end-line",
"type": "number",
"required": true,
"positional": false,
"description": "[REQUIRED] The line number (1-indexed) where oldContent ends (inclusive). Required — defines the exact range to validate and replace. (number)"
}
],
"examples": [
"content replace --path \"path-value\" --old-content \"oldContent-value\" --new-content \"newContent-value\" --start-line 1 --end-line 1"
]
},
{
"agent": "contentManager",
"tool": "setProperty",
"description": "Set a frontmatter property on a note. Supports \"replace\" (default) and \"merge\" (array union with dedup) modes.",
"command": "content set-property",
"usage": "content set-property <path> <property> <value> [--mode <mode>]",
"arguments": [
{
"name": "path",
"flag": "--path",
"type": "string",
"required": true,
"positional": true,
"description": "[REQUIRED] Path to the note file (string)"
},
{
"name": "property",
"flag": "--property",
"type": "string",
"required": true,
"positional": true,
"description": "[REQUIRED] Frontmatter property name (e.g. \"tags\", \"aliases\", \"status\") (string)"
},
{
"name": "value",
"flag": "--value",
"type": "unknown",
"required": true,
"positional": true,
"description": "[REQUIRED] Value to set. Can be a string, number, boolean, or array of strings."
},
{
"name": "mode",
"flag": "--mode",
"type": "string",
"required": false,
"positional": false,
"description": "[OPTIONAL] How to apply the value. 'replace' overwrites (default). 'merge' performs array union with dedup for list fields; equivalent to replace for scalars. (One of: [\"replace\", \"merge\"])"
}
],
"examples": [
"content set-property \"path-value\" \"property-value\" \"value-value\" --mode \"mode-value\""
]
},
{
"agent": "contentManager",
"tool": "write",
"description": "Create a new file or overwrite existing file",
"command": "content write",
"usage": "content write <path> <content> [--overwrite]",
"arguments": [
{
"name": "path",
"flag": "--path",
"type": "string",
"required": true,
"positional": true,
"description": "[REQUIRED] Path to the file to create or overwrite (string)"
},
{
"name": "content",
"flag": "--content",
"type": "string",
"required": true,
"positional": true,
"description": "[REQUIRED] Content to write to the file (string)"
},
{
"name": "overwrite",
"flag": "--overwrite",
"type": "boolean",
"required": false,
"positional": false,
"description": "[OPTIONAL] Overwrite if file exists (default: false) (boolean)"
}
],
"examples": [
"content write \"path-value\" \"content-value\""
]
},
{
"agent": "elevenlabs",
"tool": "generateMusic",
"description": "Generate music from a text prompt describing genre, mood, instruments, tempo, and lyrics. Saves audio to vault.",
"command": "elevenlabs generate-music",
"usage": "elevenlabs generate-music <prompt> [--music-length-ms <musicLengthMs>] [--output-path <outputPath>] [--output-format <outputFormat>] [--force-instrumental]",
"arguments": [
{
"name": "prompt",
"flag": "--prompt",
"type": "string",
"required": true,
"positional": true,
"description": "[REQUIRED] Text description of the music to generate. Can define genre, mood, instruments, vocals, tempo, structure, and lyrics (max 4100 chars). Do NOT reference copyrighted artists or lyrics. (string)"
},
{
"name": "musicLengthMs",
"flag": "--music-length-ms",
"type": "number",
"required": false,
"positional": false,
"description": "[OPTIONAL] Length of the song in milliseconds (3000-600000, i.e. 3s to 10min). If omitted, the model chooses based on the prompt. (number)"
},
{
"name": "outputPath",
"flag": "--output-path",
"type": "string",
"required": false,
"positional": false,
"description": "[OPTIONAL] Output file path in vault (default: audio/music-{timestamp}.mp3) (string)"
},
{
"name": "outputFormat",
"flag": "--output-format",
"type": "string",
"required": false,
"positional": false,
"description": "[OPTIONAL] Audio format (default: mp3_44100_128). Options: mp3_22050_32, mp3_44100_64, mp3_44100_128, mp3_44100_192 (string)"
},
{
"name": "forceInstrumental",
"flag": "--force-instrumental",
"type": "boolean",
"required": false,
"positional": false,
"description": "[OPTIONAL] If true, guarantees instrumental output with no vocals (default: false) (boolean)"
}
],
"examples": [
"elevenlabs generate-music \"prompt-value\" --music-length-ms 1 --output-path \"outputPath-value\" --output-format \"outputFormat-value\""
]
},
{
"agent": "elevenlabs",
"tool": "listVoices",
"description": "List available ElevenLabs voices with their IDs, names, and categories.",
"command": "elevenlabs list-voices",
"usage": "elevenlabs list-voices [--category <category>]",
"arguments": [
{
"name": "category",
"flag": "--category",
"type": "string",
"required": false,
"positional": false,
"description": "[OPTIONAL] Filter by category: premade, cloned, generated, professional (One of: [\"premade\", \"cloned\", \"generated\", \"professional\"])"
}
],
"examples": [
"elevenlabs list-voices --category \"category-value\""
]
},
{
"agent": "elevenlabs",
"tool": "soundEffects",
"description": "Generate cinematic sound effects from text descriptions (e.g., \"thunder rolling across a mountain valley\").",
"command": "elevenlabs sound-effects",
"usage": "elevenlabs sound-effects <prompt> [--duration-seconds <durationSeconds>] [--prompt-influence <promptInfluence>] [--output-path <outputPath>]",
"arguments": [
{
"name": "prompt",
"flag": "--prompt",
"type": "string",
"required": true,
"positional": true,
"description": "[REQUIRED] Text description of the sound effect to generate (e.g., \"ocean waves crashing on rocks\") (string)"
},
{
"name": "durationSeconds",
"flag": "--duration-seconds",
"type": "number",
"required": false,
"positional": false,
"description": "[OPTIONAL] Duration in seconds (0.5-30). If omitted, optimal duration is guessed from prompt. (number)"
},
{
"name": "promptInfluence",
"flag": "--prompt-influence",
"type": "number",
"required": false,
"positional": false,
"description": "[OPTIONAL] How closely to follow the text prompt (0.0-1.0) (number)"
},
{
"name": "outputPath",
"flag": "--output-path",
"type": "string",
"required": false,
"positional": false,
"description": "[OPTIONAL] Output file path in vault (default: audio/sfx-{timestamp}.mp3) (string)"
}
],
"examples": [
"elevenlabs sound-effects \"prompt-value\" --duration-seconds 1 --prompt-influence 1 --output-path \"outputPath-value\""
]
},
{
"agent": "elevenlabs",
"tool": "textToSpeech",
"description": "Convert text to speech audio using ElevenLabs voices. Saves MP3 to vault.",
"command": "elevenlabs text-to-speech",
"usage": "elevenlabs text-to-speech <prompt> [--voice-id <voiceId>] [--model-id <modelId>] [--output-path <outputPath>] [--stability <stability>] [--similarity-boost <similarityBoost>]",
"arguments": [
{
"name": "prompt",
"flag": "--prompt",
"type": "string",
"required": true,
"positional": true,
"description": "[REQUIRED] Text prompt to convert to speech. Supports dialogue tags like [fearful], [whispered], etc. (string)"
},
{
"name": "voiceId",
"flag": "--voice-id",
"type": "string",
"required": false,
"positional": false,
"description": "[OPTIONAL] ElevenLabs voice ID (use listVoices to find IDs). Defaults to Sarah. (string)"
},
{
"name": "modelId",
"flag": "--model-id",
"type": "string",
"required": false,
"positional": false,
"description": "[OPTIONAL] Model ID. Options: eleven_multilingual_v2 (default), eleven_turbo_v2 (faster), eleven_monolingual_v1 (string)"
},
{
"name": "outputPath",
"flag": "--output-path",
"type": "string",
"required": false,
"positional": false,
"description": "[OPTIONAL] Output file path in vault (default: audio/tts-{timestamp}.mp3) (string)"
},
{
"name": "stability",
"flag": "--stability",
"type": "number",
"required": false,
"positional": false,
"description": "[OPTIONAL] Voice stability 0.0-1.0 (default: 0.5) (number)"
},
{
"name": "similarityBoost",
"flag": "--similarity-boost",
"type": "number",
"required": false,
"positional": false,
"description": "[OPTIONAL] Voice similarity boost 0.0-1.0 (default: 0.75) (number)"
}
],
"examples": [
"elevenlabs text-to-speech \"prompt-value\" --voice-id \"voiceId-value\" --model-id \"modelId-value\" --output-path \"outputPath-value\" --stability 1 --similarity-boost 1"
]
},
{
"agent": "ingestManager",
"tool": "ingest",
"description": "Ingest a PDF or audio file into a structured markdown note. PDF: text extraction (default) or vision OCR. Audio: speech transcription using explicit ingest-supported models. Output note created alongside the original file.",
"command": "ingest ingest",
"usage": "ingest ingest <filePath> [--mode <mode>] [--ocr-provider <ocrProvider>] [--ocr-model <ocrModel>]",
"arguments": [
{
"name": "filePath",
"flag": "--file-path",
"type": "string",
"required": true,
"positional": true,
"description": "[REQUIRED] Path to the file to ingest (PDF, DOCX, PPTX, XLSX, or audio). Relative to vault root. (string)"
},
{
"name": "mode",
"flag": "--mode",
"type": "string",
"required": false,
"positional": false,
"description": "[OPTIONAL] PDF processing mode only. \"text\" = free text extraction (default). \"vision\" = OCR via LLM vision (requires ocrProvider + ocrModel). (One of: [\"text\", \"vision\"])"
},
{
"name": "ocrProvider",
"flag": "--ocr-provider",
"type": "string",
"required": false,
"positional": false,
"description": "[OPTIONAL] Provider for vision-based OCR (e.g., \"openai\", \"anthropic\", \"google\", \"ollama\"). Required when mode=\"vision\". (string)"
},
{
"name": "ocrModel",
"flag": "--ocr-model",
"type": "string",
"required": false,
"positional": false,
"description": "[OPTIONAL] Model for vision-based OCR (e.g., \"gpt-4o\", \"claude-sonnet-4-6\"). Required when mode=\"vision\". (string)"
}
],
"examples": [
"ingest ingest \"filePath-value\" --mode \"mode-value\" --ocr-provider \"ocrProvider-value\" --ocr-model \"ocrModel-value\""
]
},
{
"agent": "ingestManager",
"tool": "listCapabilities",
"description": "List available OCR models and audio transcription models that the ingest pipeline supports. Use before ingest to discover valid provider/model options.",
"command": "ingest list-capabilities",
"usage": "ingest list-capabilities",
"arguments": [],
"examples": [
"ingest list-capabilities"
]
},
{
"agent": "memoryManager",
"tool": "archiveWorkspace",
"description": "Archive a workspace (soft delete). Workspace will be hidden from lists but can be restored.",
"command": "memory archive-workspace",
"usage": "memory archive-workspace <name> [--restore]",
"arguments": [
{
"name": "name",
"flag": "--name",
"type": "string",
"required": true,
"positional": true,
"description": "[REQUIRED] Name of the workspace to archive or restore (REQUIRED) (string)"
},
{
"name": "restore",
"flag": "--restore",
"type": "boolean",
"required": false,
"positional": false,
"description": "[OPTIONAL] If true, restores the workspace from archive. If false/omitted, archives the workspace. (boolean)"
}
],
"examples": [
"memory archive-workspace \"name-value\""
]
},
{
"agent": "memoryManager",
"tool": "createState",
"description": "Create a state with restoration context for later resumption",
"command": "memory create-state",
"usage": "memory create-state <name> <conversationContext> <activeTask> --active-files <activeFiles> --next-steps <nextSteps> [--tags <tags>]",
"arguments": [
{
"name": "name",
"flag": "--name",
"type": "string",
"required": true,
"positional": true,
"description": "[REQUIRED] Short descriptive title for this save point (string)"
},
{
"name": "conversationContext",
"flag": "--conversation-context",
"type": "string",
"required": true,
"positional": true,
"description": "[REQUIRED] Detailed markdown summary enabling seamless resumption. Structure with headings:\n\n## Original Request\nWhat the user asked for and their goal\n\n## Key Decisions Made\n- Decision and reasoning\n- Decision and reasoning\n\n## Important Context\nBackground info, constraints, or discoveries from the conversation\n\n## Current Status\nWhat is complete, what is in progress, any blockers (string)"
},
{
"name": "activeTask",
"flag": "--active-task",
"type": "string",
"required": true,
"positional": true,
"description": "[REQUIRED] The specific task in progress when saving (string)"
},
{
"name": "activeFiles",
"flag": "--active-files",
"type": "array<string>",
"required": true,
"positional": false,
"description": "[REQUIRED] File paths being edited or referenced (Array of a string)"
},
{
"name": "nextSteps",
"flag": "--next-steps",
"type": "array<string>",
"required": true,
"positional": false,
"description": "[REQUIRED] Specific action items to resume work, in priority order (Array of a string)"
},
{
"name": "tags",
"flag": "--tags",
"type": "array<string>",
"required": false,
"positional": false,
"description": "[OPTIONAL] Optional tags for categorization (Array of a string)"
}
],
"examples": [
"memory create-state \"name-value\" \"conversationContext-value\" \"activeTask-value\" --active-files \"[\\\"docs/plan.md\\\",\\\"src/main.ts\\\"]\" --next-steps \"[\\\"Create checkpoint\\\",\\\"Start refactor\\\"]\" --tags \"[\\\"checkpoint\\\",\\\"refactor\\\"]\""
]
},
{
"agent": "memoryManager",
"tool": "createWorkspace",
"description": "Create a new workspace with structured context data",
"command": "memory create-workspace",
"usage": "memory create-workspace <name> <description> <rootFolder> <purpose> [--workflows <workflows>] [--key-files <keyFiles>] [--preferences <preferences>] [--dedicated-agent-id <dedicatedAgentId>] [--related-folders <relatedFolders>] [--related-files <relatedFiles>] [--key-file-instructions <keyFileInstructions>]",
"arguments": [
{
"name": "name",
"flag": "--name",
"type": "string",
"required": true,
"positional": true,
"description": "[REQUIRED] Workspace name (string)"
},
{
"name": "description",
"flag": "--description",
"type": "string",
"required": true,
"positional": true,
"description": "[REQUIRED] Brief description of the workspace purpose (string)"
},
{
"name": "rootFolder",
"flag": "--root-folder",
"type": "string",
"required": true,
"positional": true,
"description": "[REQUIRED] Root folder path for this workspace (string)"
},
{
"name": "purpose",
"flag": "--purpose",
"type": "string",
"required": true,
"positional": true,
"description": "[REQUIRED] Overall purpose and goals for this workspace (string)"
},
{
"name": "workflows",
"flag": "--workflows",
"type": "array<object>",
"required": false,
"positional": false,
"description": "[OPTIONAL] Workflows for different situations. Each workflow may also bind a prompt and schedule. (Array of an object) [min items: 1]"
},
{
"name": "keyFiles",
"flag": "--key-files",
"type": "array<string>",
"required": false,
"positional": false,
"description": "[OPTIONAL] Key file paths for quick reference (Array of a string)"
},
{
"name": "preferences",
"flag": "--preferences",
"type": "string",
"required": false,
"positional": false,
"description": "[OPTIONAL] User preferences or workspace settings (string)"
},
{
"name": "dedicatedAgentId",
"flag": "--dedicated-agent-id",
"type": "string",
"required": false,
"positional": false,
"description": "[OPTIONAL] ID of dedicated prompt for this workspace (string)"
},
{
"name": "relatedFolders",
"flag": "--related-folders",
"type": "array<string>",
"required": false,
"positional": false,
"description": "[OPTIONAL] Related folder paths (Array of a string)"
},
{
"name": "relatedFiles",
"flag": "--related-files",
"type": "array<string>",
"required": false,
"positional": false,
"description": "[OPTIONAL] Related file paths (Array of a string)"
},
{
"name": "keyFileInstructions",
"flag": "--key-file-instructions",
"type": "string",
"required": false,
"positional": false,
"description": "[OPTIONAL] Instructions for working with key files (string)"
}
],
"examples": [
"memory create-workspace \"name-value\" \"description-value\" \"rootFolder-value\" \"purpose-value\" --workflows \"value-1,value-2\" --key-files \"value-1,value-2\" --preferences \"preferences-value\" --dedicated-agent-id \"dedicatedAgentId-value\" --related-folders \"value-1,value-2\" --related-files \"value-1,value-2\" --key-file-instructions \"keyFileInstructions-value\""
]
},
{
"agent": "memoryManager",
"tool": "listStates",
"description": "List states with optional filtering and sorting",
"command": "memory list-states",
"usage": "memory list-states [--include-archived] [--tags <tags>] [--page <page>] [--page-size <pageSize>] [--order <order>]",
"arguments": [
{
"name": "includeArchived",
"flag": "--include-archived",
"type": "boolean",
"required": false,
"positional": false,
"description": "[OPTIONAL] Include archived states (default: false) (boolean)"
},
{
"name": "tags",
"flag": "--tags",
"type": "array<string>",
"required": false,
"positional": false,
"description": "[OPTIONAL] Filter by tags (Array of a string)"
},
{
"name": "page",
"flag": "--page",
"type": "number",
"required": false,
"positional": false,
"description": "[OPTIONAL] Page number for pagination (0-indexed, default: 0) (number) [min: 0]"
},
{
"name": "pageSize",
"flag": "--page-size",
"type": "number",
"required": false,
"positional": false,
"description": "[OPTIONAL] Number of items per page (default: all items if not specified) (number) [min: 1]"
},
{
"name": "order",
"flag": "--order",
"type": "string",
"required": false,
"positional": false,
"description": "[OPTIONAL] Sort order by creation date (default: desc) (One of: [\"asc\", \"desc\"])"
}
],
"examples": [
"memory list-states --tags \"value-1,value-2\" --page 1 --page-size 1 --order \"order-value\""
]
},
{
"agent": "memoryManager",
"tool": "listWorkspaces",
"description": "List available workspaces with filters and sorting",
"command": "memory list-workspaces",
"usage": "memory list-workspaces [--include-archived] [--sort-by <sortBy>] [--order <order>] [--limit <limit>]",
"arguments": [
{
"name": "includeArchived",
"flag": "--include-archived",
"type": "boolean",
"required": false,
"positional": false,
"description": "[OPTIONAL] Include archived workspaces (default: false) (boolean)"
},
{
"name": "sortBy",
"flag": "--sort-by",
"type": "string",
"required": false,
"positional": false,
"description": "[OPTIONAL] Field to sort workspaces by (One of: [\"name\", \"created\", \"lastAccessed\"])"
},
{
"name": "order",
"flag": "--order",
"type": "string",
"required": false,
"positional": false,
"description": "[OPTIONAL] Sort order (ascending or descending) (One of: [\"asc\", \"desc\"])"
},
{
"name": "limit",
"flag": "--limit",
"type": "number",
"required": false,
"positional": false,
"description": "[OPTIONAL] Maximum number of workspaces to return (number)"
}
],
"examples": [
"memory list-workspaces --sort-by \"sortBy-value\" --order \"order-value\" --limit 1"
]
},
{
"agent": "memoryManager",
"tool": "loadState",
"description": "Load a saved state and optionally create a continuation session with restored context",
"command": "memory load-state",
"usage": "memory load-state <name>",
"arguments": [
{