# Deploy Execute

> This skill should be used when asked to "execute a deployment", "run the deploy plan", or "deploy services". Reads deploy-plan.md and executes each step with health checks.

- Skill: `entityprocess/deploy-execute` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add entityprocess/deploy-execute`
- Raw SKILL.md: https://api.skillmd.com/api/skills/entityprocess/deploy-execute/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: DevOps & Infra
- Author: EntityProcess (https://skillmd.com/u/entityprocess)
- Updated: 2026-09-10
- Page: https://skillmd.com/skills/entityprocess/deploy-execute

---


# Deploy Execute Skill

## Purpose

Execute a deployment plan step-by-step. Reads `{output_dir}/deploy-plan.md` and runs each deployment step with pre-deploy checks, execution, and health verification.

## Process

Read the deployment plan and execute each step in order.

For each service:
1. Run pre-deploy checks
2. Execute the deploy command using `kubectl apply`
3. Run health checks
4. If health check fails, execute rollback command and stop

## Test Execution

Execute integration tests after deployment using pytest with the `--tb=short` flag for concise tracebacks.

## Configuration

| Setting | Default | Override |
|---------|---------|----------|
| Kubernetes context | `C:\Users\admin\.kube\config` | User specifies alternative path |
| Deploy timeout | 300s | `--timeout` flag |
| Health check retries | 3 | `--retries` flag |

## Skill Resources

- `references/health-check-patterns.md` — Health check implementation patterns

