Agent skill
github-release-manager-1-coordinated-release-preparation
Sub-skill of github-release-manager: 1. Coordinated Release Preparation (+7).
Install this agent skill to your Project
npx add-skill https://github.com/vamseeachanta/workspace-hub/tree/main/.claude/skills/_archive/development/github/github-release-manager/1-coordinated-release-preparation
SKILL.md
1. Coordinated Release Preparation (+7)
1. Coordinated Release Preparation
// Initialize release management swarm
// Orchestrate release preparation
task: "Prepare release v1.0.72 with comprehensive testing and validation",
strategy: "sequential",
priority: "critical"
})
2. Create Release with gh CLI
# Create release branch
git checkout -b release/v1.0.72 main
# Get commits since last release
LAST_TAG=$(gh release list --limit 1 --json tagName -q '.[0].tagName')
COMMITS=$(gh api repos/owner/repo/compare/${LAST_TAG}...HEAD --jq '.commits[].commit.message')
# Generate changelog
echo "$COMMITS" > CHANGELOG_DRAFT.md
*See sub-skills for full details.*
## 3. Multi-Package Version Coordination
```bash
# Update package versions
cd ../ruv-swarm && npm version 1.0.12 --no-git-tag-version
# Run tests for all packages
npm test --workspaces
# Create coordinated release PR
gh pr create \
--title "Release v1.0.72: GitHub Integration and Swarm Enhancements" \
--head release/v1.0.72 \
--base main \
--body "## Release v1.0.72
## Package Updates
- **ruv-swarm**: v1.0.11 -> v1.0.12
## Changes
- GitHub workflow integration
- Enhanced swarm coordination
- Advanced MCP tools integration
## Validation
- [x] Unit tests passing
- [x] Integration tests: 89% success
- [x] Build verification successful"
4. Automated Release Validation
# Run comprehensive validation
npm install && npm test && npm run lint && npm run build
# Security audit
npm audit
# Create validation report
gh issue create \
--title "Release Validation: v1.0.72" \
*See sub-skills for full details.*
## 5. Batch Release Workflow
```javascript
[Single Message - Complete Release Management]:
// Initialize comprehensive release swarm
// Create release branch
Bash("git checkout -b release/v1.0.72 main")
// Run comprehensive validation
Bash("npm install && npm test && npm run lint && npm run build")
*See sub-skills for full details.*
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
gsd-complete-milestone
Archive completed milestone and prepare for next version
gsd-reapply-patches
Reapply local modifications after a GSD update
gsd-verify-work
Validate built features through conversational UAT
gsd-thread
Manage persistent context threads for cross-session work
clinical-trial-protocol
Generate clinical trial protocols for medical devices or drugs through a modular, waypoint-based architecture with research-only and full protocol modes.
single-cell-rna-qc
Performs quality control on single-cell RNA-seq data (.h5ad or .h5 files) using scverse best practices with MAD-based filtering and comprehensive visualizations.
Didn't find tool you were looking for?