Files
opencode/plugins/index.json
T
Artur Do Lago a07e70e86c feat(plugin): add plugin marketplace with CLI commands
Add plugin discovery and management system:
- Registry index (plugins/index.json) with curated plugins
- Registry client with caching and fallback
- Plugin manager for install/remove operations
- CLI commands: plugin search, list, install, remove, info

Registry hosted as static JSON, uses existing npm/Bun infrastructure.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-20 12:39:20 +01:00

43 lines
1.4 KiB
JSON

{
"version": 1,
"plugins": [
{
"name": "opencode-copilot-auth",
"displayName": "GitHub Copilot Auth",
"description": "Authenticate with GitHub Copilot for free model access",
"npm": "opencode-copilot-auth",
"version": "0.0.11",
"category": "auth",
"tags": ["auth", "github", "copilot", "free"],
"capabilities": ["auth"],
"author": "opencode-ai",
"homepage": "https://github.com/opencode-ai/opencode"
},
{
"name": "opencode-anthropic-auth",
"displayName": "Anthropic OAuth",
"description": "OAuth authentication for Anthropic Claude models",
"npm": "opencode-anthropic-auth",
"version": "0.0.8",
"category": "auth",
"tags": ["auth", "anthropic", "oauth", "claude"],
"capabilities": ["auth"],
"author": "opencode-ai",
"homepage": "https://github.com/opencode-ai/opencode"
},
{
"name": "opencode-google-auth",
"displayName": "Google Antigravity",
"description": "OAuth authentication for Google Gemini models via Antigravity proxy",
"npm": "opencode-google-auth",
"version": "0.0.5",
"category": "auth",
"tags": ["auth", "google", "gemini", "antigravity", "free"],
"capabilities": ["auth"],
"author": "opencode-ai",
"homepage": "https://github.com/opencode-ai/opencode"
}
],
"categories": ["auth", "tools", "personas", "integrations"]
}