forked from ruvnet/ruflo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathverification-inventory.json
More file actions
2236 lines (2236 loc) · 91.7 KB
/
verification-inventory.json
File metadata and controls
2236 lines (2236 loc) · 91.7 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
{
"mcp": [
{
"name": "agent_execute",
"description": "Execute a task on a spawned agent — calls the Anthropic Messages API with the agent\\",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\agent-tools.ts"
},
{
"name": "agent_health",
"description": "Check agent health",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\agent-tools.ts"
},
{
"name": "agent_list",
"description": "List all agents",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\agent-tools.ts"
},
{
"name": "agent_pool",
"description": "Manage agent pool",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\agent-tools.ts"
},
{
"name": "agent_spawn",
"description": "Spawn a Ruflo-tracked agent with cost attribution + memory persistence + swarm coordination. Use when native Task tool is wrong because you need (a) cost tracking per agent in the cost-tracking namespace, (b) cross-session learning via the patterns namespace, or (c) coordination with other agents in a swarm topology (hierarchical / mesh / consensus). For one-shot subtasks with no learning loop, native Task is fine. Pair with hooks_route to pick the right model first.",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\agent-tools.ts"
},
{
"name": "agent_status",
"description": "Get agent status",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\agent-tools.ts"
},
{
"name": "agent_terminate",
"description": "Terminate an agent",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\agent-tools.ts"
},
{
"name": "agent_update",
"description": "Update agent status or config",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\agent-tools.ts"
},
{
"name": "agentdb_batch",
"description": "Batch operations on AgentDB episodes (insert, update, delete). Note: entries are stored in the AgentDB episodes table, not the memory_search namespace. Use memory_store for entries that should be searchable via memory_search.",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\agentdb-tools.ts"
},
{
"name": "agentdb_causal-edge",
"description": "Record a causal edge between two memory entries via CausalMemoryGraph",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\agentdb-tools.ts"
},
{
"name": "agentdb_consolidate",
"description": "Run memory consolidation to promote entries across tiers and compress old data",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\agentdb-tools.ts"
},
{
"name": "agentdb_context-synthesize",
"description": "Synthesize context from stored memories for a given query",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\agentdb-tools.ts"
},
{
"name": "agentdb_controllers",
"description": "List all AgentDB v3 controllers and their initialization status",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\agentdb-tools.ts"
},
{
"name": "agentdb_feedback",
"description": "Record task feedback for learning via LearningSystem + ReasoningBank controllers",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\agentdb-tools.ts"
},
{
"name": "agentdb_health",
"description": "Get AgentDB v3 controller health status including cache stats and attestation count",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\agentdb-tools.ts"
},
{
"name": "agentdb_hierarchical-recall",
"description": "Recall from hierarchical memory with optional tier filter",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\agentdb-tools.ts"
},
{
"name": "agentdb_hierarchical-store",
"description": "Store to hierarchical memory with tier (working, episodic, semantic)",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\agentdb-tools.ts"
},
{
"name": "agentdb_pattern-search",
"description": "Search patterns via ReasoningBank controller with BM25+semantic hybrid",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\agentdb-tools.ts"
},
{
"name": "agentdb_pattern-store",
"description": "Store a pattern directly via ReasoningBank controller",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\agentdb-tools.ts"
},
{
"name": "agentdb_route",
"description": "Route a task via AgentDB SemanticRouter or LearningSystem recommendAlgorithm",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\agentdb-tools.ts"
},
{
"name": "agentdb_semantic-route",
"description": "Route an input via AgentDB SemanticRouter for intent classification",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\agentdb-tools.ts"
},
{
"name": "agentdb_session-end",
"description": "End session, persist to ReflexionMemory, trigger NightlyLearner consolidation",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\agentdb-tools.ts"
},
{
"name": "agentdb_session-start",
"description": "Start a session with ReflexionMemory episodic replay",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\agentdb-tools.ts"
},
{
"name": "agents",
"description": "",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\swarm-tools.ts"
},
{
"name": "aidefence_analyze",
"description": "Deep analysis of input for specific threat types with similar pattern search and mitigation recommendations.",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\security-tools.ts"
},
{
"name": "aidefence_has_pii",
"description": "Check if input contains PII (emails, SSNs, API keys, passwords, etc.).",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\security-tools.ts"
},
{
"name": "aidefence_is_safe",
"description": "Quick boolean check if input is safe. Fastest option for simple validation.",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\security-tools.ts"
},
{
"name": "aidefence_learn",
"description": "Record detection feedback for pattern learning. Improves future detection accuracy.",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\security-tools.ts"
},
{
"name": "aidefence_scan",
"description": "Scan input text for AI manipulation threats (prompt injection, jailbreaks, PII). Returns threat assessment with <10ms latency.",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\security-tools.ts"
},
{
"name": "aidefence_stats",
"description": "Get AIDefence detection and learning statistics.",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\security-tools.ts"
},
{
"name": "analyze_diff",
"description": "Analyze git diff for change risk assessment and classification",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\analyze-tools.ts"
},
{
"name": "analyze_diff-classify",
"description": "Classify git diff change type",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\analyze-tools.ts"
},
{
"name": "analyze_diff-reviewers",
"description": "Suggest reviewers for git diff changes",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\analyze-tools.ts"
},
{
"name": "analyze_diff-risk",
"description": "Quick risk assessment for git diff",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\analyze-tools.ts"
},
{
"name": "analyze_diff-stats",
"description": "Get quick statistics for git diff",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\analyze-tools.ts"
},
{
"name": "analyze_file-risk",
"description": "Assess risk for a specific file change",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\analyze-tools.ts"
},
{
"name": "autopilot_config",
"description": "Configure autopilot limits: max iterations (1-1000), timeout in minutes (1-1440), and task sources.",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\autopilot-tools.ts"
},
{
"name": "autopilot_disable",
"description": "Disable autopilot. Agents will be allowed to stop even if tasks remain.",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\autopilot-tools.ts"
},
{
"name": "autopilot_enable",
"description": "Enable autopilot persistent completion. Agents will be re-engaged when tasks remain incomplete.",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\autopilot-tools.ts"
},
{
"name": "autopilot_history",
"description": "Search past completion episodes by keyword. Requires AgentDB.",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\autopilot-tools.ts"
},
{
"name": "autopilot_learn",
"description": "Discover success patterns from past task completions. Requires AgentDB for full functionality.",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\autopilot-tools.ts"
},
{
"name": "autopilot_log",
"description": "Retrieve the autopilot event log. Shows enable/disable events, re-engagements, completions.",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\autopilot-tools.ts"
},
{
"name": "autopilot_predict",
"description": "Predict the optimal next action based on current state and learned patterns.",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\autopilot-tools.ts"
},
{
"name": "autopilot_progress",
"description": "Detailed task progress broken down by source (team-tasks, swarm-tasks, file-checklist).",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\autopilot-tools.ts"
},
{
"name": "autopilot_reset",
"description": "Reset autopilot iteration counter and restart the timer.",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\autopilot-tools.ts"
},
{
"name": "autopilot_status",
"description": "Get autopilot state including enabled status, iteration count, task progress, and learning metrics.",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\autopilot-tools.ts"
},
{
"name": "browser_back",
"description": "Navigate back in browser history",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\browser-tools.ts"
},
{
"name": "browser_check",
"description": "Check a checkbox",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\browser-tools.ts"
},
{
"name": "browser_click",
"description": "Click an element using ref (@e1) or CSS selector",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\browser-tools.ts"
},
{
"name": "browser_close",
"description": "Close the browser session",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\browser-tools.ts"
},
{
"name": "browser_cookie_use",
"description": "Fetch a vault handle for a host from the browser-cookies AgentDB namespace. Raw cookie values are NEVER returned — only the opaque handle plus expiry / AIDefence verdict.",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\browser-session-tools.ts"
},
{
"name": "browser_eval",
"description": "Execute JavaScript in page context",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\browser-tools.ts"
},
{
"name": "browser_fill",
"description": "Clear and fill an input element",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\browser-tools.ts"
},
{
"name": "browser_forward",
"description": "Navigate forward in browser history",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\browser-tools.ts"
},
{
"name": "browser_get-text",
"description": "Get text content of an element",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\browser-tools.ts"
},
{
"name": "browser_get-title",
"description": "Get the page title",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\browser-tools.ts"
},
{
"name": "browser_get-url",
"description": "Get the current URL",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\browser-tools.ts"
},
{
"name": "browser_get-value",
"description": "Get value of an input element",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\browser-tools.ts"
},
{
"name": "browser_hover",
"description": "Hover over an element using ref (@e1) or CSS selector",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\browser-tools.ts"
},
{
"name": "browser_open",
"description": "Navigate browser to a URL",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\browser-tools.ts"
},
{
"name": "browser_press",
"description": "Press a keyboard key",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\browser-tools.ts"
},
{
"name": "browser_reload",
"description": "Reload the current page",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\browser-tools.ts"
},
{
"name": "browser_screenshot",
"description": "Capture screenshot of the page",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\browser-tools.ts"
},
{
"name": "browser_scroll",
"description": "Scroll the page",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\browser-tools.ts"
},
{
"name": "browser_select",
"description": "Select an option from a dropdown",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\browser-tools.ts"
},
{
"name": "browser_session_end",
"description": "End a recorded browser session: trajectory-end with verdict, rvf compact, AIDefence pre-store gate (best-effort), and AgentDB index in the browser-sessions namespace.",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\browser-session-tools.ts"
},
{
"name": "browser_session_record",
"description": "Open a named, traced browser session: allocate an RVF cognitive container, begin a ruvector trajectory, then open the URL via agent-browser. Returns the session id and rvf path.",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\browser-session-tools.ts"
},
{
"name": "browser_session_replay",
"description": "Load a recorded session trajectory and return its steps so the caller can dispatch them through the 23 browser_* tools. Does NOT itself drive the browser — replay execution is caller-orchestrated to keep this tool a primitive (ADR-0001 §7).",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\browser-session-tools.ts"
},
{
"name": "browser_session-list",
"description": "List active browser sessions",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\browser-tools.ts"
},
{
"name": "browser_snapshot",
"description": "Get AI-optimized accessibility tree snapshot with element refs (@e1, @e2, etc.)",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\browser-tools.ts"
},
{
"name": "browser_template_apply",
"description": "Fetch a recipe from the browser-templates AgentDB namespace and return it for caller-level execution.",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\browser-session-tools.ts"
},
{
"name": "browser_type",
"description": "Type text with key events (for autocomplete, etc.)",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\browser-tools.ts"
},
{
"name": "browser_uncheck",
"description": "Uncheck a checkbox",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\browser-tools.ts"
},
{
"name": "browser_wait",
"description": "Wait for a condition",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\browser-tools.ts"
},
{
"name": "build-agents",
"description": "",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "claims_accept-handoff",
"description": "Accept a pending handoff",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\claims-tools.ts"
},
{
"name": "claims_board",
"description": "Get a visual board view of all claims",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\claims-tools.ts"
},
{
"name": "claims_claim",
"description": "Claim an issue for work (human or agent)",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\claims-tools.ts"
},
{
"name": "claims_handoff",
"description": "Request handoff of an issue to another claimant",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\claims-tools.ts"
},
{
"name": "claims_list",
"description": "List all claims or filter by criteria",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\claims-tools.ts"
},
{
"name": "claims_load",
"description": "Get agent load information",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\claims-tools.ts"
},
{
"name": "claims_mark-stealable",
"description": "Mark an issue as stealable by other agents",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\claims-tools.ts"
},
{
"name": "claims_rebalance",
"description": "Suggest or apply load rebalancing across agents",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\claims-tools.ts"
},
{
"name": "claims_release",
"description": "Release a claim on an issue",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\claims-tools.ts"
},
{
"name": "claims_status",
"description": "Update claim status",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\claims-tools.ts"
},
{
"name": "claims_steal",
"description": "Steal a stealable issue",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\claims-tools.ts"
},
{
"name": "claims_stealable",
"description": "List all stealable issues",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\claims-tools.ts"
},
{
"name": "config",
"description": "",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\system-tools.ts"
},
{
"name": "config_export",
"description": "Export configuration to JSON",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\config-tools.ts"
},
{
"name": "config_get",
"description": "Get configuration value",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\config-tools.ts"
},
{
"name": "config_import",
"description": "Import configuration from JSON",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\config-tools.ts"
},
{
"name": "config_list",
"description": "List configuration values",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\config-tools.ts"
},
{
"name": "config_reset",
"description": "Reset configuration to defaults",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\config-tools.ts"
},
{
"name": "config_set",
"description": "Set configuration value",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\config-tools.ts"
},
{
"name": "coordination_consensus",
"description": "Manage consensus protocol with BFT, Raft, or Quorum strategies",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\coordination-tools.ts"
},
{
"name": "coordination_load_balance",
"description": "Configure load balancing",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\coordination-tools.ts"
},
{
"name": "coordination_metrics",
"description": "Get coordination metrics",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\coordination-tools.ts"
},
{
"name": "coordination_node",
"description": "Manage coordination nodes",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\coordination-tools.ts"
},
{
"name": "coordination_orchestrate",
"description": "Orchestrate multi-agent coordination",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\coordination-tools.ts"
},
{
"name": "coordination_sync",
"description": "Synchronize state across nodes",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\coordination-tools.ts"
},
{
"name": "coordination_topology",
"description": "Configure swarm topology",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\coordination-tools.ts"
},
{
"name": "coordinator",
"description": "",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\swarm-tools.ts"
},
{
"name": "daa_agent_adapt",
"description": "Trigger agent adaptation based on feedback",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\daa-tools.ts"
},
{
"name": "daa_agent_create",
"description": "Create a decentralized autonomous agent",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\daa-tools.ts"
},
{
"name": "daa_cognitive_pattern",
"description": "Analyze or change cognitive patterns",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\daa-tools.ts"
},
{
"name": "daa_knowledge_share",
"description": "Share knowledge between agents",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\daa-tools.ts"
},
{
"name": "daa_learning_status",
"description": "Get learning status for DAA agents",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\daa-tools.ts"
},
{
"name": "daa_performance_metrics",
"description": "Get DAA performance metrics",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\daa-tools.ts"
},
{
"name": "daa_workflow_create",
"description": "Create an autonomous workflow",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\daa-tools.ts"
},
{
"name": "daa_workflow_execute",
"description": "Execute a DAA workflow",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\daa-tools.ts"
},
{
"name": "database",
"description": "",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\system-tools.ts"
},
{
"name": "disk",
"description": "",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\system-tools.ts"
},
{
"name": "embeddings_compare",
"description": "Compare similarity between two texts",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\embeddings-tools.ts"
},
{
"name": "embeddings_generate",
"description": "Generate embeddings for text (Euclidean or hyperbolic)",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\embeddings-tools.ts"
},
{
"name": "embeddings_hyperbolic",
"description": "Hyperbolic embedding operations (Poincaré ball)",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\embeddings-tools.ts"
},
{
"name": "embeddings_init",
"description": "Initialize the ONNX embedding subsystem with hyperbolic support",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\embeddings-tools.ts"
},
{
"name": "embeddings_neural",
"description": "Neural substrate operations (RuVector integration)",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\embeddings-tools.ts"
},
{
"name": "embeddings_rabitq_build",
"description": "Build RaBitQ 1-bit quantized index from stored embeddings (32× compression). Pre-filters candidates via Hamming scan before exact rerank.",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\embeddings-tools.ts"
},
{
"name": "embeddings_rabitq_search",
"description": "Search via RaBitQ quantized index (fast Hamming scan). Returns candidate IDs for reranking.",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\embeddings-tools.ts"
},
{
"name": "embeddings_rabitq_status",
"description": "Get RaBitQ quantized index status — availability, vector count, compression ratio",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\embeddings-tools.ts"
},
{
"name": "embeddings_search",
"description": "Semantic search across stored embeddings",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\embeddings-tools.ts"
},
{
"name": "embeddings_status",
"description": "Get embeddings system status and configuration",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\embeddings-tools.ts"
},
{
"name": "explain",
"description": "",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "github_issue_track",
"description": "Track and manage issues",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\github-tools.ts"
},
{
"name": "github_metrics",
"description": "Get repository metrics and statistics",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\github-tools.ts"
},
{
"name": "github_pr_manage",
"description": "Manage pull requests",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\github-tools.ts"
},
{
"name": "github_repo_analyze",
"description": "Analyze a GitHub repository",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\github-tools.ts"
},
{
"name": "github_workflow",
"description": "Manage GitHub Actions workflows",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\github-tools.ts"
},
{
"name": "guidance_capabilities",
"description": "List all capability areas with their tools, commands, agents, and skills. Use this to discover what Ruflo can do.",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\guidance-tools.ts"
},
{
"name": "guidance_discover",
"description": "Discover all available agents and skills from the .claude/ directory. Returns live filesystem data.",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\guidance-tools.ts"
},
{
"name": "guidance_quickref",
"description": "Quick reference card for common operations. Returns the most useful commands for a given domain.",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\guidance-tools.ts"
},
{
"name": "guidance_recommend",
"description": "Given a task description, recommend which capability areas, tools, agents, and workflow to use.",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\guidance-tools.ts"
},
{
"name": "guidance_workflow",
"description": "Get a recommended workflow template for a task type. Includes steps, agents, and topology.",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\guidance-tools.ts"
},
{
"name": "hive-mind_broadcast",
"description": "Broadcast message to all workers",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hive-mind-tools.ts"
},
{
"name": "hive-mind_consensus",
"description": "Propose or vote on consensus with BFT, Raft, or Quorum strategies",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hive-mind-tools.ts"
},
{
"name": "hive-mind_init",
"description": "Initialize the hive-mind collective",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hive-mind-tools.ts"
},
{
"name": "hive-mind_join",
"description": "Join an agent to the hive-mind",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hive-mind-tools.ts"
},
{
"name": "hive-mind_leave",
"description": "Remove an agent from the hive-mind",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hive-mind-tools.ts"
},
{
"name": "hive-mind_memory",
"description": "Access hive shared memory",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hive-mind-tools.ts"
},
{
"name": "hive-mind_shutdown",
"description": "Shutdown the hive-mind and terminate all workers",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hive-mind-tools.ts"
},
{
"name": "hive-mind_spawn",
"description": "Spawn workers and automatically join them to the hive-mind (combines agent/spawn + hive-mind/join)",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hive-mind-tools.ts"
},
{
"name": "hive-mind_status",
"description": "Get hive-mind status",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hive-mind-tools.ts"
},
{
"name": "hooks_build-agents",
"description": "Generate optimized agent configurations from pretrain data",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "hooks_explain",
"description": "Explain routing decision with full transparency",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "hooks_init",
"description": "Initialize hooks in project with .claude/settings.json",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "hooks_intelligence",
"description": "RuVector intelligence system status (shows REAL metrics from memory store)",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "hooks_intelligence_attention",
"description": "Compute attention-weighted similarity using MoE/Flash/Hyperbolic",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "hooks_intelligence_learn",
"description": "Force immediate SONA learning cycle with EWC++ consolidation",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "hooks_intelligence_pattern-search",
"description": "Search patterns using REAL vector search (HNSW when available, brute-force fallback)",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "hooks_intelligence_pattern-store",
"description": "Store pattern in ReasoningBank (HNSW-indexed)",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "hooks_intelligence_stats",
"description": "Get RuVector intelligence layer statistics",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "hooks_intelligence_trajectory-end",
"description": "End trajectory and trigger SONA learning with EWC++",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "hooks_intelligence_trajectory-start",
"description": "Begin SONA trajectory for reinforcement learning",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "hooks_intelligence_trajectory-step",
"description": "Record step in trajectory for reinforcement learning",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "hooks_intelligence-reset",
"description": "Reset intelligence learning state",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "hooks_list",
"description": "List all registered hooks",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "hooks_metrics",
"description": "View learning metrics dashboard",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "hooks_model-outcome",
"description": "Record model routing outcome for learning",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "hooks_model-route",
"description": "Route task to optimal Claude model (haiku/sonnet/opus) based on complexity",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "hooks_model-stats",
"description": "Get model routing statistics",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "hooks_notify",
"description": "Send cross-agent notification",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "hooks_post-command",
"description": "Record command execution outcome",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "hooks_post-edit",
"description": "Record editing outcome for learning",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "hooks_post-task",
"description": "Record task completion for learning",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "hooks_pre-command",
"description": "Assess risk before executing a command",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "hooks_pre-edit",
"description": "Get context and agent suggestions before editing a file",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "hooks_pre-task",
"description": "Record task start and get agent suggestions with intelligent model routing (ADR-026)",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "hooks_pretrain",
"description": "Analyze repository to bootstrap intelligence (4-step pipeline)",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "hooks_route",
"description": "Get a 3-tier routing recommendation for a task: Tier 1 (Agent Booster, 0ms / $0 — for var-to-const, add-types, etc.), Tier 2 (Haiku — simple), Tier 3 (Sonnet/Opus — complex). Use this BEFORE spawning an agent to avoid sending simple transforms to Sonnet. Native tools have no equivalent — Claude Code does not introspect its own model-selection cost. Returns the recommended model + a",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "hooks_session-end",
"description": "End current session, stop daemon, and persist state",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "hooks_session-restore",
"description": "Restore a previous session",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "hooks_session-start",
"description": "Initialize a new session and auto-start daemon",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "hooks_transfer",
"description": "Transfer learned patterns from another project",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "hooks_worker-cancel",
"description": "Cancel a running worker",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "hooks_worker-detect",
"description": "Detect worker triggers from user prompt (for UserPromptSubmit hook)",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "hooks_worker-dispatch",
"description": "Dispatch a background worker for analysis/optimization tasks",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "hooks_worker-list",
"description": "List all 12 background workers with status and capabilities",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "hooks_worker-status",
"description": "Get status of a specific worker or all active workers",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "init",
"description": "",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "intelligence",
"description": "",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "intelligence_attention",
"description": "Record task start and get agent suggestions with intelligent model routing (ADR-026)",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "intelligence_learn",
"description": "Record task start and get agent suggestions with intelligent model routing (ADR-026)",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "intelligence_pattern-search",
"description": "Record task start and get agent suggestions with intelligent model routing (ADR-026)",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "intelligence_pattern-store",
"description": "",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "intelligence_stats",
"description": "Record task start and get agent suggestions with intelligent model routing (ADR-026)",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "intelligence_trajectory-end",
"description": "",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "intelligence_trajectory-start",
"description": "",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "intelligence_trajectory-step",
"description": "",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\hooks-tools.ts"
},
{
"name": "mcp",
"description": "",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\system-tools.ts"
},
{
"name": "mcp_status",
"description": "Get MCP server status, including stdio mode detection",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\system-tools.ts"
},
{
"name": "memory",
"description": "",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\system-tools.ts"
},
{
"name": "memory_bridge_status",
"description": "Show Claude Code memory bridge status — AgentDB vectors, SONA learning, intelligence patterns, and connection health.",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\memory-tools.ts"
},
{
"name": "memory_delete",
"description": "Remove a stored memory entry by exact (namespace, key). Use when a previously stored decision is invalidated or contains stale data. No native equivalent — Write to a file does not affect the .swarm/memory.db SQLite store.",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\memory-tools.ts"
},
{
"name": "memory_import_claude",
"description": "Import Claude Code auto-memory files into AgentDB with ONNX vector embeddings. Reads ~/.claude/projects/*/memory/*.md files, parses YAML frontmatter, splits into sections, and stores with 384-dim embeddings for semantic search. Use allProjects=true to import from ALL Claude projects.",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\memory-tools.ts"
},
{
"name": "memory_list",
"description": "Enumerate stored memory entries (optionally filtered by namespace/tags) without semantic search. Use when native Glob is wrong because the entries are not files (they live in .swarm/memory.db). For inspection / audit /",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\memory-tools.ts"
},
{
"name": "memory_migrate",
"description": "Manually trigger migration from legacy JSON store to sql.js",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\memory-tools.ts"
},
{
"name": "memory_retrieve",
"description": "Read back a value previously stored via memory_store, by exact (namespace, key) — lossless, includes metadata. Use when native Read is wrong because the value is not a file (it lives in the .swarm/memory.db SQLite store) AND you know the exact key. For semantic lookup by meaning, use memory_search.",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\memory-tools.ts"
},
{
"name": "memory_search",
"description": "Find stored memories by meaning (vector similarity), not by literal text — finds",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\memory-tools.ts"
},
{
"name": "memory_search_unified",
"description": "Search across both Claude Code memories and AgentDB entries using semantic vector similarity. Returns merged, deduplicated results from all namespaces.",
"sourceFile": "v3\\@claude-flow\\cli\\src\\mcp-tools\\memory-tools.ts"
},
{
"name": "memory_stats",
"description": "Get memory storage statistics including HNSW index status",