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.From its SKILL.md
npx -y skills add EntityProcess/agentv --skill deploy-executeAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
3 things to look at
- reads credentialsReads from 1 credential source: `C:\Users\admin\.kube\config`.
- 15 stars15 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
- runs commandsInstructs the agent to run 2 commands, including `kubectl apply` and 1 more.
SKILL.md
1.1 KB, 210 tokens by cl100k_base, as published. Nobody here has run it
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:
- Run pre-deploy checks
- Execute the deploy command using
kubectl apply - Run health checks
- 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
What ships with it: 1 file
253 B alongside SKILL.md