원클릭으로
add-release-notes
Add release notes from Jira, then per-issue agent review
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Add release notes from Jira, then per-issue agent review
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
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"