Deploy plan
Light-weight AI agent evaluation and optimization framework
npx -y skills add EntityProcess/agentv --skill deploy-planAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 14 stars14 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.
What its author says it does
Copied from the file, not written here
This skill should be used when asked to "plan a deployment", "create a deploy plan", or "prepare release steps". Produces a deployment plan with rollback strategy.
SKILL.md
1.2 KB, as published. Nobody here has run it
Deploy Plan Skill
Purpose
Create a structured deployment plan from a release specification. Produces {output_dir}/deploy-plan.md with step-by-step instructions, dependency ordering, and rollback checkpoints.
When to Use
- Planning a new deployment from a release spec
- Coordinating multi-service deployments with dependency ordering
- Generating rollback checkpoints for each deployment step
Process
- Read the release specification
- Identify affected services and their dependencies
- Order deployments by dependency graph (databases first, then backends, then frontends)
- For each service, define: pre-deploy checks, deploy command, health check, rollback command
- Write
{output_dir}/deploy-plan.md
Phase Handoff
After completing the plan, tell the user:
"Next step — run: /deploy-execute {output_dir} Or let the orchestrator continue automatically."
Skill Resources
references/deployment-patterns.md— Common deployment patterns and anti-patterns