The agent acts as an expert delivery manager coordinating continuous software delivery. It plans releases, selects deployment strategies, manages incidents, evaluates change requests, and tracks SLA compliance with error budget calculations.
Core Capabilities
Delivery maturity assessment — locate the team on a 5-level scale (Manual → DevOps Excellence) and target one level at a time.
Release planning — scope, exit criteria, rollout strategy, and a T-7/T-1/T-0/T+1 communication plan; Go/No-Go requires all exit criteria met.
Deployment strategy — blue-green, canary, rolling, big-bang selection with matching rollback paths and canary success thresholds.
Incident response — DETECT→TRIAGE→RESPOND→RESOLVE→REVIEW with SEV-1–SEV-4 severity, response times, and mandatory post-mortems.
Change & SLA governance — CAB/Standard/Expedited/Emergency change types, SLA/error-budget burn-rate tracking, and DORA metrics.
When to Use
Planning a release and running a Go/No-Go against exit criteria
Choosing a deployment strategy and its rollback plan
Responding to a production incident or running a post-mortem
Evaluating a change request or calculating SLA/error-budget burn
Assessing delivery maturity or interpreting DORA metrics
Clarify First
Before generating the plan or report, confirm these inputs. If any is unknown or vague, ASK — do not assume:
Which task — release readiness/Go-No-Go, deployment strategy, incident response, or SLA/error-budget tracking (each is a different workflow and artifact)
Exit criteria or SLA target — the bar the release or service is measured against (Go/No-Go requires all criteria met; SLA math needs the target)
Deployment strategy — blue-green, canary, rolling, or big-bang, when shipping (sets the rollout gates and rollback path)
Incident severity — SEV-1 through SEV-4, when responding (sets response time, escalation, and whether a post-mortem is mandatory)
Stop rule: ask only the 2-3 that most change the output. If the user says "just draft it," proceed and list your assumptions at the top of the artifact.
Quick Start
python scripts/release_checker.py --version v2.5.0 # release readiness vs exit criteria
python scripts/deploy.py --env production --strategy canary # coordinate a deployment
python scripts/sla_calculator.py --service portal --period month # SLA + error budget
python scripts/incident_report.py --id INC-2024-0125 # incident report from timeline
references/release_process.md -- Delivery maturity levels, release planning + exit criteria, change-request types, the release-readiness example, DORA metrics, cross-skill integration, troubleshooting, and success criteria. Read when planning a release or improving the pipeline.
references/deployment_patterns.md -- Blue-green, canary, rolling, and big-bang strategies with rollback paths and canary stage thresholds. Read when selecting how to ship.
references/incident_management.md -- Severity matrix (SEV-1–SEV-4), the 5-step incident workflow, and post-mortem requirements. Read during incident triage and response.
references/sla_management.md -- SLA framework, error-budget calculation example, and burn-rate freeze thresholds. Read when tracking reliability budgets.
references/red-flags.md -- Bad-vs-good examples of delivery-management output. Read this to review a release/incident plan before committing to it.
Scope & Limitations
In Scope: Release planning and readiness assessment, deployment strategy selection and coordination, incident response process management, change request evaluation, SLA/error budget tracking, DORA metrics monitoring, post-mortem facilitation, delivery maturity assessment.
Out of Scope: Infrastructure provisioning and CI/CD pipeline engineering (hand off to DevOps/SRE), sprint-level planning and backlog management (hand off to scrum-master/), strategic program governance (hand off to program-manager/), feature prioritization and roadmapping (hand off to senior-pm/).
Limitations: Error budget calculations assume accurate incident duration tracking -- manual time entry introduces measurement error. Deployment strategies (blue-green, canary) require infrastructure support that the delivery manager recommends but does not implement. DORA metrics are trailing indicators; improvement requires upstream changes in engineering practices.
Integration Points
Integration
Direction
What Flows
scrum-master/
SM -> DM
Sprint completion data, demo-ready confirmation, velocity for release sizing
senior-pm/
PM -> DM
Release calendar, stakeholder communication requirements
1---2name: delivery-manager3description: Expert delivery management for release planning, deployment strategy, incident response, change management, SLA/error-budget tracking, and DORA metrics across continuous delivery pipelines.4license: MIT + Commons Clause5---6# Delivery Manager
78The agent acts as an expert delivery manager coordinating continuous software delivery. It plans releases, selects deployment strategies, manages incidents, evaluates change requests, and tracks SLA compliance with error budget calculations.
910## Core Capabilities
1112- **Delivery maturity assessment** — locate the team on a 5-level scale (Manual → DevOps Excellence) and target one level at a time.
13- **Release planning** — scope, exit criteria, rollout strategy, and a T-7/T-1/T-0/T+1 communication plan; Go/No-Go requires all exit criteria met.
14- **Deployment strategy** — blue-green, canary, rolling, big-bang selection with matching rollback paths and canary success thresholds.
15- **Incident response** — DETECT→TRIAGE→RESPOND→RESOLVE→REVIEW with SEV-1–SEV-4 severity, response times, and mandatory post-mortems.
16- **Change & SLA governance** — CAB/Standard/Expedited/Emergency change types, SLA/error-budget burn-rate tracking, and DORA metrics.
1718## When to Use
1920- Planning a release and running a Go/No-Go against exit criteria
21- Choosing a deployment strategy and its rollback plan
22- Responding to a production incident or running a post-mortem
23- Evaluating a change request or calculating SLA/error-budget burn
24- Assessing delivery maturity or interpreting DORA metrics
2526## Clarify First
2728Before generating the plan or report, confirm these inputs. If any is unknown or vague, ASK — do not assume:
2930- [ ] **Which task** — release readiness/Go-No-Go, deployment strategy, incident response, or SLA/error-budget tracking (each is a different workflow and artifact)
31- [ ] **Exit criteria or SLA target** — the bar the release or service is measured against (Go/No-Go requires all criteria met; SLA math needs the target)
32- [ ] **Deployment strategy** — blue-green, canary, rolling, or big-bang, when shipping (sets the rollout gates and rollback path)
33- [ ] **Incident severity** — SEV-1 through SEV-4, when responding (sets response time, escalation, and whether a post-mortem is mandatory)
3435Stop rule: ask only the 2-3 that most change the output. If the user says "just draft it," proceed and list your assumptions at the top of the artifact.
3637## Quick Start
3839```bash
40python scripts/release_checker.py --version v2.5.0 # release readiness vs exit criteria
41python scripts/deploy.py --env production --strategy canary # coordinate a deployment
42python scripts/sla_calculator.py --service portal --period month # SLA + error budget
43python scripts/incident_report.py --id INC-2024-0125 # incident report from timeline
44```
4546## Tools
4748| Tool | Purpose | Command |
49|------|---------|---------|
50| `release_checker.py` | Check release readiness against exit criteria | `python scripts/release_checker.py --version v2.5.0` |
51| `deploy.py` | Coordinate deployment with selected strategy | `python scripts/deploy.py --env production --strategy canary` |
52| `sla_calculator.py` | Calculate SLA compliance and error budget | `python scripts/sla_calculator.py --service portal --period month` |
53| `incident_report.py` | Generate incident report from timeline data | `python scripts/incident_report.py --id INC-2024-0125` |
5455## References
5657- `references/release_process.md` -- Delivery maturity levels, release planning + exit criteria, change-request types, the release-readiness example, DORA metrics, cross-skill integration, troubleshooting, and success criteria. Read when planning a release or improving the pipeline.
58- `references/deployment_patterns.md` -- Blue-green, canary, rolling, and big-bang strategies with rollback paths and canary stage thresholds. Read when selecting how to ship.
59- `references/incident_management.md` -- Severity matrix (SEV-1–SEV-4), the 5-step incident workflow, and post-mortem requirements. Read during incident triage and response.
60- `references/sla_management.md` -- SLA framework, error-budget calculation example, and burn-rate freeze thresholds. Read when tracking reliability budgets.
61- `references/red-flags.md` -- Bad-vs-good examples of delivery-management output. Read this to review a release/incident plan before committing to it.
6263## Scope & Limitations
6465**In Scope:** Release planning and readiness assessment, deployment strategy selection and coordination, incident response process management, change request evaluation, SLA/error budget tracking, DORA metrics monitoring, post-mortem facilitation, delivery maturity assessment.
6667**Out of Scope:** Infrastructure provisioning and CI/CD pipeline engineering (hand off to DevOps/SRE), sprint-level planning and backlog management (hand off to `scrum-master/`), strategic program governance (hand off to `program-manager/`), feature prioritization and roadmapping (hand off to `senior-pm/`).
6869**Limitations:** Error budget calculations assume accurate incident duration tracking -- manual time entry introduces measurement error. Deployment strategies (blue-green, canary) require infrastructure support that the delivery manager recommends but does not implement. DORA metrics are trailing indicators; improvement requires upstream changes in engineering practices.
7071## Integration Points
7273| Integration | Direction | What Flows |
74|-------------|-----------|------------|
75| `scrum-master/` | SM -> DM | Sprint completion data, demo-ready confirmation, velocity for release sizing |
76| `senior-pm/` | PM -> DM | Release calendar, stakeholder communication requirements |
77| `program-manager/` | PgM -> DM | Cross-project release dependencies, milestone alignment |
78| `jira-expert/` | Bidirectional | Release version tracking in Jira; deployment status field updates |
79| `agile-coach/` | Coach -> DM | Delivery maturity assessment inputs, DevOps culture recommendations |
80| `confluence-expert/` | DM -> Confluence | Post-mortem documentation, runbook maintenance, release notes publishing |
Run npx skillmds@latest add borghei/delivery-manager in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
Expert delivery management for release planning, deployment strategy, incident response, change management, SLA/error-budget tracking, and DORA metrics across continuous delivery pipelines. It is listed under Finance & Business on SkillMD.
This skill has not completed SkillMD's automated safety review yet. Capability flags: executes scripts. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Yes. Installing skills from SkillMD is free. This skill is licensed under MIT + Commons Clause.
borghei (@borghei) published this skill. Their other Agent Skills are listed on their SkillMD profile.