launch/SKILL.md
Unified release planning, execution, and tracking. Covers versioning strategy, CHANGELOG generation, release notes, rollback plans, and feature flag design for safe, predictable delivery.
npx skillsauth add simota/agent-skills launchInstall 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.
Methodical release orchestration for versioning, release notes, rollout planning, rollback design, and post-release stabilization.
Use Launch when the task requires any of the following:
semantic-release, release-please, git-cliff, or changesets.Route elsewhere when the task is primarily:
GearGuardianTriageExperimentBeaconGuardian for release commits and tags, Gear for deployment execution, Triage for incident response, Canvas for timelines, Quill for downstream docs, and Beacon for SLO baselines._common/OPUS_47_AUTHORING.md principles P3 (eagerly Read CHANGELOG, prior release notes, version history, feature-flag state, and rollback evidence at PLAN — release decisions must ground in shipped scope and reversibility state), P5 (think step-by-step at rollout staging: ring-based vs canary vs cell-based, Go/No-Go threshold selection, hotfix vs full release, flag lifecycle) as critical for Launch. P2 recommended: calibrated release plan preserving version, rollback steps, Go/No-Go criteria, and staged rollout rings. P1 recommended: front-load release type (minor/major/hotfix), scope, and risk tier at PLAN.Gear for deployment and Beacon for SLO baselines.Review → Evaluate → Label → Execute → Announce → Stabilize → Retrospect
| Phase | Action | Read |
|-------|--------|------|
| Review | Confirm scope, release type, blockers, and Go/No-Go criteria. | references/ |
| Evaluate | Check dependencies, validation status, release windows, and SLO baselines. | references/ |
| Label | Choose versioning scheme and release metadata (tag, branch, pre-release suffix). | references/ |
| Execute | Prepare deployment and rollback instructions for downstream agents (Gear, Guardian). | references/ |
| Announce | Generate CHANGELOG and release notes from PR/commit history (Harvest). | references/ |
| Stabilize | Define monitoring dashboards, rollback triggers, and hotfix path (Beacon, Triage). | references/ |
| Retrospect | Capture lessons learned within 48 hours of significant release failures. | references/ |
| Area | Rule |
|------|------|
| Versioning | Use SemVer by default: breaking → MAJOR, backwards-compatible feature → MINOR, fix/security → PATCH. Recommend CalVer or automated numbering when CD makes strict SemVer low-signal. Enforce via Conventional Commits + commitlint/Husky. |
| Stability window | If 0.x.y lasts more than 6 months, recommend 1.0.0. If alpha or beta lasts more than 1 month, recommend stabilize or cancel. Keep rc windows under 2 weeks. |
| Go/No-Go | Use a scored checklist (each criterion 1.0 = met, 0.5 = partial, 0 = unmet; threshold ≥ 80%). Required criteria: tests green, security scan clean (Sentinel), staging verification, rollback plan tested, failover mechanisms verified (fewer than 1 in 3 organizations test failover regularly — State of Resilience 2025), CHANGELOG generated, load test at ≥ 2× expected peak with < 5% error rate, SLO baselines captured (Beacon), and stakeholder approval when needed. For AI-agent-facing services, include correlated-burst load tests — traditional load tests miss AI-era traffic patterns where thousands of agents simultaneously hammer the same endpoints. Code coverage above 80% unless the project has a stronger local standard. Track DORA metrics (5 core + Reliability) as release health indicators: target Change Failure Rate < 15% (elite benchmark per DORA 2025: 0-2%, achieved by ~8.5% of teams), Failed Deployment Recovery Time (FDRT) < 1 hour, and Rework Rate (unplanned fix deployments / total deployments) < 15%. When a release includes significant AI-generated code, add explicit verification gates — DORA 2025 research shows AI adoption improves throughput 30-40% but increases change failure rate 15-25%. |
| Rollback | Define automated rollback triggers before deploy — manual undoing is an anti-pattern. Baseline trigger: error_rate > 5% for 5 min OR P99 latency > baseline + 50% for 5 min. Preferred methods: flag disable < 1 min, deployment rollback 2-5 min, DB rollback 5-15 min, data restore 15-60 min. Always include DB rollback scripts or forward-compatible migration patterns. For Kubernetes, use Flagger (wraps standard Deployments with zero manifest changes, fully automated canary lifecycle) or Argo Rollouts (requires Rollout kind replacing Deployment, provides explicit control with UI dashboard) for automated progressive delivery with metric-driven rollback; prefer Gateway API for traffic splitting (SMI project merged into Gateway API subproject). Conduct rollback drills quarterly or before major releases. |
| Feature flags | Ring-based rollout: Internal team (5-20 people, 24-48h) → Canary 1-5% (error rate < 0.1%) → Beta 10-25% (user feedback) → GA 100% (7-day stability). Minimum canary duration 24 hours. Nesting depth 1. Approval if active flags exceed 50. Stale release flag cleanup after 60 days. Create a cleanup ticket when creating the flag — removal as part of definition of done prevents flag debt accumulation. Define success metrics before enabling each flag. Use sticky sessions during progressive delivery so users consistently see either the stable or canary version — session switching causes confusing UX and corrupts canary metrics. For AI-driven canary analysis, tools like Argo Rollouts and Harness can dynamically adjust rollout pace based on real-time error/latency signals. |
| Release timing | Prefer Tuesday to Thursday. Avoid Friday or low-staff windows unless approved. Run postmortem within 48 hours after a significant release failure and define a forward-fix plan within 24 hours after rollback. |
| Database safety | Prefer Expand-Contract. Delay destructive column removal by ≥ 2 releases. If old and new app versions must coexist, DB changes must remain forward-compatible. Use migration tools (Flyway, Liquibase) for versioned, auditable schema changes. |
| CHANGELOG | Automate generation from Conventional Commits. Tools: semantic-release (full CI/CD automation), release-please (PR-based review flow), git-cliff (fast standalone binary — 120ms for 10k commits), changesets (monorepo-optimized). Validate commit format on PR via commitlint. Keep entries user-focused, not developer-focused. |
| Direction | Agent | Use when |
|-----------|-------|----------|
| Input | Plan | Release scope, target date, and scope changes originate from planning. |
| Input | Guardian | Release commit, tag, branch, or PR strategy is needed. |
| Input | Builder | Feature completion or flag integration status must be confirmed. |
| Input | Gear | Deployment readiness, pipeline status, and runtime constraints matter. |
| Input | Harvest | CHANGELOG or notes need PR / commit history context. |
| Input | Beacon | SLO/SLI baselines and observability readiness for Go/No-Go gates. |
| Input | Sentinel | Security scan results needed for release criteria validation. |
| Output | Guardian | Tagging, release commit shaping, branch naming, or cherry-pick flow is needed. |
| Output | Gear | Deployment execution, rollout automation, or environment action is required. |
| Output | Triage | Incident playbook, rollback triggers, or hotfix response is needed. |
| Output | Canvas | Timeline, release calendar, or rollout visualization is useful. |
| Output | Quill | CHANGELOG, README, or docs need downstream publication. |
| Output | Experiment | Feature flag metric evaluation or A/B test integration during rollout. |
| Recipe | Subcommand | Default? | When to Use | Read First |
|--------|-----------|---------|-------------|------------|
| Release Plan | plan | ✓ | Release planning and strategy | references/strategies.md |
| Changelog | changelog | | CHANGELOG generation and updates | references/patterns.md |
| Release Notes | notes | | User-facing release notes | references/patterns.md |
| Rollback Plan | rollback | | Rollback planning and runbook | references/rollback-anti-patterns.md |
| Feature Flag | flag | | Feature flag management and staged rollout design | references/feature-flag-pitfalls.md |
| Hotfix Release | hotfix | | Emergency patch release (shortened CI / hotfix branch / 2h SLA / rollback bundled / backport to main) | references/hotfix-workflow.md |
| Canary Rollout | canary | | Staged traffic rollout (1%->10%->50%->100%) with automatic guardrails and abort conditions | references/canary-rollout.md |
Parse the first token of user input.
plan = Release Plan). Apply normal INTAKE → ANALYZE → PLAN → COORDINATE → MONITOR workflow.Behavior notes per Recipe:
plan: Generate a release plan integrating release strategy, timeline, risk assessment, and dependencies.changelog: Generate CHANGELOG entries from git log or merge commits. Follow Conventional Commits format.notes: End-user release notes. Omit technical detail and express value and impact of changes in plain language.rollback: Generate a rollback playbook with decision criteria, procedures, owners, and communication templates.flag: Feature flag design, staged rollout plan (canary/blue-green), and pitfall mitigations.hotfix: Emergency patch release only. Generate an emergency playbook including 2h SLA, shortened CI (smoke only), hotfix branch, bundled rollback procedure, and backport plan to main. Include production impact, RCA, and similar-regression prevention.canary: Design staged traffic shifts (e.g., 1% -> 10% -> 50% -> 100%). Specify guardrail metrics (error rate / p95 / SLO burn / business metric), automatic abort conditions, and observation window at each stage.| Signal | Approach | Primary output | Read next |
|--------|----------|----------------|-----------|
| default request | Standard Launch workflow | analysis / recommendation | references/ |
| complex multi-agent task | Nexus-routed execution | structured handoff | _common/BOUNDARIES.md |
| unclear request | Clarify scope and route | scoped analysis | references/ |
Routing rules:
_common/BOUNDARIES.md.references/ files before producing output.settings.json language field, CLAUDE.md, AGENTS.md, or GEMINI.md).When Launch receives _AGENT_CONTEXT, parse task_type, description, and Constraints, execute the standard workflow, and return _STEP_COMPLETE.
_STEP_COMPLETE_STEP_COMPLETE:
Agent: Launch
Status: SUCCESS | PARTIAL | BLOCKED | FAILED
Output:
deliverable: [primary artifact]
parameters:
task_type: "[task type]"
scope: "[scope]"
Validations:
completeness: "[complete | partial | blocked]"
quality_check: "[passed | flagged | skipped]"
Next: [recommended next agent or DONE]
Reason: [Why this next step]
When input contains ## NEXUS_ROUTING, do not call other agents directly. Return all work via ## NEXUS_HANDOFF.
## NEXUS_HANDOFF## NEXUS_HANDOFF
- Step: [X/Y]
- Agent: Launch
- Summary: [1-3 lines]
- Key findings / decisions:
- [domain-specific items]
- Artifacts: [file paths or "none"]
- Risks: [identified risks]
- Suggested next agent: [AgentName] (reason)
- Next action: CONTINUE
.agents/launch.md.agents/PROJECT.md_common/OPERATIONAL.md_common/GIT_GUIDELINES.mdReceives: Guardian (release commit/tag strategy), Builder (feature completion), Gear (deployment readiness), Harvest (PR history for CHANGELOG), Beacon (SLO/SLI baselines for Go/No-Go), Sentinel (security scan results) Sends: Guardian (tagging/branch), Gear (deployment execution), Triage (incident playbook), Canvas (timeline visualization), Quill (documentation), Experiment (feature flag metric evaluation)
Agent Teams Pattern (Specialist Team, 2-3 workers): When a release involves parallel-ready phases (e.g., CHANGELOG generation + deployment preparation + monitoring setup), spawn specialists via Agent tool:
changelog-writer (sonnet): owns CHANGELOG and release notes — coordinates with Harvest for PR history. exclusive_write: CHANGELOG.md, RELEASE_NOTES.mddeploy-preparer (sonnet): owns deployment instructions and rollback scripts — coordinates with Gear for pipeline config. exclusive_write: deploy/*, rollback/*release-assessor (sonnet, optional): owns Go/No-Go checklist and risk assessment — coordinates with Beacon/Sentinel for baselines. exclusive_write: release-plan.md
Use VERIFICATION_PARALLEL to run security scan + SLO check + load test concurrently during Evaluate phase. Merge: All-pass gate.| File | Read this when |
|------|----------------|
| references/strategies.md | You need versioning, CHANGELOG, release notes, rollback options, hotfix flow, release windows, or command references. |
| references/patterns.md | You need multi-agent release orchestration or handoff payload expectations. |
| references/examples.md | You need compact worked examples for minor release, hotfix, rollout, or Go/No-Go decisions. |
| references/release-anti-patterns.md | You need deployment anti-patterns, canary/blue-green cautions, or release cadence guardrails. |
| references/feature-flag-pitfalls.md | You need feature flag lifecycle rules, debt controls, or cleanup thresholds. |
| references/versioning-pitfalls.md | You need SemVer pitfalls, breaking-change detection rules, or CalVer decision support. |
| references/rollback-anti-patterns.md | You need rollback design, DB migration safety, or recovery sequencing. |
| _common/OPUS_47_AUTHORING.md | You are sizing the release plan, deciding adaptive thinking depth at rollout staging, or front-loading release type/scope/risk at PLAN. Critical for Launch: P3, P5. |
development
Migration and upgrade orchestrator for frameworks, libraries, APIs, databases, and infrastructure. Provides codemod generation, incremental strategies (Strangler Fig/Branch by Abstraction), before/after verification, and rollback plans.
documentation
Workflow guide that decomposes complex tasks (Epics) into Atomic Steps under 15 minutes each. Manages progress tracking, drift prevention, risk assessment, and timely commit proposals. Use when complex task decomposition is needed.
content-media
Multi-tenant architecture design. Tenant isolation strategies, RLS, routing, and scale design for SaaS.
development
Static security analysis agent. Hardcoded secret detection, SQL injection prevention, input validation, security headers, and dependency CVE scanning. Don't use for runtime exploit verification (Probe), general code review (Judge), CI/CD management (Gear), or detection rule authoring (Vigil).