---
description: SDP command deploy
globs: []
alwaysApply: false
---
<!-- GENERATED by sdp generate-adapters from sdp.manifest.yaml — do not edit manually -->
<!-- Source: prompts/commands/deploy.md -->
# /deploy — Deploy Feature

When calling `/deploy {feature} [version_bump]`:

1. Load skill: `deploy`
2. Pre-flight: run quality gates (see AGENTS.md), verify APPROVED
3. Version: bump semver (patch/minor/major)
4. Generate: CHANGELOG, release notes
5. **EXECUTE** (do NOT propose):
   - `git commit` artifacts
   - `git merge feature/F{XX} → main` (via PR)
   - `git tag v{X.Y.Z}`
   - `git push origin main v{X.Y.Z}`
6. Report summary

## Quick Reference

**Input:** APPROVED feature + version bump (default: patch)
**Output:** Production deployment + v{X.Y.Z} tag
**Rule:** Do NOT stop after artifacts — EXECUTE all git operations

## Version Bump

- `@deploy <feature-id>` — patch (0.5.0 → 0.5.1)
- `@deploy <feature-id> minor` — minor (0.5.0 → 0.6.0)
- `@deploy <feature-id> major` — major (0.5.0 → 1.0.0)