Stats
Actions
Tags
From release-management
Add release notes from Jira, then per-issue agent review
How this skill is triggered — by the user, by Claude, or both
Slash command
/release-management:add-release-notes <version> [--stage-yaml PATH]<version> [--stage-yaml PATH]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
Auto-apply ALL filtered Jira issues to stage YAML, then spawn per-issue
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"
npx claudepluginhub stolostron/submariner-release-managementCreates bite-sized, testable implementation plans from specs or requirements, with file structure and task decomposition. Activates before coding multi-step tasks.