-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathedge_function_knowledge.json
More file actions
2240 lines (2240 loc) · 116 KB
/
edge_function_knowledge.json
File metadata and controls
2240 lines (2240 loc) · 116 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
[
{
"name": "service-monetization-engine",
"type": "tool",
"description": "💰 REVENUE GENERATION - API key generation, usage tracking, tiered access control, billing, and revenue analytics for monetized services (Detailed Reference)",
"content": "# service-monetization-engine\n\n**Description:** 💰 REVENUE GENERATION - API key generation, usage tracking, tiered access control, billing, and revenue analytics for monetized services\n**Category:** revenue\n\n**Example Use:**\n```json\nGenerate API key: {\n```\n\n**Usage Analysis:**\n\n**Available Actions:**\n- `generate_api_key`\n- `validate_api_key`\n- `track_usage`\n- `get_usage_stats`\n- `upgrade_tier`\n- `suspend_api_key`\n- `calculate_revenue`\n- `create_invoice`\n- `get_top_customers`\n\n**Detected Parameters:**\n- `action`\n- `data`\n\n\n**Source Code Analysis:**\nScanned 15446 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Generate API key: {",
"detected_actions": [
"generate_api_key",
"validate_api_key",
"track_usage",
"get_usage_stats",
"upgrade_tier",
"suspend_api_key",
"calculate_revenue",
"create_invoice",
"get_top_customers"
],
"detected_params": [
"action",
"data"
]
}
},
{
"name": "workflow-template-manager",
"type": "tool",
"description": "🔄 WORKFLOW AUTOMATION - Pre-built workflow templates for revenue generation, marketing automation, financial management, and self-optimization (Detailed Reference)",
"content": "# workflow-template-manager\n\n**Description:** 🔄 WORKFLOW AUTOMATION - Pre-built workflow templates for revenue generation, marketing automation, financial management, and self-optimization\n**Category:** automation\n\n**Example Use:**\n```json\nExecute template: {\n```\n\n**Usage Analysis:**\n\n**Available Actions:**\n- `list_templates`\n- `get_template`\n- `execute_template`\n- `create_template`\n- `update_template`\n- `get_template_analytics`\n- `get_execution_status`\n- `ai_analysis`\n- `ai_generation`\n- `reporting`\n- `scoring`\n- `decision`\n- `analytics`\n- `calculation`\n- `log_retrieval`\n- `failure_calculation`\n- `severity_scoring`\n- `diagnostic_reporting`\n- `validation`\n- `api_call`\n- `database`\n- `notification`\n- `notification_batch`\n- `multi_channel`\n\n**Detected Parameters:**\n- `action`\n- `data`\n\n\n**Source Code Analysis:**\nScanned 36625 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Execute template: {",
"detected_actions": [
"list_templates",
"get_template",
"execute_template",
"create_template",
"update_template",
"get_template_analytics",
"get_execution_status",
"ai_analysis",
"ai_generation",
"reporting",
"scoring",
"decision",
"analytics",
"calculation",
"log_retrieval",
"failure_calculation",
"severity_scoring",
"diagnostic_reporting",
"validation",
"api_call",
"database",
"notification",
"notification_batch",
"multi_channel"
],
"detected_params": [
"action",
"data"
]
}
},
{
"name": "lovable-chat",
"type": "tool",
"description": "✅ PRIMARY AI - Model-agnostic chat via Lovable AI Gateway (Gemini 2.5 Flash default, supports OpenAI GPT-5) (Detailed Reference)",
"content": "# lovable-chat\n\n**Description:** ✅ PRIMARY AI - Model-agnostic chat via Lovable AI Gateway (Gemini 2.5 Flash default, supports OpenAI GPT-5)\n**Category:** ai\n\n**Example Use:**\n```json\nMain intelligent chat endpoint with full context and memory - use this for all AI chat needs\n```\n\n**Usage Analysis:**\n\n\n**Source Code Analysis:**\nScanned 6088 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Main intelligent chat endpoint with full context and memory - use this for all AI chat needs",
"detected_actions": [],
"detected_params": []
}
},
{
"name": "github-integration",
"type": "tool",
"description": "Complete GitHub OAuth operations - create issues, PRs, comments, discussions (Detailed Reference)",
"content": "# github-integration\n\n**Description:** Complete GitHub OAuth operations - create issues, PRs, comments, discussions\n**Category:** github\n\n**Example Use:**\n```json\nCreate GitHub issue, list repository issues, manage pull requests\n```\n\n**Usage Analysis:**\n\n**Available Actions:**\n- `list_issues`\n- `list_discussions`\n- `get_repo_info`\n- `list_pull_requests`\n- `get_file_content`\n- `search_code`\n- `list_files`\n- `get_branch_info`\n- `list_branches`\n- `get_issue_comments`\n- `get_discussion_comments`\n- `create_issue`\n- `comment_on_issue`\n- `comment_on_discussion`\n- `trigger_workflow`\n- `create_discussion`\n- `create_pull_request`\n- `commit_file`\n- `update_issue`\n- `close_issue`\n- `add_comment`\n- `merge_pull_request`\n- `close_pull_request`\n- `delete_file`\n- `create_branch`\n- `create_issue_comment_reply`\n- `create_discussion_comment_reply`\n- `reply_to_discussion_comment`\n- `list_commits`\n- `get_commit_details`\n- `list_repo_events`\n- `list_releases`\n- `get_release_details`\n- `list_contributors`\n- `list_repositories`\n\n**Detected Parameters:**\n- `replace`\n\n\n**Source Code Analysis:**\nScanned 54703 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Create GitHub issue, list repository issues, manage pull requests",
"detected_actions": [
"list_issues",
"list_discussions",
"get_repo_info",
"list_pull_requests",
"get_file_content",
"search_code",
"list_files",
"get_branch_info",
"list_branches",
"get_issue_comments",
"get_discussion_comments",
"create_issue",
"comment_on_issue",
"comment_on_discussion",
"trigger_workflow",
"create_discussion",
"create_pull_request",
"commit_file",
"update_issue",
"close_issue",
"add_comment",
"merge_pull_request",
"close_pull_request",
"delete_file",
"create_branch",
"create_issue_comment_reply",
"create_discussion_comment_reply",
"reply_to_discussion_comment",
"list_commits",
"get_commit_details",
"list_repo_events",
"list_releases",
"get_release_details",
"list_contributors",
"list_repositories"
],
"detected_params": [
"replace"
]
}
},
{
"name": "mining-proxy",
"type": "tool",
"description": "Unified mining statistics and worker management from SupportXMR (Detailed Reference)",
"content": "# mining-proxy\n\n**Description:** Unified mining statistics and worker management from SupportXMR\n**Category:** mining\n\n**Example Use:**\n```json\nGet comprehensive mining data including pool stats and individual worker performance\n```\n\n**Usage Analysis:**\n\n**Detected Parameters:**\n- `worker_id`\n- `wallet`\n- `alias`\n- `user_id`\n- `session_key`\n- `device_type`\n- `registration_method`\n- `timestamp`\n\n\n**Source Code Analysis:**\nScanned 8187 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Get comprehensive mining data including pool stats and individual worker performance",
"detected_actions": [],
"detected_params": [
"worker_id",
"wallet",
"alias",
"user_id",
"session_key",
"device_type",
"registration_method",
"timestamp"
]
}
},
{
"name": "agent-manager",
"type": "tool",
"description": "Primary agent orchestration - create, manage, and monitor AI agents (Detailed Reference)",
"content": "# agent-manager\n\n**Description:** Primary agent orchestration - create, manage, and monitor AI agents\n**Category:** task-management\n\n**Example Use:**\n```json\nCreate a new agent and assign them a task, monitor agent workloads\n```\n\n**Usage Analysis:**\n\n**Available Actions:**\n- `list_agents`\n- `spawn_agent`\n- `update_agent_status`\n- `assign_task`\n- `list_tasks`\n- `update_task_status`\n- `set_task_status`\n- `report_progress`\n- `request_assignment`\n- `get_agent_workload`\n- `log_decision`\n- `update_agent_skills`\n- `update_agent_role`\n- `delete_agent`\n- `search_agents`\n- `update_task`\n- `search_tasks`\n- `bulk_update_tasks`\n- `delete_task`\n- `reassign_task`\n- `update_task_details`\n- `get_task_details`\n- `cleanup_duplicate_agents`\n- `execute_autonomous_workflow`\n- `analyze`\n- `execute_python`\n- `github_operation`\n- `create_subtask`\n- `query_knowledge`\n- `get_agent_by_name`\n- `get_agent_stats`\n- `batch_spawn_agents`\n- `archive_agent`\n- `provision_openclaw_agent`\n\n**Detected Parameters:**\n- `action`\n- `autonomous`\n- `...rest`\n- `user_id`\n- `context`\n\n\n**Source Code Analysis:**\nScanned 54272 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Create a new agent and assign them a task, monitor agent workloads",
"detected_actions": [
"list_agents",
"spawn_agent",
"update_agent_status",
"assign_task",
"list_tasks",
"update_task_status",
"set_task_status",
"report_progress",
"request_assignment",
"get_agent_workload",
"log_decision",
"update_agent_skills",
"update_agent_role",
"delete_agent",
"search_agents",
"update_task",
"search_tasks",
"bulk_update_tasks",
"delete_task",
"reassign_task",
"update_task_details",
"get_task_details",
"cleanup_duplicate_agents",
"execute_autonomous_workflow",
"analyze",
"execute_python",
"github_operation",
"create_subtask",
"query_knowledge",
"get_agent_by_name",
"get_agent_stats",
"batch_spawn_agents",
"archive_agent",
"provision_openclaw_agent"
],
"detected_params": [
"action",
"autonomous",
"...rest",
"user_id",
"context"
]
}
},
{
"name": "python-executor",
"type": "tool",
"description": "Sandboxed Python execution via Piston API (stdlib only, no pip) (Detailed Reference)",
"content": "# python-executor\n\n**Description:** Sandboxed Python execution via Piston API (stdlib only, no pip)\n**Category:** code-execution\n\n**Example Use:**\n```json\nExecute Python to analyze device connection patterns from the last 24 hours\n```\n\n**Usage Analysis:**\n\n\n**Source Code Analysis:**\nScanned 10008 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Execute Python to analyze device connection patterns from the last 24 hours",
"detected_actions": [],
"detected_params": []
}
},
{
"name": "playwright-browse",
"type": "tool",
"description": "Web browsing and scraping using Playwright automation (Detailed Reference)",
"content": "# playwright-browse\n\n**Description:** Web browsing and scraping using Playwright automation\n**Category:** web\n\n**Example Use:**\n```json\nBrowse websites, extract data, interact with web pages, research real-time information\n```\n\n**Usage Analysis:**\n\n\n**Source Code Analysis:**\nScanned 13049 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Browse websites, extract data, interact with web pages, research real-time information",
"detected_actions": [],
"detected_params": []
}
},
{
"name": "knowledge-manager",
"type": "tool",
"description": "Knowledge base CRUD operations - store, search, and link entities (Detailed Reference)",
"content": "# knowledge-manager\n\n**Description:** Knowledge base CRUD operations - store, search, and link entities\n**Category:** knowledge\n\n**Example Use:**\n```json\nStore concepts, link entities, search knowledge graph\n```\n\n**Usage Analysis:**\n\n**Available Actions:**\n- `store_knowledge`\n- `upsert_knowledge`\n- `create_relationship`\n- `search_knowledge`\n- `get_related_entities`\n- `update_entity_confidence`\n- `store_learning_pattern`\n- `get_patterns`\n- `list_knowledge`\n- `check_status`\n- `delete_knowledge`\n\n\n**Source Code Analysis:**\nScanned 18557 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Store concepts, link entities, search knowledge graph",
"detected_actions": [
"store_knowledge",
"upsert_knowledge",
"create_relationship",
"search_knowledge",
"get_related_entities",
"update_entity_confidence",
"store_learning_pattern",
"get_patterns",
"list_knowledge",
"check_status",
"delete_knowledge"
],
"detected_params": []
}
},
{
"name": "task-orchestrator",
"type": "tool",
"description": "Advanced task automation - auto-assign, rebalance, analyze bottlenecks (Detailed Reference)",
"content": "# task-orchestrator\n\n**Description:** Advanced task automation - auto-assign, rebalance, analyze bottlenecks\n**Category:** task-management\n\n**Example Use:**\n```json\nAutomatically distribute all pending tasks to idle agents by priority\n```\n\n**Usage Analysis:**\n\n**Available Actions:**\n- `run_orchestration_cycle`\n- `auto_assign_tasks`\n- `rebalance_workload`\n- `identify_blockers`\n- `performance_report`\n- `clear_all_blocked_tasks`\n- `bulk_update_task_status`\n- `clear_all_workloads`\n\n**Detected Parameters:**\n- `action`\n- `data`\n\n\n**Source Code Analysis:**\nScanned 12866 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Automatically distribute all pending tasks to idle agents by priority",
"detected_actions": [
"run_orchestration_cycle",
"auto_assign_tasks",
"rebalance_workload",
"identify_blockers",
"performance_report",
"clear_all_blocked_tasks",
"bulk_update_task_status",
"clear_all_workloads"
],
"detected_params": [
"action",
"data"
]
}
},
{
"name": "system-status",
"type": "tool",
"description": "Quick health check - database, agents, tasks status (Detailed Reference)",
"content": "# system-status\n\n**Description:** Quick health check - database, agents, tasks status\n**Category:** monitoring\n\n**Example Use:**\n```json\nGet comprehensive system health status\n```\n\n**Usage Analysis:**\n\n\n**Source Code Analysis:**\nScanned 43882 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Get comprehensive system health status",
"detected_actions": [],
"detected_params": []
}
},
{
"name": "system-diagnostics",
"type": "tool",
"description": "Detailed resource usage and performance metrics (Detailed Reference)",
"content": "# system-diagnostics\n\n**Description:** Detailed resource usage and performance metrics\n**Category:** monitoring\n\n**Example Use:**\n```json\nRun detailed system diagnostics when system is slow\n```\n\n**Usage Analysis:**\n\n\n**Source Code Analysis:**\nScanned 2432 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Run detailed system diagnostics when system is slow",
"detected_actions": [],
"detected_params": []
}
},
{
"name": "autonomous-code-fixer",
"type": "tool",
"description": "Self-healing code execution - auto-fixes and re-executes failed Python (Detailed Reference)",
"content": "# autonomous-code-fixer\n\n**Description:** Self-healing code execution - auto-fixes and re-executes failed Python\n**Category:** autonomous\n\n**Example Use:**\n```json\nAutomatically fixes failed Python executions without human intervention\n```\n\n**Usage Analysis:**\n\n**Detected Parameters:**\n- `execution_id`\n\n\n**Source Code Analysis:**\nScanned 9625 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Automatically fixes failed Python executions without human intervention",
"detected_actions": [],
"detected_params": [
"execution_id"
]
}
},
{
"name": "multi-step-orchestrator",
"type": "tool",
"description": "Complex workflow engine for background processing with dependencies (Detailed Reference)",
"content": "# multi-step-orchestrator\n\n**Description:** Complex workflow engine for background processing with dependencies\n**Category:** autonomous\n\n**Example Use:**\n```json\nExecute debugging workflow: scan logs → identify errors → fix code → verify\n```\n\n**Usage Analysis:**\n\n**Available Actions:**\n- `ai_analysis`\n- `data_fetch`\n- `api_call`\n- `decision`\n- `code_execution`\n\n\n**Source Code Analysis:**\nScanned 25275 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Execute debugging workflow: scan logs → identify errors → fix code → verify",
"detected_actions": [
"ai_analysis",
"data_fetch",
"api_call",
"decision",
"code_execution"
],
"detected_params": []
}
},
{
"name": "search-edge-functions",
"type": "tool",
"description": "Semantic search for edge functions by capability, keywords, or use case (Detailed Reference)",
"content": "# search-edge-functions\n\n**Description:** Semantic search for edge functions by capability, keywords, or use case\n**Category:** ecosystem\n\n**Example Use:**\n```json\nFind the right function when you don\\\n```\n\n**Usage Analysis:**\n\n**Detected Parameters:**\n- `query`\n- `category`\n\n\n**Source Code Analysis:**\nScanned 3098 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Find the right function when you don\\",
"detected_actions": [],
"detected_params": [
"query",
"category"
]
}
},
{
"name": "xmrt_integration",
"type": "tool",
"description": "Unified ecosystem health & integration hub - connects all XMRT repos (XMRT-Ecosystem, xmrt-wallet-public, mobilemonero, xmrtnet, xmrtdao) for comprehensive health reports and integration monitoring (Detailed Reference)",
"content": "# xmrt_integration\n\n**Description:** Unified ecosystem health & integration hub - connects all XMRT repos (XMRT-Ecosystem, xmrt-wallet-public, mobilemonero, xmrtnet, xmrtdao) for comprehensive health reports and integration monitoring\n**Category:** ecosystem\n\n**Example Use:**\n```json\nGenerate comprehensive ecosystem health report covering all repos, deployments, APIs, and community engagement. Check integration between services. Compare repository activity.\n```\n\n**Usage Analysis:**\n\n\n**Source Code Analysis:**\nScanned 5125 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Generate comprehensive ecosystem health report covering all repos, deployments, APIs, and community engagement. Check integration between services. Compare repository activity.",
"detected_actions": [],
"detected_params": []
}
},
{
"name": "aggregate-device-metrics",
"type": "tool",
"description": "Aggregate and analyze device mining metrics over time (Detailed Reference)",
"content": "# aggregate-device-metrics\n\n**Description:** Aggregate and analyze device mining metrics over time\n**Category:** mining\n\n**Example Use:**\n```json\nUse aggregate device metrics for aggregate and analyze device mining metrics over time\n```\n\n**Usage Analysis:**\n\n**Available Actions:**\n- `aggregate`\n- `metrics`\n- `hourly`\n- `daily`\n\n**Detected Parameters:**\n- `action`\n- `...payload`\n\n\n**Source Code Analysis:**\nScanned 10421 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Use aggregate device metrics for aggregate and analyze device mining metrics over time",
"detected_actions": [
"aggregate",
"metrics",
"hourly",
"daily"
],
"detected_params": [
"action",
"...payload"
]
}
},
{
"name": "api-key-health-monitor",
"type": "tool",
"description": "Monitor health and usage of API keys across services (Detailed Reference)",
"content": "# api-key-health-monitor\n\n**Description:** Monitor health and usage of API keys across services\n**Category:** monitoring\n\n**Example Use:**\n```json\nUse api key health monitor for monitor health and usage of api keys across services\n```\n\n**Usage Analysis:**\n\n**Detected Parameters:**\n- `session_credentials`\n\n\n**Source Code Analysis:**\nScanned 18444 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Use api key health monitor for monitor health and usage of api keys across services",
"detected_actions": [],
"detected_params": [
"session_credentials"
]
}
},
{
"name": "check-frontend-health",
"type": "tool",
"description": "Health check for frontend application status (Detailed Reference)",
"content": "# check-frontend-health\n\n**Description:** Health check for frontend application status\n**Category:** monitoring\n\n**Example Use:**\n```json\nUse check frontend health for health check for frontend application status\n```\n\n**Usage Analysis:**\n\n\n**Source Code Analysis:**\nScanned 3152 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Use check frontend health for health check for frontend application status",
"detected_actions": [],
"detected_params": []
}
},
{
"name": "cleanup-duplicate-tasks",
"type": "tool",
"description": "Remove duplicate tasks from the task management system (Detailed Reference)",
"content": "# cleanup-duplicate-tasks\n\n**Description:** Remove duplicate tasks from the task management system\n**Category:** task-management\n\n**Example Use:**\n```json\nUse cleanup duplicate tasks for remove duplicate tasks from the task management system\n```\n\n**Usage Analysis:**\n\n\n**Source Code Analysis:**\nScanned 4259 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Use cleanup duplicate tasks for remove duplicate tasks from the task management system",
"detected_actions": [],
"detected_params": []
}
},
{
"name": "code-monitor-daemon",
"type": "tool",
"description": "Continuous monitoring daemon for code execution and errors (Detailed Reference)",
"content": "# code-monitor-daemon\n\n**Description:** Continuous monitoring daemon for code execution and errors\n**Category:** code-execution\n\n**Example Use:**\n```json\nUse code monitor daemon for continuous monitoring daemon for code execution and errors\n```\n\n**Usage Analysis:**\n\n**Available Actions:**\n- `missing_module`\n- `syntax_error`\n- `undefined_variable`\n- `network_access`\n- `timeout`\n\n\n**Source Code Analysis:**\nScanned 12663 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Use code monitor daemon for continuous monitoring daemon for code execution and errors",
"detected_actions": [
"missing_module",
"syntax_error",
"undefined_variable",
"network_access",
"timeout"
],
"detected_params": []
}
},
{
"name": "community-spotlight-post",
"type": "tool",
"description": "Generate and post community spotlight content (Detailed Reference)",
"content": "# community-spotlight-post\n\n**Description:** Generate and post community spotlight content\n**Category:** autonomous\n\n**Example Use:**\n```json\nUse community spotlight post for generate and post community spotlight content\n```\n\n**Usage Analysis:**\n\n\n**Source Code Analysis:**\nScanned 6084 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Use community spotlight post for generate and post community spotlight content",
"detected_actions": [],
"detected_params": []
}
},
{
"name": "conversation-access",
"type": "tool",
"description": "Manage conversation access and permissions (Detailed Reference)",
"content": "# conversation-access\n\n**Description:** Manage conversation access and permissions\n**Category:** ecosystem\n\n**Example Use:**\n```json\nUse conversation access for manage conversation access and permissions\n```\n\n**Usage Analysis:**\n\n**Available Actions:**\n- `get_session`\n- `create_session`\n- `get_messages`\n- `get_summaries`\n- `add_message`\n- `update_session`\n\n\n**Source Code Analysis:**\nScanned 11841 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Use conversation access for manage conversation access and permissions",
"detected_actions": [
"get_session",
"create_session",
"get_messages",
"get_summaries",
"add_message",
"update_session"
],
"detected_params": []
}
},
{
"name": "daily-discussion-post",
"type": "tool",
"description": "Generate and post daily discussion topics (Detailed Reference)",
"content": "# daily-discussion-post\n\n**Description:** Generate and post daily discussion topics\n**Category:** autonomous\n\n**Example Use:**\n```json\nUse daily discussion post for generate and post daily discussion topics\n```\n\n**Usage Analysis:**\n\n\n**Source Code Analysis:**\nScanned 14697 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Use daily discussion post for generate and post daily discussion topics",
"detected_actions": [],
"detected_params": []
}
},
{
"name": "deepseek-chat",
"type": "tool",
"description": "AI chat via DeepSeek model (Detailed Reference)",
"content": "# deepseek-chat\n\n**Description:** AI chat via DeepSeek model\n**Category:** ai\n\n**Example Use:**\n```json\nUse deepseek chat for ai chat via deepseek model\n```\n\n**Usage Analysis:**\n\n**Detected Parameters:**\n- `message`\n- `messages`\n- `conversationHistory`\n- `userContext`\n- `councilMode`\n\n\n**Source Code Analysis:**\nScanned 4177 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Use deepseek chat for ai chat via deepseek model",
"detected_actions": [],
"detected_params": [
"message",
"messages",
"conversationHistory",
"userContext",
"councilMode"
]
}
},
{
"name": "ecosystem-monitor",
"type": "tool",
"description": "Monitor entire XMRT Vercel ecosystem health (xmrt-io, xmrt-ecosystem, xmrt-dao-ecosystem) (Detailed Reference)",
"content": "# ecosystem-monitor\n\n**Description:** Monitor entire XMRT Vercel ecosystem health (xmrt-io, xmrt-ecosystem, xmrt-dao-ecosystem)\n**Category:** monitoring\n\n**Example Use:**\n```json\nMonitor all Vercel services health, check ecosystem performance, track deployment status\n```\n\n**Usage Analysis:**\n\n**Detected Parameters:**\n- `generate_tasks`\n\n\n**Source Code Analysis:**\nScanned 21235 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Monitor all Vercel services health, check ecosystem performance, track deployment status",
"detected_actions": [],
"detected_params": [
"generate_tasks"
]
}
},
{
"name": "eliza-python-runtime",
"type": "tool",
"description": "Python runtime environment for Eliza agent (Detailed Reference)",
"content": "# eliza-python-runtime\n\n**Description:** Python runtime environment for Eliza agent\n**Category:** code-execution\n\n**Example Use:**\n```json\nUse eliza python runtime for python runtime environment for eliza agent\n```\n\n**Usage Analysis:**\n\n**Detected Parameters:**\n- `code`\n- `purpose = ''`\n- `source = 'eliza'`\n- `agent_id = null`\n- `task_id = null`\n- `timeout_ms = 30000`\n\n\n**Source Code Analysis:**\nScanned 5049 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Use eliza python runtime for python runtime environment for eliza agent",
"detected_actions": [],
"detected_params": [
"code",
"purpose = ''",
"source = 'eliza'",
"agent_id = null",
"task_id = null",
"timeout_ms = 30000"
]
}
},
{
"name": "enhanced-learning",
"type": "tool",
"description": "Advanced machine learning and pattern recognition (Detailed Reference)",
"content": "# enhanced-learning\n\n**Description:** Advanced machine learning and pattern recognition\n**Category:** knowledge\n\n**Example Use:**\n```json\nUse enhanced learning for advanced machine learning and pattern recognition\n```\n\n**Usage Analysis:**\n\n\n**Source Code Analysis:**\nScanned 10702 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Use enhanced learning for advanced machine learning and pattern recognition",
"detected_actions": [],
"detected_params": []
}
},
{
"name": "evening-summary-post",
"type": "tool",
"description": "Generate and post evening summary reports (Detailed Reference)",
"content": "# evening-summary-post\n\n**Description:** Generate and post evening summary reports\n**Category:** autonomous\n\n**Example Use:**\n```json\nUse evening summary post for generate and post evening summary reports\n```\n\n**Usage Analysis:**\n\n\n**Source Code Analysis:**\nScanned 12901 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Use evening summary post for generate and post evening summary reports",
"detected_actions": [],
"detected_params": []
}
},
{
"name": "execute-scheduled-actions",
"type": "tool",
"description": "Execute scheduled tasks and actions (Detailed Reference)",
"content": "# execute-scheduled-actions\n\n**Description:** Execute scheduled tasks and actions\n**Category:** ecosystem\n\n**Example Use:**\n```json\nUse execute scheduled actions for execute scheduled tasks and actions\n```\n\n**Usage Analysis:**\n\n\n**Source Code Analysis:**\nScanned 5055 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Use execute scheduled actions for execute scheduled tasks and actions",
"detected_actions": [],
"detected_params": []
}
},
{
"name": "extract-knowledge",
"type": "tool",
"description": "Extract and structure knowledge from conversations (Detailed Reference)",
"content": "# extract-knowledge\n\n**Description:** Extract and structure knowledge from conversations\n**Category:** knowledge\n\n**Example Use:**\n```json\nUse extract knowledge for extract and structure knowledge from conversations\n```\n\n**Usage Analysis:**\n\n**Detected Parameters:**\n- `message_id`\n- `content`\n- `session_id`\n\n\n**Source Code Analysis:**\nScanned 5911 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Use extract knowledge for extract and structure knowledge from conversations",
"detected_actions": [],
"detected_params": [
"message_id",
"content",
"session_id"
]
}
},
{
"name": "fetch-auto-fix-results",
"type": "tool",
"description": "Retrieve results from autonomous code fixing (Detailed Reference)",
"content": "# fetch-auto-fix-results\n\n**Description:** Retrieve results from autonomous code fixing\n**Category:** ecosystem\n\n**Example Use:**\n```json\nUse fetch auto fix results for retrieve results from autonomous code fixing\n```\n\n**Usage Analysis:**\n\n**Detected Parameters:**\n- `original_execution_id`\n\n\n**Source Code Analysis:**\nScanned 3491 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Use fetch auto fix results for retrieve results from autonomous code fixing",
"detected_actions": [],
"detected_params": [
"original_execution_id"
]
}
},
{
"name": "gemini-chat",
"type": "tool",
"description": "AI chat via Google Gemini model (Detailed Reference)",
"content": "# gemini-chat\n\n**Description:** AI chat via Google Gemini model\n**Category:** ai\n\n**Example Use:**\n```json\nUse gemini chat for ai chat via google gemini model\n```\n\n**Usage Analysis:**\n\n**Detected Parameters:**\n- `message`\n- `messages`\n- `conversationHistory`\n- `userContext`\n- `councilMode`\n\n\n**Source Code Analysis:**\nScanned 4083 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Use gemini chat for ai chat via google gemini model",
"detected_actions": [],
"detected_params": [
"message",
"messages",
"conversationHistory",
"userContext",
"councilMode"
]
}
},
{
"name": "get-code-execution-lessons",
"type": "tool",
"description": "Retrieve lessons learned from code executions (Detailed Reference)",
"content": "# get-code-execution-lessons\n\n**Description:** Retrieve lessons learned from code executions\n**Category:** code-execution\n\n**Example Use:**\n```json\nUse get code execution lessons for retrieve lessons learned from code executions\n```\n\n**Usage Analysis:**\n\n**Detected Parameters:**\n- `limit = 20`\n- `include_all_functions = false`\n- `hours_back = 168`\n\n\n**Source Code Analysis:**\nScanned 9284 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Use get code execution lessons for retrieve lessons learned from code executions",
"detected_actions": [],
"detected_params": [
"limit = 20",
"include_all_functions = false",
"hours_back = 168"
]
}
},
{
"name": "get-embedding",
"type": "tool",
"description": "Generate vector embeddings for text (Detailed Reference)",
"content": "# get-embedding\n\n**Description:** Generate vector embeddings for text\n**Category:** knowledge\n\n**Example Use:**\n```json\nUse get embedding for generate vector embeddings for text\n```\n\n**Usage Analysis:**\n\n**Detected Parameters:**\n- `content`\n\n\n**Source Code Analysis:**\nScanned 5560 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Use get embedding for generate vector embeddings for text",
"detected_actions": [],
"detected_params": [
"content"
]
}
},
{
"name": "get-lovable-key",
"type": "tool",
"description": "Retrieve Lovable API key (Detailed Reference)",
"content": "# get-lovable-key\n\n**Description:** Retrieve Lovable API key\n**Category:** ai\n\n**Example Use:**\n```json\nUse get lovable key for retrieve lovable api key\n```\n\n**Usage Analysis:**\n\n\n**Source Code Analysis:**\nScanned 1245 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Use get lovable key for retrieve lovable api key",
"detected_actions": [],
"detected_params": []
}
},
{
"name": "issue-engagement-command",
"type": "tool",
"description": "Engage with GitHub issues via commands (Detailed Reference)",
"content": "# issue-engagement-command\n\n**Description:** Engage with GitHub issues via commands\n**Category:** ecosystem\n\n**Example Use:**\n```json\nUse issue engagement command for engage with github issues via commands\n```\n\n**Usage Analysis:**\n\n**Available Actions:**\n- `command`\n- `pending`\n- `acknowledge`\n- `complete`\n\n**Detected Parameters:**\n- `action`\n- `...payload`\n\n\n**Source Code Analysis:**\nScanned 5658 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Use issue engagement command for engage with github issues via commands",
"detected_actions": [
"command",
"pending",
"acknowledge",
"complete"
],
"detected_params": [
"action",
"...payload"
]
}
},
{
"name": "kimi-chat",
"type": "tool",
"description": "AI chat via Kimi model (Detailed Reference)",
"content": "# kimi-chat\n\n**Description:** AI chat via Kimi model\n**Category:** ai\n\n**Example Use:**\n```json\nUse kimi chat for ai chat via kimi model\n```\n\n**Usage Analysis:**\n\n**Detected Parameters:**\n- `messages`\n- `options`\n- `googleCloudOperation`\n- `service`\n- `operation`\n- `params`\n- `videoGeneration`\n- `prompt`\n- `model`\n- `gifSearch`\n- `query`\n\n\n**Source Code Analysis:**\nScanned 16657 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Use kimi chat for ai chat via kimi model",
"detected_actions": [],
"detected_params": [
"messages",
"options",
"googleCloudOperation",
"service",
"operation",
"params",
"videoGeneration",
"prompt",
"model",
"gifSearch",
"query"
]
}
},
{
"name": "list-available-functions",
"type": "tool",
"description": "List all available edge functions (Detailed Reference)",
"content": "# list-available-functions\n\n**Description:** List all available edge functions\n**Category:** ecosystem\n\n**Example Use:**\n```json\nUse list available functions for list all available edge functions\n```\n\n**Usage Analysis:**\n\n\n**Source Code Analysis:**\nScanned 1907 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Use list available functions for list all available edge functions",
"detected_actions": [],
"detected_params": []
}
},
{
"name": "monitor-device-connections",
"type": "tool",
"description": "Monitor mining device connections and status (Detailed Reference)",
"content": "# monitor-device-connections\n\n**Description:** Monitor mining device connections and status\n**Category:** mining\n\n**Example Use:**\n```json\nUse monitor device connections for monitor mining device connections and status\n```\n\n**Usage Analysis:**\n\n**Available Actions:**\n- `connect`\n- `disconnect`\n- `heartbeat`\n- `status`\n- `list_active`\n- `generate_claim_code`\n- `verify_claim_code`\n- `auto_pair_by_ip`\n- `list_user_devices`\n- `unclaim_device`\n\n**Detected Parameters:**\n- `data`\n\n\n**Source Code Analysis:**\nScanned 27517 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Use monitor device connections for monitor mining device connections and status",
"detected_actions": [
"connect",
"disconnect",
"heartbeat",
"status",
"list_active",
"generate_claim_code",
"verify_claim_code",
"auto_pair_by_ip",
"list_user_devices",
"unclaim_device"
],
"detected_params": [
"data"
]
}
},
{
"name": "morning-discussion-post",
"type": "tool",
"description": "Generate and post morning discussion topics (Detailed Reference)",
"content": "# morning-discussion-post\n\n**Description:** Generate and post morning discussion topics\n**Category:** autonomous\n\n**Example Use:**\n```json\nUse morning discussion post for generate and post morning discussion topics\n```\n\n**Usage Analysis:**\n\n\n**Source Code Analysis:**\nScanned 12042 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Use morning discussion post for generate and post morning discussion topics",
"detected_actions": [],
"detected_params": []
}
},
{
"name": "nlg-generator",
"type": "tool",
"description": "Natural language generation for reports and content (Detailed Reference)",
"content": "# nlg-generator\n\n**Description:** Natural language generation for reports and content\n**Category:** ecosystem\n\n**Example Use:**\n```json\nUse nlg generator for natural language generation for reports and content\n```\n\n**Usage Analysis:**\n\n**Detected Parameters:**\n- `content_type`\n- `audience_type = 'community'`\n- `source_data`\n- `format = 'markdown'`\n- `title`\n- `additional_context`\n\n\n**Source Code Analysis:**\nScanned 5439 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Use nlg generator for natural language generation for reports and content",
"detected_actions": [],
"detected_params": [
"content_type",
"audience_type = 'community'",
"source_data",
"format = 'markdown'",
"title",
"additional_context"
]
}
},
{
"name": "openai-chat",
"type": "tool",
"description": "AI chat via OpenAI models (Detailed Reference)",
"content": "# openai-chat\n\n**Description:** AI chat via OpenAI models\n**Category:** ai\n\n**Example Use:**\n```json\nUse openai chat for ai chat via openai models\n```\n\n**Usage Analysis:**\n\n**Detected Parameters:**\n- `message`\n- `messages`\n- `conversationHistory`\n- `userContext`\n- `councilMode`\n\n\n**Source Code Analysis:**\nScanned 4122 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Use openai chat for ai chat via openai models",
"detected_actions": [],
"detected_params": [
"message",
"messages",
"conversationHistory",
"userContext",
"councilMode"
]
}
},
{
"name": "openai-tts",
"type": "tool",
"description": "Text-to-speech via OpenAI (Detailed Reference)",
"content": "# openai-tts\n\n**Description:** Text-to-speech via OpenAI\n**Category:** ai\n\n**Example Use:**\n```json\nUse openai tts for text-to-speech via openai\n```\n\n**Usage Analysis:**\n\n**Detected Parameters:**\n- `text`\n- `voice = 'alloy'`\n- `speed = 1.0`\n\n\n**Source Code Analysis:**\nScanned 3116 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Use openai tts for text-to-speech via openai",
"detected_actions": [],
"detected_params": [
"text",
"voice = 'alloy'",
"speed = 1.0"
]
}
},
{
"name": "uspto-patent-mcp",
"type": "tool",
"description": "MCP server for USPTO patent and trademark database access. Search 11M+ patents, retrieve full text, download PDFs, analyze portfolios using advanced CQL queries (Detailed Reference)",
"content": "# uspto-patent-mcp\n\n**Description:** MCP server for USPTO patent and trademark database access. Search 11M+ patents, retrieve full text, download PDFs, analyze portfolios using advanced CQL queries\n**Category:** research\n\n**Example Use:**\n```json\nSearch patents: {\n```\n\n**Usage Analysis:**\n\n**Available Actions:**\n- `initialize`\n- `tools/list`\n- `tools/call`\n- `resources/list`\n- `resources/read`\n- `prompts/list`\n- `prompts/get`\n- `ping`\n- `search_patents`\n- `get_patent_fulltext`\n- `download_patent_pdf`\n- `search_by_inventor`\n- `search_by_assignee`\n- `search_by_classification`\n- `patent_search_assistant`\n- `prior_art_search`\n- `competitive_analysis`\n- `technology_landscape`\n\n**Detected Parameters:**\n- `method`\n- `params`\n\n\n**Source Code Analysis:**\nScanned 18164 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Search patents: {",
"detected_actions": [
"initialize",
"tools/list",
"tools/call",
"resources/list",
"resources/read",
"prompts/list",
"prompts/get",
"ping",
"search_patents",
"get_patent_fulltext",
"download_patent_pdf",
"search_by_inventor",
"search_by_assignee",
"search_by_classification",
"patent_search_assistant",
"prior_art_search",
"competitive_analysis",
"technology_landscape"
],
"detected_params": [
"method",
"params"
]
}
},
{
"name": "predictive-analytics",
"type": "tool",
"description": "Predictive analytics for mining and system metrics (Detailed Reference)",
"content": "# predictive-analytics\n\n**Description:** Predictive analytics for mining and system metrics\n**Category:** ecosystem\n\n**Example Use:**\n```json\nUse predictive analytics for predictive analytics for mining and system metrics\n```\n\n**Usage Analysis:**\n\n**Detected Parameters:**\n- `action`\n- `data_source`\n- `custom_data`\n\n\n**Source Code Analysis:**\nScanned 15974 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Use predictive analytics for predictive analytics for mining and system metrics",
"detected_actions": [],
"detected_params": [
"action",
"data_source",
"custom_data"
]
}
},
{
"name": "process-contributor-reward",
"type": "tool",
"description": "Process and distribute contributor rewards (Detailed Reference)",
"content": "# process-contributor-reward\n\n**Description:** Process and distribute contributor rewards\n**Category:** ecosystem\n\n**Example Use:**\n```json\nUse process contributor reward for process and distribute contributor rewards\n```\n\n**Usage Analysis:**\n\n**Detected Parameters:**\n- `contribution_id`\n\n\n**Source Code Analysis:**\nScanned 3865 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Use process contributor reward for process and distribute contributor rewards",
"detected_actions": [],
"detected_params": [
"contribution_id"
]
}
},
{
"name": "progress-update-post",
"type": "tool",
"description": "Generate and post progress updates (Detailed Reference)",
"content": "# progress-update-post\n\n**Description:** Generate and post progress updates\n**Category:** autonomous\n\n**Example Use:**\n```json\nUse progress update post for generate and post progress updates\n```\n\n**Usage Analysis:**\n\n\n**Source Code Analysis:**\nScanned 11237 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Use progress update post for generate and post progress updates",
"detected_actions": [],
"detected_params": []
}
},
{
"name": "prometheus-metrics",
"type": "tool",
"description": "Export Prometheus-compatible metrics (Detailed Reference)",
"content": "# prometheus-metrics\n\n**Description:** Export Prometheus-compatible metrics\n**Category:** mining\n\n**Example Use:**\n```json\nUse prometheus metrics for export prometheus-compatible metrics\n```\n\n**Usage Analysis:**\n\n\n**Source Code Analysis:**\nScanned 11100 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Use prometheus metrics for export prometheus-compatible metrics",
"detected_actions": [],
"detected_params": []
}
},
{
"name": "python-db-bridge",
"type": "tool",
"description": "Bridge for Python code to access database (Detailed Reference)",
"content": "# python-db-bridge\n\n**Description:** Bridge for Python code to access database\n**Category:** code-execution\n\n**Example Use:**\n```json\nUse python db bridge for bridge for python code to access database\n```\n\n**Usage Analysis:**\n\n**Available Actions:**\n- `select`\n- `insert`\n- `update`\n- `upsert`\n- `delete`\n- `count`\n- `gt`\n- `gte`\n- `lt`\n- `lte`\n- `neq`\n- `in`\n- `like`\n- `ilike`\n- `is`\n- `contains`\n- `containedBy`\n- `overlaps`\n- `textSearch`\n- `system_info`\n- `list_cron_jobs`\n- `get_cron_status`\n- `list_edge_functions`\n- `get_function_logs`\n- `call_rpc`\n- `get_schema`\n\n**Detected Parameters:**\n- `table`\n- `operation`\n- `filters`\n- `data`\n- `limit`\n- `order`\n- `columns`\n- `function_name`\n- `args`\n\n\n**Source Code Analysis:**\nScanned 18419 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Use python db bridge for bridge for python code to access database",
"detected_actions": [
"select",
"insert",
"update",
"upsert",
"delete",
"count",
"gt",
"gte",
"lt",
"lte",
"neq",
"in",
"like",
"ilike",
"is",
"contains",
"containedBy",
"overlaps",
"textSearch",
"system_info",
"list_cron_jobs",
"get_cron_status",
"list_edge_functions",
"get_function_logs",
"call_rpc",
"get_schema"
],
"detected_params": [
"table",
"operation",
"filters",
"data",
"limit",
"order",
"columns",
"function_name",
"args"
]
}
},
{
"name": "python-network-proxy",
"type": "tool",
"description": "Network proxy for Python code execution (Detailed Reference)",
"content": "# python-network-proxy\n\n**Description:** Network proxy for Python code execution\n**Category:** code-execution\n\n**Example Use:**\n```json\nUse python network proxy for network proxy for python code execution\n```\n\n**Usage Analysis:**\n\n\n**Source Code Analysis:**\nScanned 2826 bytes of code to extract usage patterns.",
"confidence_score": 0.95,
"metadata": {
"source": "auto_generated",
"registry_example": "Use python network proxy for network proxy for python code execution",
"detected_actions": [],
"detected_params": []
}
},
{