skills/create-component-release/SKILL.md
Create component release (stage or prod) with comprehensive verification
npx skillsauth add stolostron/submariner-release-management create-component-releaseInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Automates Step 8 (stage) and Step 15 (prod) of the Submariner release workflow.
What it does:
Usage:
/create-component-release 0.22.1 # Stage (default)
/create-component-release 0.22.1 stage # Stage (explicit)
/create-component-release 0.22.1 prod # Prod (copies stage notes)
/create-component-release 0.22 # Auto-expands to 0.22.0
Prerequisites:
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/create-component-release.sh" ]; then
echo "❌ ERROR: Required orchestrator script not found"
echo "This skill requires: scripts/create-component-release.sh"
exit 1
fi
# Delegate to orchestrator (passes all arguments)
exec "$GIT_ROOT/scripts/create-component-release.sh" $ARGUMENTS
data-ai
Add FBC support for new OCP version in Konflux release data - creates overlays, tenant config, and RPA entries.
devops
Update Konflux Dockerfile version labels across Submariner repositories
tools
Get FBC catalog URLs for QE sharing (Release CRs, snapshots, or prod index)
tools
Update RPM lockfiles across Submariner repositories