OpsMill's Claude Marketplace
npx claudepluginhub opsmill/claude-marketplaceA Claude Code plugin to support developing on top of Infrahub. Includes skills for schemas, objects, checks, generators, transforms, menus, and data analysis.
Share bugs, ideas, or general feedback.
This marketplace distributes OpsMill-related Claude Code plugins. Plugins are hosted in their own repositories and referenced here via the marketplace manifest.
In Claude Code, run:
/plugin marketplace add opsmill/claude-marketplace
Once the marketplace is added, install plugins from it:
/plugin install infrahub@opsmill
/plugin marketplace list # List configured marketplaces
/plugin marketplace update # Update marketplace plugin listings
/plugin marketplace remove # Remove a marketplace
claude-marketplace/
├── .claude-plugin/
│ └── marketplace.json # Marketplace manifest listing all plugins
└── README.md
The marketplace manifest (.claude-plugin/marketplace.json) references external plugin repositories. When users install from this marketplace, Claude Code fetches plugins directly from their source repositories.
To add a new plugin to this marketplace:
Create a separate repository for your plugin with the required .claude-plugin/plugin.json manifest. See the Claude Code Plugins Documentation for plugin structure details.
Edit .claude-plugin/marketplace.json and add an entry to the plugins array:
{
"name": "your-plugin-name",
"source": {
"source": "github",
"repo": "opsmill/your-plugin-repo",
"ref": "main"
},
"description": "Brief description of what your plugin does."
}
| Field | Required | Description |
|---|---|---|
name | Yes | Unique identifier for the plugin |
source.source | Yes | Source type (use "github") |
source.repo | Yes | GitHub repository in owner/repo format |
source.ref | Yes | Branch, tag, or commit to use (e.g., "main", "v1.0.0") |
description | Yes | Short description of the plugin's purpose |
marketplace.json| Plugin | Repository | Description |
|---|---|---|
| infrahub | opsmill/infrahub-claude-plugin | Plugin to assist in developing on top of Infrahub |