skills/deployment/deployment-release/SKILL.md
Releases validated artefacts to staging or production; runs smoke tests; triggers rollback on failure. Use when deploying a new version to an environment, updating infrastructure, or executing a release checklist.
npx skillsauth add pkuppens/pkuppens deployment-releaseInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Deploys validated artefacts to target environments and verifies successful rollout.
When to use:
deployment-build passesPre-conditions:
deployment-build completed and artefact digest recordedquality-gate passed (lint, tests, type check)integration-merge completed (main branch up to date)Instructions:
Define rollback criteria before deploying:
Deploy to staging first (if applicable):
docker compose pull && docker compose up -dfly deploy / push to deploy branchkubectl set image deployment/<name> <container>=<image>:<tag>Run smoke tests against staging:
curl -f https://<host>/healthtmp/deployment/smoke-<version>.mdPromote to production (after staging passes):
docker logs -f <container> / fly logsVerify rollout:
/version endpoint matches expected tagOn failure — rollback:
docker compose down && docker compose up -d --scale <service>=0 then redeploy previous tagfly releases rollback <previous-version>tmp/deployment/incident-<version>.mdUpdate release record in tmp/deployment/release-<version>.md:
Output format:
## Release Summary
- Version: <tag>
- Environment: staging | production
- Deploy time: <timestamp>
- Smoke tests: ✅ passed / ❌ failed
- Rollback triggered: yes | no
- Notes: <any issues>
Integration: Follows deployment-build. Composes with operations-monitoring post-deploy. See COOPERATION.md.
tools
Creates, queries, updates, and links Azure Boards work items via az boards CLI. Use when filing ADO work items, running WIQL queries, or setting area path, iteration, tags, and assignee.
tools
Creates, reviews, and completes Azure Repos pull requests and branch policies via az repos CLI. Use when opening ADO PRs, setting required reviewers, or configuring build validation policies.
development
Guides Azure Pipelines YAML structure, build validation on PRs, and staged deployment with environments and approvals. Use when authoring azure-pipelines.yml or configuring CI/CD on Azure DevOps.
tools
Orchestrates Azure DevOps work item, repo, and pipeline workflows using az CLI. Use when working with Azure DevOps, Azure Repos, Azure Boards, Azure Pipelines, or az devops commands.