Central registry for AI skills and plugins developed across the opendatahub-io organization.
This registry serves as a Claude Code marketplace with native plugin management, and as a skill catalog for discovering plugins to use with other agent harnesses.
This registry integrates natively as a Claude Code marketplace:
# Add the marketplace
claude plugin marketplace add opendatahub-io/skills-registry
# Browse available plugins
/plugin
# Install a plugin
/plugin install rfe-creator@opendatahub-skills
# Update plugins
/plugin updateAdd to your project's .claude/settings.json to auto-enable for all developers:
{
"extraKnownMarketplaces": {
"opendatahub-skills": {
"source": { "source": "github", "repo": "opendatahub-io/skills-registry" }
}
},
"enabledPlugins": {
"rfe-creator@opendatahub-skills": true
}
}Other platforms (Cursor, Gemini CLI, Codex, OpenCode) do not have a marketplace aggregation mechanism. Install plugins directly from their source repositories instead:
gemini extensions install https://github.com/n1hility/assess-rfegit clone https://github.com/n1hility/assess-rfe ~/.codex/assess-rfe
mkdir -p ~/.agents/skills
ln -s ~/.codex/assess-rfe/skills ~/.agents/skills/assess-rfeAdd to your opencode.json:
{
"plugin": ["assess-rfe@git+https://github.com/n1hility/assess-rfe.git"]
}/add-plugin https://github.com/n1hility/assess-rfe
Replace the repo URL with the plugin you want to install. See catalog.md for the full list of plugins and their source repositories.
Note: Multi-harness support depends on each plugin repo having the appropriate configuration files (
.codex/,.opencode/,gemini-extension.json,.cursor-plugin/). Not all plugins may support all platforms. Check the plugin's repository for platform-specific instructions.
See catalog.md for the full list of plugins, skills, and install commands.
| File | Purpose |
|---|---|
registry.yaml |
Source of truth for all plugins and skills |
.claude-plugin/marketplace.json |
Generated Claude Code marketplace manifest |
catalog.md |
Auto-generated human-readable catalog |
schema/registry.schema.json |
JSON Schema for validation |
scripts/ |
Sync, validation, and automation scripts |
ARCHITECTURE.md |
Architecture and design documentation |
See CONTRIBUTING.md for instructions on adding your plugin to this registry.
Apache License 2.0 — see LICENSE.