Claude-code-plugins-plus-skills framer-prod-checklist
install
source · Clone the upstream repo
git clone https://github.com/jeremylongshore/claude-code-plugins-plus-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/jeremylongshore/claude-code-plugins-plus-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/plugins/saas-packs/framer-pack/skills/framer-prod-checklist" ~/.claude/skills/jeremylongshore-claude-code-plugins-plus-skills-framer-prod-checklist && rm -rf "$T"
manifest:
plugins/saas-packs/framer-pack/skills/framer-prod-checklist/SKILL.mdsource content
Framer Production Checklist
Overview
Checklist for deploying Framer plugins, code components, and Server API integrations to production.
Checklist
Plugin Production
- Plugin tested in Framer editor with real data
- No
calls remainingconsole.log - Error states handled (network failures, API errors)
- Loading states shown during async operations
- Plugin UI responsive at configured width/height
- All property controls have default values
Code Components
-
on all componentsexport default -
on all componentsaddPropertyControls - Responsive at all viewport sizes
- No hardcoded data (use property controls or CMS)
- Error boundaries for data-fetching components
- Performance tested with large datasets
Server API (CMS Sync)
- API key in secrets vault (not
).env - CMS collection schema matches source data
- Incremental sync (not full replace every run)
- Error handling with notifications
- Publish step tested
- Rate limiting for batch operations
Site Publishing
- Custom domain configured
- SEO meta tags on all pages
- CMS collections populated
- Code components rendering correctly in preview
- Code overrides working in published site
Output
- Verified plugin, components, and CMS sync
- Production API key secured
- Site published and accessible
Resources
Next Steps
For version upgrades, see
framer-upgrade-migration.