From ea2e360cb546746ddf0dbec1c1fd4eb299d66563 Mon Sep 17 00:00:00 2001 From: Ishaan Jaffer Date: Mon, 19 Jan 2026 19:49:51 -0800 Subject: [PATCH] docs --- .../claude_code_plugin_marketplace.md | 46 +------------------ 1 file changed, 1 insertion(+), 45 deletions(-) diff --git a/docs/my-website/docs/tutorials/claude_code_plugin_marketplace.md b/docs/my-website/docs/tutorials/claude_code_plugin_marketplace.md index 9b3530c3cb..946fb47d92 100644 --- a/docs/my-website/docs/tutorials/claude_code_plugin_marketplace.md +++ b/docs/my-website/docs/tutorials/claude_code_plugin_marketplace.md @@ -4,51 +4,7 @@ import TabItem from '@theme/TabItem'; # Claude Code Plugin Marketplace -Create a centralized plugin marketplace for your organization's Claude Code users. - -## Why Use a Plugin Marketplace? - -When running LiteLLM as your AI Gateway, you can provide a **central plugin marketplace** that enables: - -| Benefit | Description | -|---------|-------------| -| **Centralized Discovery** | Engineers across your company can browse and install approved plugins from a single source | -| **Governance & Control** | Admins control which plugins are available, ensuring security and compliance | -| **Easy Distribution** | Share internal tools, custom integrations, and approved third-party plugins organization-wide | -| **Version Management** | Track plugin versions and updates across your organization | -| **No Manual Setup** | Engineers install plugins with a single command instead of manually configuring each one | - -## How It Works - -``` -┌─────────────────────────────────────────────────────────────────────┐ -│ LiteLLM AI Gateway │ -│ │ -│ ┌─────────────────────────────────────────────────────────────┐ │ -│ │ Plugin Marketplace Registry │ │ -│ │ │ │ -│ │ /claude-code/marketplace.json │ │ -│ │ ├── internal-tools (GitHub: company/internal-tools) │ │ -│ │ ├── jira-integration (GitHub: company/jira-plugin) │ │ -│ │ └── code-review-helper (GitHub: company/review-plugin) │ │ -│ └─────────────────────────────────────────────────────────────┘ │ -└─────────────────────────────────────────────────────────────────────┘ - │ - │ Engineers install with: - │ claude plugin marketplace add - │ claude plugin install @litellm - ▼ -┌─────────────────────────────────────────────────────────────────────┐ -│ Engineer's Claude Code │ -│ │ -│ Installed Plugins: │ -│ ✓ internal-tools@litellm │ -│ ✓ jira-integration@litellm │ -│ ✓ code-review-helper@litellm │ -└─────────────────────────────────────────────────────────────────────┘ -``` - -LiteLLM stores plugin **metadata and git source references** in its database. When engineers install plugins, Claude Code clones directly from the git source (GitHub/GitLab/Bitbucket). +LiteLLM AI Gateway acts as a central registry for Claude Code plugins. Admins can govern which plugins are available across the organization, and engineers can discover and install approved plugins from a single source. ## Prerequisites