with one click
add-release-notes
Add release notes from Jira, then per-issue agent review
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Add release notes from Jira, then per-issue agent review
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Add FBC support for new OCP version in Konflux release data - creates overlays, tenant config, and RPA entries.
Get FBC catalog URLs for QE sharing (Release CRs, snapshots, or prod index)
Update Konflux Dockerfile version labels across Submariner repositories
Update bundle component image SHAs from Konflux snapshots - automates SHA extraction, config file updates, bundle regeneration, and verification
Automate Konflux bundle setup on new release branches - configures Tekton pipelines for bundle builds including infrastructure, OLM annotations, hermetic builds, and multi-platform support
Automate Konflux component setup on new release branches - configures Tekton pipelines, Dockerfiles, RPM lockfiles, and hermetic builds for Submariner components. Supports 8 component types. Arguments are optional and order-independent.
| name | add-release-notes |
| description | Add release notes from Jira, then per-issue agent review |
| version | 3.0.0 |
| argument-hint | <version> [--stage-yaml PATH] |
| user-invocable | true |
| allowed-tools | Bash, Read |
Auto-apply ALL filtered Jira issues to stage YAML, then spawn per-issue agents to review each issue and remove any that don't belong.
Arguments: $ARGUMENTS
set -euo pipefail
REPO=$(git rev-parse --show-toplevel 2>/dev/null)
if [ -z "$REPO" ]; then
echo "❌ ERROR: Not in a git repository"
exit 1
fi
echo "Phases 1-4: Collect, filter, auto-apply, verify CVEs..."
bash "$REPO/scripts/add-release-notes.sh" $ARGUMENTS
echo ""
echo "Phase 5: Per-issue agent review..."
bash "$REPO/scripts/release-notes/review.sh" $ARGUMENTS
echo ""
echo "Done. Review removals: git log --oneline"
echo "Push when satisfied: git push"