Our review
Provides a standardized checklist to verify frontend application readiness for production deployment.
Strengths
- Covers critical aspects such as environment variables, error handling, analytics, and security.
- Integrates performance tools like Lighthouse and bundle size tracking.
- Actionable with concrete build commands and checks.
Limitations
- Does not replace thorough code review or functional testing.
- Some checks (SEO, accessibility) may require additional expertise.
- Tool setup (Sentry, analytics) must be done beforehand.
Use this checklist before every production deployment to ensure a quality release.
Do not use for internal or development deployments, nor for projects without production requirements.
Security analysis
SafeThis skill only recommends running standard development commands (npm run build/preview, lighthouse) for local testing. No external network calls, destructive operations, or handling of secrets are involved.
No concerns found
Examples
Run the frontend delivery production checklist for my React app.Check if my Next.js project is ready for production according to the checklist.List all items I need to verify before deploying my Vue app to production.name: frontend-delivery-production-checklist description: Standardized guidelines and patterns for Frontend Delivery Production Checklist.
Frontend Delivery Production Checklist
When to use this skill
- Before deploying to production
- Production readiness review
- Performance optimization
Workflow
- [ ] Run production build
- [ ] Check bundle size
- [ ] Run Lighthouse audit
- [ ] Test on real devices
- [ ] Verify error tracking
- [ ] Check analytics
Instructions
Checklist
- [ ] All environment variables set
- [ ] Error boundaries in place
- [ ] Error tracking configured (Sentry)
- [ ] Analytics configured
- [ ] SEO meta tags present
- [ ] Images optimized
- [ ] Bundle size < 200KB (gzipped)
- [ ] Lighthouse score > 90
- [ ] Accessibility tested
- [ ] Security headers configured
- [ ] HTTPS enabled
- [ ] CDN configured
Performance
npm run build
npm run preview
lighthouse http://localhost:4173
Resources
- Use production build for testing
- Run Lighthouse before deploy
- Monitor bundle size
Next.js App Router Expert
Development
A skill that turns Claude into a Next.js App Router expert.
README Generator
Development
Creates professional and comprehensive README.md files for your projects.
API Documentation Writer
Development
Generates comprehensive API documentation in OpenAPI/Swagger format.