Stats
Actions
Tags
From release-management
Add FBC support for new OCP version in Konflux release data - creates overlays, tenant config, and RPA entries.
How this skill is triggered — by the user, by Claude, or both
Slash command
/release-management:add-fbc-ocp-version <ocp-version> <min-submariner-version><ocp-version> <min-submariner-version>This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Adds FBC (File-Based Catalog) support for a new OCP version in Konflux release data.
Adds FBC (File-Based Catalog) support for a new OCP version in Konflux release data.
Usage:
/add-fbc-ocp-version 4.22 0.23
/add-fbc-ocp-version 4-22 0.23 # Hyphenated format also accepted
What it does:
Arguments: $ARGUMENTS
#!/bin/bash
set -euo pipefail
# Find git repository root
GIT_ROOT=$(git rev-parse --show-toplevel 2>/dev/null)
if [ -z "$GIT_ROOT" ]; then
echo "❌ ERROR: Not in a git repository"
exit 1
fi
# Verify orchestrator script exists
if [ ! -x "$GIT_ROOT/scripts/add-fbc-ocp-version.sh" ]; then
echo "❌ ERROR: Required orchestrator script not found"
echo "This skill requires: scripts/add-fbc-ocp-version.sh"
exit 1
fi
# Delegate to orchestrator (passes all arguments)
exec "$GIT_ROOT/scripts/add-fbc-ocp-version.sh" $ARGUMENTS
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub stolostron/submariner-release-management