Verify deployment status, health, and startup. Use when user says /deploy-verify or asks to check deployment.
View on GitHubplugins/deploy-verify/skills/deploy-verify/SKILL.md
February 1, 2026
Select agents to install to:
npx add-skill https://github.com/dohernandez/claude-skills/blob/main/plugins/deploy-verify/skills/deploy-verify/SKILL.md -a claude-code --skill deploy-verifyInstallation paths:
.claude/skills/deploy-verify/# Deploy Verify ## Purpose Verify that services deployed correctly after a deployment. Provides a systematic checklist to confirm service health, successful startup, and proper operation. ## When to Use - After running a deployment workflow - Checking if services are healthy - Investigating deployment failures - Verifying rollback success ## Quick Reference - **Setup**: `/deploy-verify configure` (run once during framework setup) - **Usage**: `/deploy-verify` (uses saved config) - **Update**: `/deploy-verify learn` (re-analyze deployment setup) - **Config**: `.claude/skills/deploy-verify.yaml` ## Commands | Command | Purpose | When to Use | |---------|---------|-------------| | `/deploy-verify configure` | Auto-detect deployment platform and services | Framework setup / wizard | | `/deploy-verify learn` | Update config from current deployment setup | After infrastructure changes | | `/deploy-verify` | Run verification against saved config | Normal usage | --- ## /deploy-verify configure **When**: Framework setup wizard (one-time) **What it does**: 1. Detects deployment platform (Kubernetes, Cloud Run, Docker, etc.) 2. Identifies services and their health endpoints 3. Discovers CI/CD workflow configuration 4. Proposes verification configuration to user 5. Saves to `.claude/skills/deploy-verify.yaml` ### Discovery Process ``` 1. DETECT PLATFORM ├─ Kubernetes: k8s/, kubernetes/, helm/ ├─ Cloud Run: deploy with gcloud run ├─ Docker Compose: docker-compose.yaml ├─ AWS ECS: ecs/, task-definition.json ├─ Serverless: serverless.yaml └─ Custom: Makefile, Taskfile.yaml targets 2. IDENTIFY SERVICES ├─ Scan deployment configs for service names ├─ Find health check endpoints └─ Detect environment variables 3. DISCOVER CI/CD ├─ GitHub Actions: .github/workflows/deploy*.yaml ├─ GitLab CI: .gitlab-ci.yml ├─ CircleCI: .circleci/config.yml └─ Custom: Taskfile.yaml, Makefile 4. PROPOSE TO USER └─ Show discovered config, wait f