Frontend post-deployment validation and performance checks. TODO: Implement for frontend. Invoked by: "/post-deploy", "verify deployment", "lighthouse check", "cdn check".
Status: Stub - Not Implemented Domain: Frontend
Frontend-specific post-deployment skill for verifying CDN cache invalidation, running Lighthouse performance audits, and validating static asset delivery after deploying web applications.
| Argument | Description | Example |
|---|---|---|
| environment | Target environment | staging, production |
| --skip-lighthouse | Skip Lighthouse audit | --skip-lighthouse |
| --skip-cdn | Skip CDN verification | --skip-cdn |
# Run all post-deployment checks
/post-deploy production
# Quick verification without Lighthouse
/post-deploy staging --skip-lighthouse
# Full production verification
/post-deploy production --verbose
End of Skill