-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
54 lines (54 loc) · 1.51 KB
/
Copy pathplugin.json
File metadata and controls
54 lines (54 loc) · 1.51 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
{
"name": "capacium",
"version": "0.2.0",
"description": "Capacium capability marketplace — search, install, and manage AI agent capabilities directly from Claude Code",
"author": "Capacium",
"repository": "https://github.com/Capacium/claude-code-capacium",
"entry": "./capacium-marketplace.md",
"mcpServers": {
"capacium": {
"command": "npx",
"args": ["-y", "@capacium/mcp-server-capacium"],
"env": {
"CAPACIUM_API_URL": "https://api.capacium.xyz"
}
}
},
"slashCommands": [
{
"name": "/capacium-search",
"description": "Search the Capacium capability marketplace",
"argument": "query"
},
{
"name": "/capacium-install",
"description": "Install a Capacium capability",
"argument": "capability-name"
},
{
"name": "/capacium-status",
"description": "Show Capacium connection status and installed capabilities"
},
{
"name": "/capacium-lifecycle",
"description": "Capacium lifecycle management guide — verify, update, troubleshoot"
}
],
"hooks": {
"PostToolUse": [
{
"matcher": "Write|Edit",
"hooks": [
{
"type": "command",
"command": "node -e \"console.log('Capacium: file changed. Consider running /capacium-search to check for relevant capabilities.')\""
},
{
"type": "command",
"command": "node $PLUGIN_DIR/capacium-hook.js $HOOK_PAYLOAD"
}
]
}
]
}
}