From release-management
Add release notes from Jira, then per-issue agent review
npx claudepluginhub stolostron/submariner-release-managementThis skill is limited to using the following tools:
Auto-apply ALL filtered Jira issues to stage YAML, then spawn per-issue
Mandates invoking relevant skills via tools before any response in coding sessions. Covers access, priorities, and adaptations for Claude Code, Copilot CLI, Gemini CLI.
Share bugs, ideas, or general feedback.
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"