cfn-deployment-lifecycle
Skill deployment and promotion lifecycle management. Use when transitioning skills from APPROVED to DEPLOYED status, or promoting skills from staging to production with SLA enforcement.
Best use case
cfn-deployment-lifecycle is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Skill deployment and promotion lifecycle management. Use when transitioning skills from APPROVED to DEPLOYED status, or promoting skills from staging to production with SLA enforcement.
Teams using cfn-deployment-lifecycle should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/cfn-deployment-lifecycle/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How cfn-deployment-lifecycle Compares
| Feature / Agent | cfn-deployment-lifecycle | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Skill deployment and promotion lifecycle management. Use when transitioning skills from APPROVED to DEPLOYED status, or promoting skills from staging to production with SLA enforcement.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Deployment Lifecycle Skill (Mega-Skill) **Version:** 1.0.0 **Purpose:** Skill deployment and promotion lifecycle management **Status:** Production **Consolidates:** cfn-deployment, cfn-promotion **Confidence:** 9.5/10 (explicit dependency coupling) --- ## Overview This mega-skill provides complete skill lifecycle management: - **Deployment** - APPROVED → DEPLOYED transitions with atomic transactions - **Promotion** - Staging → Production moves with SLA enforcement --- ## Directory Structure ``` deployment-lifecycle/ ├── SKILL.md ├── lib/ │ ├── deployment/ # From cfn-deployment │ └── promotion/ # From cfn-promotion └── cli/ ``` --- ## Migration Paths | Old Path | New Path | |----------|----------| | cfn-deployment/ | deployment-lifecycle/lib/deployment/ | | cfn-promotion/ | deployment-lifecycle/lib/promotion/ | --- ## Version History ### 1.0.0 (2025-12-02) - Consolidated deployment + promotion into unified lifecycle skill --- ## Quick Start Deploy a skill after it has been approved: ```bash bash .claude/skills/cfn-deployment-lifecycle/lib/deployment/deploy.sh --skill <skill-name> --status APPROVED ``` Promote a skill from staging to production with SLA checks: ```bash bash .claude/skills/cfn-deployment-lifecycle/lib/promotion/promote.sh --skill <skill-name> --from staging --to production ``` Check deployment status for a skill: ```bash bash .claude/skills/cfn-deployment-lifecycle/lib/deployment/deploy.sh --skill <skill-name> --status-check ```