# Frontend Delivery Production Checklist

> Standardized guidelines and patterns for Frontend Delivery Production Checklist.

- Skill: `valec3/frontend-delivery-production-checklist` (Agent Skill)
- Install (CLI): `npx skillmds add valec3/frontend-delivery-production-checklist`
- Raw SKILL.md: https://api.skillmd.com/api/skills/valec3/frontend-delivery-production-checklist/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Web & Frontend
- Author: valec3 (https://skillmd.com/u/valec3)
- Updated: 2026-09-10
- Page: https://skillmd.com/skills/valec3/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
```bash
npm run build
npm run preview
lighthouse http://localhost:4173
```

## Resources
- Use production build for testing
- Run Lighthouse before deploy
- Monitor bundle size

