Orion performance regression detection — config generation, Elasticsearch discovery, and analysis for OpenShift CPT benchmarks
A centralized marketplace of AI coding skills for the Cloud Bulldozer organization.
Skills are portable markdown instructions that work across Claude Code, Cursor, and any LLM provider (OpenAI, Gemini, Ollama, etc.). Install only what you need.
Browse the marketplace: cloud-bulldozer.github.io/org-skills
# Register the marketplace (one-time)
/plugin marketplace add cloud-bulldozer/org-skills
# Install a plugin
/plugin install orion@cb-skills
curl -fsSL https://raw.githubusercontent.com/cloud-bulldozer/org-skills/main/install-cursor.sh | bash
Skills are just markdown — read the file and pass it as a system prompt:
skill = open("orion/skills/orion-regression-analysis/SKILL.md").read()
# Pass as system prompt to any provider
This only refreshes the catalog (what's available). To actually update an installed plugin to a newer version, you still need to reinstall it:
/plugin marketplace add cloud-bulldozer/org-skills
/plugin install orion@cb-skills
You can auto-sync the catalog on session start by adding a hook to .claude/settings.json:
{
"hooks": {
"SessionStart": [
{
"matcher": "",
"hooks": [
{
"type": "command",
"command": "/plugin marketplace add cloud-bulldozer/org-skills"
}
]
}
]
}
}
| Plugin | Skill | Description |
|---|---|---|
| orion | orion-regression-analysis | Performance regression detection for OpenShift CPT — Elasticsearch setup, metric discovery, config generation, and result analysis using Orion |
See PLUGINS.md for the full plugin directory.
org-skills/
├── .claude-plugin/marketplace.json # Marketplace registry
├── <plugin-name>/ # One directory per plugin
│ ├── .claude-plugin/plugin.json # Plugin metadata (name, version)
│ └── skills/<skill-name>/ # One directory per skill
│ ├── SKILL.md # Skill definition (required)
│ ├── docs/ # Reference guides (optional)
│ ├── scripts/ # Utility scripts (optional)
│ └── assets/ # Templates, configs (optional)
├── skills/ # Flat symlinks for Cursor
├── images/ # Container image (Dockerfile, settings)
├── docs/ # Marketplace website (GitHub Pages)
└── install-cursor.sh # Cursor installer
A pre-configured container image is available with Claude Code and all plugins pre-installed. This is useful for CI/CD pipelines or headless execution.
docker build -t org-skills -f images/Dockerfile .
# Interactive
docker run -it \
-e ANTHROPIC_API_KEY="$ANTHROPIC_API_KEY" \
org-skills
# Non-interactive (headless)
docker run --rm \
-e ANTHROPIC_API_KEY="$ANTHROPIC_API_KEY" \
-v "$(pwd):/workspace" \
org-skills --print "Generate an Orion config for cluster-density-v2 on AWS"
For Vertex AI:
docker run --rm \
-e CLAUDE_CODE_USE_VERTEX=1 \
-e CLOUD_ML_REGION="us-east5" \
-e ANTHROPIC_VERTEX_PROJECT_ID="$PROJECT_ID" \
-v "$HOME/.config/gcloud:/home/claude/.config/gcloud:ro" \
-v "$(pwd):/workspace" \
org-skills --print "Generate an Orion config for node-density"
The container pre-registers the cb-skills marketplace and enables the orion plugin. See images/claude-settings.json for the configuration.
See CONTRIBUTING.md for guidelines on adding skills and plugins.
Apache-2.0
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
npx claudepluginhub cloud-bulldozer/org-skills --plugin orionAutomatically create and apply tuned profile
Editorial "Observability & Monitoring" bundle for Claude Code from Antigravity Awesome Skills.
Detect and resolve performance bottlenecks
No description provided.
Ultra-compressed communication mode. Cuts ~75% of tokens while keeping full technical accuracy by speaking like a caveman.
Frontend design skill for UI/UX implementation