A Claude Code plugin marketplace for OpenShift and edge computing workflows.
Add this marketplace to Claude Code:
/plugin marketplace add openshift-eng/edge-tooling
Browse and install plugins:
/plugin
# Create a new plugin (interactive)
./marketplace new my-plugin
# Create with specific components
./marketplace new my-plugin --skill --agent
# Validate
./marketplace validate my-plugin
# Update marketplace catalog
./marketplace catalog-update
# List plugins
./marketplace listEnable tab completion for marketplace commands and plugin names:
Bash — add to ~/.bashrc:
source <(./marketplace completion bash)Zsh — add to ~/.zshrc:
source <(./marketplace completion zsh)If marketplace is installed globally (e.g. symlinked into $PATH), omit the ./ prefix.
Restart your shell or re-source the file to activate.
Plugins follow the Claude Code plugin format:
my-plugin/
├── .claude-plugin/
│ └── plugin.json # Plugin manifest (required)
├── skills/ # Skill definitions
│ └── my-plugin/
│ └── SKILL.md
├── hooks/ # Event hooks
│ └── hooks.json
├── agents/ # Agent definitions
│ └── my-plugin.md
├── .mcp.json # MCP server config
└── README.md # Documentation (required)
| Category | Description |
|---|---|
| cluster-ops | Cluster lifecycle, health, upgrades |
| debug | Troubleshooting and analysis |
| deploy | Deployment automation |
| network | Network diagnostics |
| operator | Operator development |
| ci-cd | CI/CD automation |
| util | General utilities |