release
Create and publish a new release
Works with
--- name: release description: Create and publish a new release license: MIT --- # Release Skill Creates a new release of the port-manager package. ## Instructions You are helping the user create a release of the port-manager npm package. Follow these steps: 1. **Determine release type** - Ask the user which type of release they want (unless they already specified): - `patch` - Bug fixes (1.0.0 → 1.0.1) - `minor` - New features (1.0.0 → 1.1.0) - `major` - Breaking changes (1.0.0 → 2.0.0) - `beta` - Beta pre-release (1.0.0 → 1.0.1-beta.0) - `alpha` - Alpha pre-release (1.0.0 → 1.0.1-alpha.0) 2. **Verify prerequisites**: - Confirm `gh` CLI is available: `command -v gh` - If not installed, stop and tell the user to install it from https://cli.github.com/ — the release scripts require it. 3. **Execute the release script**: ```bash ./scripts/release.sh [type] ``` The script handles all validation (uncommitted changes, correct branch, tests). **Branch rules enforced by the script:** - Stable releases (`patch`, `minor`, `major`) must be run from the `main` branch - Pre-releases (`beta`, `alpha`) can be run from any branch 4. **What happens after the script runs:** **For stable releases (patch/minor/major):** The script creates a PR with the version bump. Tell the user: - Merge the PR — everything else is automatic - The `auto-release` workflow detects the "Release v*" commit and creates the tag + GitHub Release - The `publish` workflow then publishes to npm **For pre-releases (beta/alpha):** The script creates the tag and GitHub Release immediately. Tell the user: - The publish workflow runs automatically - The package is published under the `next` npm tag - Install with: `npm install @wbrantley/port-manager@next` 5. **Provide monitoring links**: - GitHub Actions: https://github.com/waynebrantley/port-manager/actions - npm package: https://www.npmjs.com/package/@wbrantley/port-manager ## Important Notes - This project uses **pnpm** as its package manager - The script runs `pnpm test` before proceeding - Main branch is protected — stable releases must go through a PR - After PR merge, tagging and releasing is fully automated via GitHub Actions - Pre-releases are published to npm under the `next` tag - Stable releases are published under the `latest` tag
More Deployment & CI/CD skills
azure-enterprise-infra-planner
microsoft/azure-skills
Architect and provision enterprise Azure infrastructure from workload descriptions. For cloud architects and platform engineers planning networking, identity, security, compliance, and multi-resource topologies with WAF alignment. Generates Bicep or Terraform directly (no azd). WHEN: 'plan Azure infrastructure', 'architect Azure landing zone', 'design hub-spoke network', 'plan multi-region DR topology', 'set up VNets firewalls and private endpoints', 'subscription-scope Bicep deployment', 'Azure Backup for VM workloads'. PREFER azure-prepare FOR app-centric workflows.
azure-kubernetes-app-deploy
microsoft/azure-skills
Use when deploying an existing web application or API to an already-running Azure Kubernetes Service cluster. Detects the framework, generates a Dockerfile and Kubernetes manifests, validates against AKS Deployment Safeguards, and deploys with verification. WHEN: deploy app to AKS, deploy to existing AKS cluster, containerize app for Kubernetes, generate K8s manifests for Azure, set up CI/CD for AKS, my AKS deployment is failing safeguard checks, I have a Django/Express/Spring Boot app to run on AKS. DO NOT USE FOR: creating or provisioning an AKS cluster (use azure-kubernetes), assessing migration to AKS Automatic (use azure-kubernetes-automatic-readiness), or deploying to non-AKS targets like Web Apps, Container Apps, or Functions.
finetuning
microsoft/azure-skills
Fine-tune models on Microsoft Foundry using SFT (supervised), DPO (preference), or RFT (reinforcement with graders). Covers dataset preparation, training job submission, deployment, and evaluation. USE FOR: fine-tune, SFT, DPO, RFT, training data, grader, distillation, fine-tuned model, training job, large file upload, calibrate grader, deploy fine-tuned model, evaluate fine-tuned model. DO NOT USE FOR: general model deployment without fine-tuning (use deploy-model), agent creation (use agents), prompt optimization without training (use prompt-optimizer).

