-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopencode.plugin.json
More file actions
48 lines (48 loc) · 1.58 KB
/
opencode.plugin.json
File metadata and controls
48 lines (48 loc) · 1.58 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
{
"name": "@sulesky/opencode-plugger",
"version": "0.1.0",
"description": "Claude Code marketplace ecosystem for OpenCode — discover, search and install plugins from Claude Code marketplaces using .claude-plugin/plugin.json directly.",
"author": {
"name": "plugger-open-code"
},
"license": "MIT",
"keywords": ["marketplace", "claude-code", "plugins", "discovery"],
"commands": [
{
"name": "/marketplace-add",
"description": "Add a Claude Code marketplace (GitHub repo or Git URL)",
"handler": "dist/commands/marketplace.js",
"export": "marketplaceAdd"
},
{
"name": "/marketplace-list",
"description": "List all added marketplaces",
"handler": "dist/commands/marketplace.js",
"export": "marketplaceList"
},
{
"name": "/marketplace-remove",
"description": "Remove a marketplace",
"handler": "dist/commands/marketplace.js",
"export": "marketplaceRemove"
},
{
"name": "/plugin-marketplace-search",
"description": "Search for plugins across all Claude Code marketplaces",
"handler": "dist/commands/plugin-market.js",
"export": "pluginMarketplaceSearch"
},
{
"name": "/plugin-marketplace-install",
"description": "Install a plugin from a marketplace",
"handler": "dist/commands/plugin-market.js",
"export": "pluginMarketplaceInstall"
},
{
"name": "/plugin-marketplace-list",
"description": "List plugins in a marketplace",
"handler": "dist/commands/plugin-market.js",
"export": "pluginMarketplaceList"
}
]
}