-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
51 lines (51 loc) · 1.39 KB
/
Copy pathplugin.json
File metadata and controls
51 lines (51 loc) · 1.39 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
{
"name": "alex-act-ai-operations",
"version": "0.2.0",
"description": "Optional AI provider operations plugin for model discovery, explainable task planning, explicit consent, and execution through Foundry, Hugging Face, and ElevenLabs. Installs separately from the Alex ACT brain spine.",
"keywords": [
"alex-act",
"ai-operations",
"model-router",
"model-selection",
"provider-routing",
"hugging-face",
"elevenlabs",
"foundry",
"mcp"
],
"category": "ai-agents",
"author": {
"name": "Fabio Correa",
"url": "https://github.com/fabioc-aloha"
},
"license": "MIT",
"homepage": "https://github.com/fabioc-aloha/Alex_ACT_AI_Operations",
"repository": {
"type": "git",
"url": "https://github.com/fabioc-aloha/Alex_ACT_AI_Operations.git"
},
"skills": ".github/skills",
"commands": ".github/prompts",
"mcpServers": {
"aiops-huggingface": {
"type": "http",
"url": "https://huggingface.co/mcp?login"
},
"aiops-elevenlabs": {
"type": "stdio",
"command": "node",
"args": [
".github/skills/setup-ai-operations/scripts/runtime-launcher.mjs",
"elevenlabs"
],
"env": {
"ELEVENLABS_API_KEY": "${env:ELEVENLABS_API_KEY}",
"ELEVENLABS_MCP_OUTPUT_MODE": "resources"
}
},
"aiops-foundry": {
"type": "http",
"url": "https://mcp.ai.azure.com"
}
}
}