[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-webflow-webflow-code-componentdeploy-guide":3,"mdc--k19rhx-key":37,"related-org-webflow-webflow-code-componentdeploy-guide":2080,"related-repo-webflow-webflow-code-componentdeploy-guide":2260},{"slug":4,"name":5,"fn":6,"description":7,"org":8,"tags":12,"stars":24,"repoUrl":25,"updatedAt":26,"license":27,"forks":28,"topics":29,"repo":32,"sourceUrl":35,"mdContent":36},"webflow-code-componentdeploy-guide","webflow-code-component:deploy-guide","deploy Webflow Code Components","Step-by-step guide for deploying Webflow Code Components to a workspace. Covers authentication, pre-flight checks, deployment execution, and verification.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},"webflow","Webflow","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fwebflow.png",[13,17,20,21],{"name":14,"slug":15,"type":16},"React","react","tag",{"name":18,"slug":19,"type":16},"Deployment","deployment",{"name":10,"slug":9,"type":16},{"name":22,"slug":23,"type":16},"Frontend","frontend",107,"https:\u002F\u002Fgithub.com\u002Fwebflow\u002Fwebflow-skills","2026-05-18T06:47:38.947875",null,17,[30,31],"agent","skills",{"repoUrl":25,"stars":24,"forks":28,"topics":33,"description":34},[30,31],"Official Webflow Agent Skills","https:\u002F\u002Fgithub.com\u002Fwebflow\u002Fwebflow-skills\u002Ftree\u002FHEAD\u002Fplugins\u002Fwebflow-skills\u002Fskills\u002Fdeploy-guide","---\nname: webflow-code-component:deploy-guide\ndescription: Step-by-step guide for deploying Webflow Code Components to a workspace. Covers authentication, pre-flight checks, deployment execution, and verification.\ncompatibility: Node.js 18+, React 18+, TypeScript, @webflow\u002Fwebflow-cli\nmetadata:\n  author: webflow\n  version: \"1.1\"\n---\n\n# Deploy Guide\n\nGuide users through deploying their code component library to Webflow.\n\n## When to Use This Skill\n\n**Use when:**\n- User is ready to deploy components to Webflow\n- User asks how to share, publish, or deploy their library\n- First-time deployment to a workspace\n- Step-by-step deployment walkthrough needed\n\n**Do NOT use when:**\n- Deployment failed (use troubleshoot-deploy instead)\n- Just validating before deploy (use pre-deploy-check instead)\n- Setting up local development (use local-dev-setup instead)\n\n**Note:** The CLI command is `webflow library share`. This skill uses \"deploy\" as the user-facing term.\n\n## Instructions\n\n### Phase 1: Pre-Flight Checks\n\n1. **Verify project is ready**:\n   - Check webflow.json configuration\n   - Ensure all dependencies installed\n   - Run pre-deploy-check skill checks\n\n2. **Check authentication status**:\n   - Look for existing .env with API token\n   - Verify WEBFLOW_WORKSPACE_API_TOKEN if set\n   - Prepare for authentication if needed\n\n3. **Confirm deployment target**:\n   - Which workspace?\n   - New library or update existing?\n\n### Phase 2: Authentication\n\n4. **Guide authentication**:\n   - Interactive: Follow CLI prompts\n   - CI\u002FCD: Use --api-token flag\n   - Show how to get workspace API token if needed\n\n### Phase 3: Deployment\n\n5. **Execute deployment**:\n   - Run `npx webflow library share`\n   - Monitor for errors\n   - Capture output\n\n### Phase 4: Verification\n\n6. **Verify deployment**:\n   - Check Webflow Designer for components\n   - Test component functionality\n   - Confirm all components appear\n\n7. **Provide next steps**:\n   - How to use components in Designer\n   - How to update in future\n   - Common post-deploy tasks\n   - If deployment fails, use [troubleshoot-deploy](..\u002Ftroubleshoot-deploy\u002FSKILL.md) to diagnose and fix issues\n\n## Deployment Workflow\n\n### Standard Deployment\n\n```\n📦 Deploying Code Components\n\nStep 1: Pre-flight checks\n├── webflow.json ✅\n├── Dependencies ✅\n└── Build test ✅\n\nStep 2: Authentication\n├── Checking for existing auth...\n└── Found valid token ✅\n\nStep 3: Deploying\n├── Bundling components...\n├── Uploading to workspace...\n└── Processing...\n\nStep 4: Verification\n├── Library registered ✅\n└── 4 components available ✅\n\n🎉 Deployment Complete!\n```\n\n### CI\u002FCD Deployment\n\n```bash\n# Set environment variable\nexport WEBFLOW_WORKSPACE_API_TOKEN=your-token-here\n\n# Deploy without prompts\nnpx webflow library share --no-input\n```\n\n## Examples\n\n**User prompt:**\n```\nDeploy my components to Webflow\n```\n\n**Response:**\n```\n🚀 Deploy Guide: Code Components\n\nLet me guide you through deploying your component library.\n\n---\n\n## Step 1: Pre-Flight Checks\n\nRunning validation...\n\n✅ webflow.json configured\n✅ Dependencies installed\n✅ Build succeeds\n✅ Bundle size: 2.3MB (under 50MB limit)\n\nAll checks passed! Ready to deploy.\n\n---\n\n## Step 2: Authentication\n\n**Option A: Interactive (Recommended for first time)**\n\nRun the deploy command:\n```bash\nnpx webflow library share\n```\n\nThis will:\n1. Open your browser for Webflow login\n2. Ask you to authorize the app\n3. Save credentials to .env\n\n**Option B: API Token (For CI\u002FCD or returning users)**\n\n1. Get your Workspace API Token:\n   - Go to Webflow Dashboard\n   - Navigate to your Workspace Settings\n   - Find \"Apps & Integrations\" → \"Manage\"\n   - Under \"Workspace API Access\", click \"Generate API Token\"\n   - Copy the token\n\n2. Run with token:\n```bash\nnpx webflow library share --api-token YOUR_TOKEN_HERE\n```\n\nOr set environment variable:\n```bash\nexport WEBFLOW_WORKSPACE_API_TOKEN=YOUR_TOKEN_HERE\nnpx webflow library share\n```\n\n---\n\n## Step 3: Deploy\n\nReady to deploy? Run:\n\n```bash\nnpx webflow library share\n```\n\nExpected output:\n```\n✓ Bundling components...\n✓ Authenticating...\n✓ Uploading library...\n✓ Processing...\n\nLibrary \"My Component Library\" successfully shared!\n\nComponents:\n- Button\n- Card\n- Accordion\n- Modal\n\nView in Designer: Open any site in your workspace\n```\n\n---\n\n## Step 4: Verify in Designer\n\nAfter deployment:\n\n1. **Open Webflow Designer** for any site in your workspace\n2. **Open Add Panel** (A key or + button)\n3. **Find \"Components\"** section\n4. **Look for your library** under custom components\n5. **Drag a component** onto the canvas to test\n\n---\n\n## Step 5: Next Steps\n\n✅ **Your components are live!**\n\n**To update components later:**\n```bash\n# Make your changes, then re-deploy\nnpx webflow library share\n```\n\n**Important notes:**\n- Updates replace the entire library (no partial updates)\n- Existing component instances will update automatically\n- Don't rename .webflow.tsx files (breaks instances)\n\n---\n\n💡 **Tips:**\n- Add .env to .gitignore to protect your token\n- Use `--verbose` flag for debugging issues\n- Run `npx webflow library log` to see recent deploy logs\n```\n\n---\n\n**Example: First-Time Setup**\n\n```\n🚀 Deploy Guide: First-Time Setup\n\nI see this is your first deployment. Let me walk you through the full setup.\n\n---\n\n## Step 1: Get Workspace API Token\n\nYou'll need a Workspace API token to deploy:\n\n1. **Open Webflow Dashboard**\n   Go to webflow.com and log in\n\n2. **Navigate to Workspace Settings**\n   Click your workspace name → Settings\n\n3. **Find API Access**\n   Go to \"Apps & Integrations\" → \"Manage\"\n\n4. **Generate Token**\n   Under \"Workspace API Access\":\n   - Click \"Generate API Token\"\n   - Copy the token (you won't see it again!)\n\n5. **Save Token**\n   Add to your .env file:\n   ```\n   WEBFLOW_WORKSPACE_API_TOKEN=your-token-here\n   ```\n\n   ⚠️ Add .env to .gitignore:\n   ```bash\n   echo \".env\" >> .gitignore\n   ```\n\n---\n\n## Step 2: Deploy\n\nNow run:\n```bash\nnpx webflow library share\n```\n\nThe CLI will:\n1. Read your token from .env\n2. Bundle your components\n3. Upload to your workspace\n\n---\n\n## Step 3: Verify\n\nAfter successful deploy:\n\n1. Open Webflow Designer\n2. Press 'A' to open Add panel\n3. Find your components in the Components section\n4. Drag onto canvas to test\n\n---\n\n🎉 **First deployment complete!**\n\nFuture deployments are simpler:\n```bash\n# Just run this after making changes\nnpx webflow library share\n```\n```\n\n---\n\n**Example: CI\u002FCD Setup**\n\n```\n🚀 Deploy Guide: CI\u002FCD Setup\n\nSetting up automated deployments for your pipeline.\n\n---\n\n## GitHub Actions Example\n\nCreate `.github\u002Fworkflows\u002Fdeploy.yml`:\n\n```yaml\nname: Deploy to Webflow\n\non:\n  push:\n    branches: [main]\n\njobs:\n  deploy:\n    runs-on: ubuntu-latest\n\n    steps:\n      - uses: actions\u002Fcheckout@v4\n\n      - name: Setup Node.js\n        uses: actions\u002Fsetup-node@v4\n        with:\n          node-version: '20'\n          cache: 'npm'\n\n      - name: Install dependencies\n        run: npm ci\n\n      - name: Deploy to Webflow\n        env:\n          WEBFLOW_WORKSPACE_API_TOKEN: ${{ secrets.WEBFLOW_WORKSPACE_API_TOKEN }}\n        run: npx webflow library share --no-input\n```\n\n---\n\n## Add Secret to GitHub\n\n1. Go to your repo → Settings → Secrets and variables → Actions\n2. Click \"New repository secret\"\n3. Name: `WEBFLOW_WORKSPACE_API_TOKEN`\n4. Value: Your workspace API token\n5. Click \"Add secret\"\n\n---\n\n## Key Flags for CI\u002FCD\n\n```bash\nnpx webflow library share --no-input\n```\n\n- `--no-input`: Disables interactive prompts\n- Uses `WEBFLOW_WORKSPACE_API_TOKEN` env var automatically\n\n---\n\n## Optional: Add TypeScript Check\n\n```yaml\n- name: Type check\n  run: npx tsc --noEmit\n```\n\n---\n\n✅ **CI\u002FCD configured!**\n\nNow every push to main will automatically deploy your components.\n```\n\n## Validation\n\nAfter deployment, verify success with these checks:\n\n| Check | How to Verify |\n|-------|---------------|\n| Deploy completed | `npx webflow library share` exited without errors |\n| Components visible | Open Designer Add panel → find your library |\n| Import logs clean | `npx webflow library log` shows successful import |\n| Bundle size OK | Output shows bundle under 50MB |\n| Props work | Drag component onto canvas, verify props in right panel |\n\n## Guidelines\n\n### Terminology\n\nThe CLI command is `webflow library share`. This skill uses \"deploy\" as the user-facing term for consistency with common developer vocabulary. See the [CLI reference](..\u002F..\u002Freferences\u002FCODE_COMPONENTS_REFERENCE.md) (Section 12) for full command documentation.\n\n### Authentication Methods\n\n| Method | Use Case | Command |\n|--------|----------|---------|\n| Interactive | First time, local dev | `npx webflow library share` |\n| Environment variable | CI\u002FCD, automation | Set `WEBFLOW_WORKSPACE_API_TOKEN` |\n| CLI flag | One-off with different token | `--api-token TOKEN` |\n\n### Pre-Deploy Checklist\n\nBefore every deployment:\n\n- [ ] `npm install` is up to date\n- [ ] Build succeeds locally\n- [ ] Bundle under 50MB\n- [ ] All component tests pass\n- [ ] No SSR-breaking code (or ssr: false set)\n- [ ] Props have default values where supported (not available for Link, Image, Slot, ID)\n\n### Common Deploy Issues\n\n| Issue | Cause | Solution |\n|-------|-------|----------|\n| \"Authentication failed\" | Invalid\u002Fexpired token | Regenerate workspace token |\n| \"Bundle too large\" | Over 50MB | Optimize dependencies |\n| \"Library not found\" | Wrong workspace | Check token workspace |\n| \"Build failed\" | Code errors | Fix compilation errors |\n\n### CLI Flags Reference\n\nAll flags for `npx webflow library share`:\n\n| Flag | Description | Default |\n|------|-------------|---------|\n| `--manifest` | Path to `webflow.json` file | Scans current directory |\n| `--api-token` | Workspace API token | Uses `WEBFLOW_WORKSPACE_API_TOKEN` from `.env` |\n| `--no-input` | Skip interactive prompts (for CI\u002FCD) | No |\n| `--verbose` | Display more debugging information | No |\n| `--dev` | Bundle in development mode (no minification) | No |\n\n### Rollback & Versioning\n\n- Each `library share` replaces the **entire** library — there are no partial updates\n- There is **no built-in rollback** — use git to revert changes and re-deploy\n- **Never rename `.webflow.tsx` files** — renaming creates a new component and removes the old one, breaking all existing instances in projects\n\n### Debugging Commands\n\n```bash\n# Check recent deploy logs\nnpx webflow library log\n\n# Verbose deploy output (detailed errors)\nnpx webflow library share --verbose\n\n# Local bundle verification (catches build errors before deploying)\nnpx webflow library bundle --public-path http:\u002F\u002Flocalhost:4000\u002F\n```\n\n### CI\u002FCD Deployment\n\nThe GitHub Actions example above applies to any CI system. The key elements are:\n\n```bash\n# Generic CI pattern:\nnpm ci                                        # Install dependencies\nnpx webflow library share --no-input          # Deploy without prompts\n# Requires WEBFLOW_WORKSPACE_API_TOKEN env var\n```\n\n### Post-Deploy Verification\n\nAlways verify after deployment:\n\n1. **Check Designer**: Components appear in Add panel\n2. **Test drag-and-drop**: Component renders on canvas\n3. **Test props**: Props editable in right panel\n4. **Test preview**: Component works in preview mode\n5. **Test publish**: Component works on published site\n",{"data":38,"body":42},{"name":5,"description":7,"compatibility":39,"metadata":40},"Node.js 18+, React 18+, TypeScript, @webflow\u002Fwebflow-cli",{"author":9,"version":41},"1.1",{"type":43,"children":44},"root",[45,54,60,67,76,101,109,127,146,152,159,240,246,278,284,321,327,399,405,411,423,429,525,531,539,548,556,565,570,588,596,637,673,678,725,729,735,740,766,771,780,783,789,794,847,850,856,866,874,908,916,934,937,947,980,989,994,999,1002,1008,1013,1135,1138,1144,1149,1174,1179,1197,1200,1206,1211,1233,1236,1246,1251,1285,1294,1299,1304,1307,1313,1325,1743,1746,1752,1786,1789,1795,1825,1851,1854,1860,1905,1908,1917,1922,1931,1936,1941,2010,2016,2021,2074],{"type":46,"tag":47,"props":48,"children":50},"element","h1",{"id":49},"deploy-guide",[51],{"type":52,"value":53},"text","Deploy Guide",{"type":46,"tag":55,"props":56,"children":57},"p",{},[58],{"type":52,"value":59},"Guide users through deploying their code component library to Webflow.",{"type":46,"tag":61,"props":62,"children":64},"h2",{"id":63},"when-to-use-this-skill",[65],{"type":52,"value":66},"When to Use This Skill",{"type":46,"tag":55,"props":68,"children":69},{},[70],{"type":46,"tag":71,"props":72,"children":73},"strong",{},[74],{"type":52,"value":75},"Use when:",{"type":46,"tag":77,"props":78,"children":79},"ul",{},[80,86,91,96],{"type":46,"tag":81,"props":82,"children":83},"li",{},[84],{"type":52,"value":85},"User is ready to deploy components to Webflow",{"type":46,"tag":81,"props":87,"children":88},{},[89],{"type":52,"value":90},"User asks how to share, publish, or deploy their library",{"type":46,"tag":81,"props":92,"children":93},{},[94],{"type":52,"value":95},"First-time deployment to a workspace",{"type":46,"tag":81,"props":97,"children":98},{},[99],{"type":52,"value":100},"Step-by-step deployment walkthrough needed",{"type":46,"tag":55,"props":102,"children":103},{},[104],{"type":46,"tag":71,"props":105,"children":106},{},[107],{"type":52,"value":108},"Do NOT use when:",{"type":46,"tag":77,"props":110,"children":111},{},[112,117,122],{"type":46,"tag":81,"props":113,"children":114},{},[115],{"type":52,"value":116},"Deployment failed (use troubleshoot-deploy instead)",{"type":46,"tag":81,"props":118,"children":119},{},[120],{"type":52,"value":121},"Just validating before deploy (use pre-deploy-check instead)",{"type":46,"tag":81,"props":123,"children":124},{},[125],{"type":52,"value":126},"Setting up local development (use local-dev-setup instead)",{"type":46,"tag":55,"props":128,"children":129},{},[130,135,137,144],{"type":46,"tag":71,"props":131,"children":132},{},[133],{"type":52,"value":134},"Note:",{"type":52,"value":136}," The CLI command is ",{"type":46,"tag":138,"props":139,"children":141},"code",{"className":140},[],[142],{"type":52,"value":143},"webflow library share",{"type":52,"value":145},". This skill uses \"deploy\" as the user-facing term.",{"type":46,"tag":61,"props":147,"children":149},{"id":148},"instructions",[150],{"type":52,"value":151},"Instructions",{"type":46,"tag":153,"props":154,"children":156},"h3",{"id":155},"phase-1-pre-flight-checks",[157],{"type":52,"value":158},"Phase 1: Pre-Flight Checks",{"type":46,"tag":160,"props":161,"children":162},"ol",{},[163,191,218],{"type":46,"tag":81,"props":164,"children":165},{},[166,171,173],{"type":46,"tag":71,"props":167,"children":168},{},[169],{"type":52,"value":170},"Verify project is ready",{"type":52,"value":172},":",{"type":46,"tag":77,"props":174,"children":175},{},[176,181,186],{"type":46,"tag":81,"props":177,"children":178},{},[179],{"type":52,"value":180},"Check webflow.json configuration",{"type":46,"tag":81,"props":182,"children":183},{},[184],{"type":52,"value":185},"Ensure all dependencies installed",{"type":46,"tag":81,"props":187,"children":188},{},[189],{"type":52,"value":190},"Run pre-deploy-check skill checks",{"type":46,"tag":81,"props":192,"children":193},{},[194,199,200],{"type":46,"tag":71,"props":195,"children":196},{},[197],{"type":52,"value":198},"Check authentication status",{"type":52,"value":172},{"type":46,"tag":77,"props":201,"children":202},{},[203,208,213],{"type":46,"tag":81,"props":204,"children":205},{},[206],{"type":52,"value":207},"Look for existing .env with API token",{"type":46,"tag":81,"props":209,"children":210},{},[211],{"type":52,"value":212},"Verify WEBFLOW_WORKSPACE_API_TOKEN if set",{"type":46,"tag":81,"props":214,"children":215},{},[216],{"type":52,"value":217},"Prepare for authentication if needed",{"type":46,"tag":81,"props":219,"children":220},{},[221,226,227],{"type":46,"tag":71,"props":222,"children":223},{},[224],{"type":52,"value":225},"Confirm deployment target",{"type":52,"value":172},{"type":46,"tag":77,"props":228,"children":229},{},[230,235],{"type":46,"tag":81,"props":231,"children":232},{},[233],{"type":52,"value":234},"Which workspace?",{"type":46,"tag":81,"props":236,"children":237},{},[238],{"type":52,"value":239},"New library or update existing?",{"type":46,"tag":153,"props":241,"children":243},{"id":242},"phase-2-authentication",[244],{"type":52,"value":245},"Phase 2: Authentication",{"type":46,"tag":160,"props":247,"children":249},{"start":248},4,[250],{"type":46,"tag":81,"props":251,"children":252},{},[253,258,260],{"type":46,"tag":71,"props":254,"children":255},{},[256],{"type":52,"value":257},"Guide authentication",{"type":52,"value":259},":\n",{"type":46,"tag":77,"props":261,"children":262},{},[263,268,273],{"type":46,"tag":81,"props":264,"children":265},{},[266],{"type":52,"value":267},"Interactive: Follow CLI prompts",{"type":46,"tag":81,"props":269,"children":270},{},[271],{"type":52,"value":272},"CI\u002FCD: Use --api-token flag",{"type":46,"tag":81,"props":274,"children":275},{},[276],{"type":52,"value":277},"Show how to get workspace API token if needed",{"type":46,"tag":153,"props":279,"children":281},{"id":280},"phase-3-deployment",[282],{"type":52,"value":283},"Phase 3: Deployment",{"type":46,"tag":160,"props":285,"children":287},{"start":286},5,[288],{"type":46,"tag":81,"props":289,"children":290},{},[291,296,297],{"type":46,"tag":71,"props":292,"children":293},{},[294],{"type":52,"value":295},"Execute deployment",{"type":52,"value":259},{"type":46,"tag":77,"props":298,"children":299},{},[300,311,316],{"type":46,"tag":81,"props":301,"children":302},{},[303,305],{"type":52,"value":304},"Run ",{"type":46,"tag":138,"props":306,"children":308},{"className":307},[],[309],{"type":52,"value":310},"npx webflow library share",{"type":46,"tag":81,"props":312,"children":313},{},[314],{"type":52,"value":315},"Monitor for errors",{"type":46,"tag":81,"props":317,"children":318},{},[319],{"type":52,"value":320},"Capture output",{"type":46,"tag":153,"props":322,"children":324},{"id":323},"phase-4-verification",[325],{"type":52,"value":326},"Phase 4: Verification",{"type":46,"tag":160,"props":328,"children":330},{"start":329},6,[331,358],{"type":46,"tag":81,"props":332,"children":333},{},[334,339,340],{"type":46,"tag":71,"props":335,"children":336},{},[337],{"type":52,"value":338},"Verify deployment",{"type":52,"value":172},{"type":46,"tag":77,"props":341,"children":342},{},[343,348,353],{"type":46,"tag":81,"props":344,"children":345},{},[346],{"type":52,"value":347},"Check Webflow Designer for components",{"type":46,"tag":81,"props":349,"children":350},{},[351],{"type":52,"value":352},"Test component functionality",{"type":46,"tag":81,"props":354,"children":355},{},[356],{"type":52,"value":357},"Confirm all components appear",{"type":46,"tag":81,"props":359,"children":360},{},[361,366,367],{"type":46,"tag":71,"props":362,"children":363},{},[364],{"type":52,"value":365},"Provide next steps",{"type":52,"value":172},{"type":46,"tag":77,"props":368,"children":369},{},[370,375,380,385],{"type":46,"tag":81,"props":371,"children":372},{},[373],{"type":52,"value":374},"How to use components in Designer",{"type":46,"tag":81,"props":376,"children":377},{},[378],{"type":52,"value":379},"How to update in future",{"type":46,"tag":81,"props":381,"children":382},{},[383],{"type":52,"value":384},"Common post-deploy tasks",{"type":46,"tag":81,"props":386,"children":387},{},[388,390,397],{"type":52,"value":389},"If deployment fails, use ",{"type":46,"tag":391,"props":392,"children":394},"a",{"href":393},"..\u002Ftroubleshoot-deploy\u002FSKILL.md",[395],{"type":52,"value":396},"troubleshoot-deploy",{"type":52,"value":398}," to diagnose and fix issues",{"type":46,"tag":61,"props":400,"children":402},{"id":401},"deployment-workflow",[403],{"type":52,"value":404},"Deployment Workflow",{"type":46,"tag":153,"props":406,"children":408},{"id":407},"standard-deployment",[409],{"type":52,"value":410},"Standard Deployment",{"type":46,"tag":412,"props":413,"children":417},"pre",{"className":414,"code":416,"language":52},[415],"language-text","📦 Deploying Code Components\n\nStep 1: Pre-flight checks\n├── webflow.json ✅\n├── Dependencies ✅\n└── Build test ✅\n\nStep 2: Authentication\n├── Checking for existing auth...\n└── Found valid token ✅\n\nStep 3: Deploying\n├── Bundling components...\n├── Uploading to workspace...\n└── Processing...\n\nStep 4: Verification\n├── Library registered ✅\n└── 4 components available ✅\n\n🎉 Deployment Complete!\n",[418],{"type":46,"tag":138,"props":419,"children":421},{"__ignoreMap":420},"",[422],{"type":52,"value":416},{"type":46,"tag":153,"props":424,"children":426},{"id":425},"cicd-deployment",[427],{"type":52,"value":428},"CI\u002FCD Deployment",{"type":46,"tag":412,"props":430,"children":434},{"className":431,"code":432,"language":433,"meta":420,"style":420},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Set environment variable\nexport WEBFLOW_WORKSPACE_API_TOKEN=your-token-here\n\n# Deploy without prompts\nnpx webflow library share --no-input\n","bash",[435],{"type":46,"tag":138,"props":436,"children":437},{"__ignoreMap":420},[438,450,477,487,495],{"type":46,"tag":439,"props":440,"children":443},"span",{"class":441,"line":442},"line",1,[444],{"type":46,"tag":439,"props":445,"children":447},{"style":446},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[448],{"type":52,"value":449},"# Set environment variable\n",{"type":46,"tag":439,"props":451,"children":453},{"class":441,"line":452},2,[454,460,466,472],{"type":46,"tag":439,"props":455,"children":457},{"style":456},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[458],{"type":52,"value":459},"export",{"type":46,"tag":439,"props":461,"children":463},{"style":462},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[464],{"type":52,"value":465}," WEBFLOW_WORKSPACE_API_TOKEN",{"type":46,"tag":439,"props":467,"children":469},{"style":468},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[470],{"type":52,"value":471},"=",{"type":46,"tag":439,"props":473,"children":474},{"style":462},[475],{"type":52,"value":476},"your-token-here\n",{"type":46,"tag":439,"props":478,"children":480},{"class":441,"line":479},3,[481],{"type":46,"tag":439,"props":482,"children":484},{"emptyLinePlaceholder":483},true,[485],{"type":52,"value":486},"\n",{"type":46,"tag":439,"props":488,"children":489},{"class":441,"line":248},[490],{"type":46,"tag":439,"props":491,"children":492},{"style":446},[493],{"type":52,"value":494},"# Deploy without prompts\n",{"type":46,"tag":439,"props":496,"children":497},{"class":441,"line":286},[498,504,510,515,520],{"type":46,"tag":439,"props":499,"children":501},{"style":500},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[502],{"type":52,"value":503},"npx",{"type":46,"tag":439,"props":505,"children":507},{"style":506},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[508],{"type":52,"value":509}," webflow",{"type":46,"tag":439,"props":511,"children":512},{"style":506},[513],{"type":52,"value":514}," library",{"type":46,"tag":439,"props":516,"children":517},{"style":506},[518],{"type":52,"value":519}," share",{"type":46,"tag":439,"props":521,"children":522},{"style":506},[523],{"type":52,"value":524}," --no-input\n",{"type":46,"tag":61,"props":526,"children":528},{"id":527},"examples",[529],{"type":52,"value":530},"Examples",{"type":46,"tag":55,"props":532,"children":533},{},[534],{"type":46,"tag":71,"props":535,"children":536},{},[537],{"type":52,"value":538},"User prompt:",{"type":46,"tag":412,"props":540,"children":543},{"className":541,"code":542,"language":52},[415],"Deploy my components to Webflow\n",[544],{"type":46,"tag":138,"props":545,"children":546},{"__ignoreMap":420},[547],{"type":52,"value":542},{"type":46,"tag":55,"props":549,"children":550},{},[551],{"type":46,"tag":71,"props":552,"children":553},{},[554],{"type":52,"value":555},"Response:",{"type":46,"tag":412,"props":557,"children":560},{"className":558,"code":559,"language":52},[415],"🚀 Deploy Guide: Code Components\n\nLet me guide you through deploying your component library.\n\n---\n\n## Step 1: Pre-Flight Checks\n\nRunning validation...\n\n✅ webflow.json configured\n✅ Dependencies installed\n✅ Build succeeds\n✅ Bundle size: 2.3MB (under 50MB limit)\n\nAll checks passed! Ready to deploy.\n\n---\n\n## Step 2: Authentication\n\n**Option A: Interactive (Recommended for first time)**\n\nRun the deploy command:\n```bash\nnpx webflow library share\n",[561],{"type":46,"tag":138,"props":562,"children":563},{"__ignoreMap":420},[564],{"type":52,"value":559},{"type":46,"tag":55,"props":566,"children":567},{},[568],{"type":52,"value":569},"This will:",{"type":46,"tag":160,"props":571,"children":572},{},[573,578,583],{"type":46,"tag":81,"props":574,"children":575},{},[576],{"type":52,"value":577},"Open your browser for Webflow login",{"type":46,"tag":81,"props":579,"children":580},{},[581],{"type":52,"value":582},"Ask you to authorize the app",{"type":46,"tag":81,"props":584,"children":585},{},[586],{"type":52,"value":587},"Save credentials to .env",{"type":46,"tag":55,"props":589,"children":590},{},[591],{"type":46,"tag":71,"props":592,"children":593},{},[594],{"type":52,"value":595},"Option B: API Token (For CI\u002FCD or returning users)",{"type":46,"tag":160,"props":597,"children":598},{},[599,632],{"type":46,"tag":81,"props":600,"children":601},{},[602,604],{"type":52,"value":603},"Get your Workspace API Token:",{"type":46,"tag":77,"props":605,"children":606},{},[607,612,617,622,627],{"type":46,"tag":81,"props":608,"children":609},{},[610],{"type":52,"value":611},"Go to Webflow Dashboard",{"type":46,"tag":81,"props":613,"children":614},{},[615],{"type":52,"value":616},"Navigate to your Workspace Settings",{"type":46,"tag":81,"props":618,"children":619},{},[620],{"type":52,"value":621},"Find \"Apps & Integrations\" → \"Manage\"",{"type":46,"tag":81,"props":623,"children":624},{},[625],{"type":52,"value":626},"Under \"Workspace API Access\", click \"Generate API Token\"",{"type":46,"tag":81,"props":628,"children":629},{},[630],{"type":52,"value":631},"Copy the token",{"type":46,"tag":81,"props":633,"children":634},{},[635],{"type":52,"value":636},"Run with token:",{"type":46,"tag":412,"props":638,"children":640},{"className":431,"code":639,"language":433,"meta":420,"style":420},"npx webflow library share --api-token YOUR_TOKEN_HERE\n",[641],{"type":46,"tag":138,"props":642,"children":643},{"__ignoreMap":420},[644],{"type":46,"tag":439,"props":645,"children":646},{"class":441,"line":442},[647,651,655,659,663,668],{"type":46,"tag":439,"props":648,"children":649},{"style":500},[650],{"type":52,"value":503},{"type":46,"tag":439,"props":652,"children":653},{"style":506},[654],{"type":52,"value":509},{"type":46,"tag":439,"props":656,"children":657},{"style":506},[658],{"type":52,"value":514},{"type":46,"tag":439,"props":660,"children":661},{"style":506},[662],{"type":52,"value":519},{"type":46,"tag":439,"props":664,"children":665},{"style":506},[666],{"type":52,"value":667}," --api-token",{"type":46,"tag":439,"props":669,"children":670},{"style":506},[671],{"type":52,"value":672}," YOUR_TOKEN_HERE\n",{"type":46,"tag":55,"props":674,"children":675},{},[676],{"type":52,"value":677},"Or set environment variable:",{"type":46,"tag":412,"props":679,"children":681},{"className":431,"code":680,"language":433,"meta":420,"style":420},"export WEBFLOW_WORKSPACE_API_TOKEN=YOUR_TOKEN_HERE\nnpx webflow library share\n",[682],{"type":46,"tag":138,"props":683,"children":684},{"__ignoreMap":420},[685,705],{"type":46,"tag":439,"props":686,"children":687},{"class":441,"line":442},[688,692,696,700],{"type":46,"tag":439,"props":689,"children":690},{"style":456},[691],{"type":52,"value":459},{"type":46,"tag":439,"props":693,"children":694},{"style":462},[695],{"type":52,"value":465},{"type":46,"tag":439,"props":697,"children":698},{"style":468},[699],{"type":52,"value":471},{"type":46,"tag":439,"props":701,"children":702},{"style":462},[703],{"type":52,"value":704},"YOUR_TOKEN_HERE\n",{"type":46,"tag":439,"props":706,"children":707},{"class":441,"line":452},[708,712,716,720],{"type":46,"tag":439,"props":709,"children":710},{"style":500},[711],{"type":52,"value":503},{"type":46,"tag":439,"props":713,"children":714},{"style":506},[715],{"type":52,"value":509},{"type":46,"tag":439,"props":717,"children":718},{"style":506},[719],{"type":52,"value":514},{"type":46,"tag":439,"props":721,"children":722},{"style":506},[723],{"type":52,"value":724}," share\n",{"type":46,"tag":726,"props":727,"children":728},"hr",{},[],{"type":46,"tag":61,"props":730,"children":732},{"id":731},"step-3-deploy",[733],{"type":52,"value":734},"Step 3: Deploy",{"type":46,"tag":55,"props":736,"children":737},{},[738],{"type":52,"value":739},"Ready to deploy? Run:",{"type":46,"tag":412,"props":741,"children":743},{"className":431,"code":742,"language":433,"meta":420,"style":420},"npx webflow library share\n",[744],{"type":46,"tag":138,"props":745,"children":746},{"__ignoreMap":420},[747],{"type":46,"tag":439,"props":748,"children":749},{"class":441,"line":442},[750,754,758,762],{"type":46,"tag":439,"props":751,"children":752},{"style":500},[753],{"type":52,"value":503},{"type":46,"tag":439,"props":755,"children":756},{"style":506},[757],{"type":52,"value":509},{"type":46,"tag":439,"props":759,"children":760},{"style":506},[761],{"type":52,"value":514},{"type":46,"tag":439,"props":763,"children":764},{"style":506},[765],{"type":52,"value":724},{"type":46,"tag":55,"props":767,"children":768},{},[769],{"type":52,"value":770},"Expected output:",{"type":46,"tag":412,"props":772,"children":775},{"className":773,"code":774,"language":52},[415],"✓ Bundling components...\n✓ Authenticating...\n✓ Uploading library...\n✓ Processing...\n\nLibrary \"My Component Library\" successfully shared!\n\nComponents:\n- Button\n- Card\n- Accordion\n- Modal\n\nView in Designer: Open any site in your workspace\n",[776],{"type":46,"tag":138,"props":777,"children":778},{"__ignoreMap":420},[779],{"type":52,"value":774},{"type":46,"tag":726,"props":781,"children":782},{},[],{"type":46,"tag":61,"props":784,"children":786},{"id":785},"step-4-verify-in-designer",[787],{"type":52,"value":788},"Step 4: Verify in Designer",{"type":46,"tag":55,"props":790,"children":791},{},[792],{"type":52,"value":793},"After deployment:",{"type":46,"tag":160,"props":795,"children":796},{},[797,807,817,827,837],{"type":46,"tag":81,"props":798,"children":799},{},[800,805],{"type":46,"tag":71,"props":801,"children":802},{},[803],{"type":52,"value":804},"Open Webflow Designer",{"type":52,"value":806}," for any site in your workspace",{"type":46,"tag":81,"props":808,"children":809},{},[810,815],{"type":46,"tag":71,"props":811,"children":812},{},[813],{"type":52,"value":814},"Open Add Panel",{"type":52,"value":816}," (A key or + button)",{"type":46,"tag":81,"props":818,"children":819},{},[820,825],{"type":46,"tag":71,"props":821,"children":822},{},[823],{"type":52,"value":824},"Find \"Components\"",{"type":52,"value":826}," section",{"type":46,"tag":81,"props":828,"children":829},{},[830,835],{"type":46,"tag":71,"props":831,"children":832},{},[833],{"type":52,"value":834},"Look for your library",{"type":52,"value":836}," under custom components",{"type":46,"tag":81,"props":838,"children":839},{},[840,845],{"type":46,"tag":71,"props":841,"children":842},{},[843],{"type":52,"value":844},"Drag a component",{"type":52,"value":846}," onto the canvas to test",{"type":46,"tag":726,"props":848,"children":849},{},[],{"type":46,"tag":61,"props":851,"children":853},{"id":852},"step-5-next-steps",[854],{"type":52,"value":855},"Step 5: Next Steps",{"type":46,"tag":55,"props":857,"children":858},{},[859,861],{"type":52,"value":860},"✅ ",{"type":46,"tag":71,"props":862,"children":863},{},[864],{"type":52,"value":865},"Your components are live!",{"type":46,"tag":55,"props":867,"children":868},{},[869],{"type":46,"tag":71,"props":870,"children":871},{},[872],{"type":52,"value":873},"To update components later:",{"type":46,"tag":412,"props":875,"children":877},{"className":431,"code":876,"language":433,"meta":420,"style":420},"# Make your changes, then re-deploy\nnpx webflow library share\n",[878],{"type":46,"tag":138,"props":879,"children":880},{"__ignoreMap":420},[881,889],{"type":46,"tag":439,"props":882,"children":883},{"class":441,"line":442},[884],{"type":46,"tag":439,"props":885,"children":886},{"style":446},[887],{"type":52,"value":888},"# Make your changes, then re-deploy\n",{"type":46,"tag":439,"props":890,"children":891},{"class":441,"line":452},[892,896,900,904],{"type":46,"tag":439,"props":893,"children":894},{"style":500},[895],{"type":52,"value":503},{"type":46,"tag":439,"props":897,"children":898},{"style":506},[899],{"type":52,"value":509},{"type":46,"tag":439,"props":901,"children":902},{"style":506},[903],{"type":52,"value":514},{"type":46,"tag":439,"props":905,"children":906},{"style":506},[907],{"type":52,"value":724},{"type":46,"tag":55,"props":909,"children":910},{},[911],{"type":46,"tag":71,"props":912,"children":913},{},[914],{"type":52,"value":915},"Important notes:",{"type":46,"tag":77,"props":917,"children":918},{},[919,924,929],{"type":46,"tag":81,"props":920,"children":921},{},[922],{"type":52,"value":923},"Updates replace the entire library (no partial updates)",{"type":46,"tag":81,"props":925,"children":926},{},[927],{"type":52,"value":928},"Existing component instances will update automatically",{"type":46,"tag":81,"props":930,"children":931},{},[932],{"type":52,"value":933},"Don't rename .webflow.tsx files (breaks instances)",{"type":46,"tag":726,"props":935,"children":936},{},[],{"type":46,"tag":55,"props":938,"children":939},{},[940,942],{"type":52,"value":941},"💡 ",{"type":46,"tag":71,"props":943,"children":944},{},[945],{"type":52,"value":946},"Tips:",{"type":46,"tag":77,"props":948,"children":949},{},[950,955,968],{"type":46,"tag":81,"props":951,"children":952},{},[953],{"type":52,"value":954},"Add .env to .gitignore to protect your token",{"type":46,"tag":81,"props":956,"children":957},{},[958,960,966],{"type":52,"value":959},"Use ",{"type":46,"tag":138,"props":961,"children":963},{"className":962},[],[964],{"type":52,"value":965},"--verbose",{"type":52,"value":967}," flag for debugging issues",{"type":46,"tag":81,"props":969,"children":970},{},[971,972,978],{"type":52,"value":304},{"type":46,"tag":138,"props":973,"children":975},{"className":974},[],[976],{"type":52,"value":977},"npx webflow library log",{"type":52,"value":979}," to see recent deploy logs",{"type":46,"tag":412,"props":981,"children":984},{"className":982,"code":983,"language":52},[415],"\n---\n\n**Example: First-Time Setup**\n\n",[985],{"type":46,"tag":138,"props":986,"children":987},{"__ignoreMap":420},[988],{"type":52,"value":983},{"type":46,"tag":55,"props":990,"children":991},{},[992],{"type":52,"value":993},"🚀 Deploy Guide: First-Time Setup",{"type":46,"tag":55,"props":995,"children":996},{},[997],{"type":52,"value":998},"I see this is your first deployment. Let me walk you through the full setup.",{"type":46,"tag":726,"props":1000,"children":1001},{},[],{"type":46,"tag":61,"props":1003,"children":1005},{"id":1004},"step-1-get-workspace-api-token",[1006],{"type":52,"value":1007},"Step 1: Get Workspace API Token",{"type":46,"tag":55,"props":1009,"children":1010},{},[1011],{"type":52,"value":1012},"You'll need a Workspace API token to deploy:",{"type":46,"tag":160,"props":1014,"children":1015},{},[1016,1026,1036,1046,1069],{"type":46,"tag":81,"props":1017,"children":1018},{},[1019,1024],{"type":46,"tag":71,"props":1020,"children":1021},{},[1022],{"type":52,"value":1023},"Open Webflow Dashboard",{"type":52,"value":1025},"\nGo to webflow.com and log in",{"type":46,"tag":81,"props":1027,"children":1028},{},[1029,1034],{"type":46,"tag":71,"props":1030,"children":1031},{},[1032],{"type":52,"value":1033},"Navigate to Workspace Settings",{"type":52,"value":1035},"\nClick your workspace name → Settings",{"type":46,"tag":81,"props":1037,"children":1038},{},[1039,1044],{"type":46,"tag":71,"props":1040,"children":1041},{},[1042],{"type":52,"value":1043},"Find API Access",{"type":52,"value":1045},"\nGo to \"Apps & Integrations\" → \"Manage\"",{"type":46,"tag":81,"props":1047,"children":1048},{},[1049,1054,1056],{"type":46,"tag":71,"props":1050,"children":1051},{},[1052],{"type":52,"value":1053},"Generate Token",{"type":52,"value":1055},"\nUnder \"Workspace API Access\":",{"type":46,"tag":77,"props":1057,"children":1058},{},[1059,1064],{"type":46,"tag":81,"props":1060,"children":1061},{},[1062],{"type":52,"value":1063},"Click \"Generate API Token\"",{"type":46,"tag":81,"props":1065,"children":1066},{},[1067],{"type":52,"value":1068},"Copy the token (you won't see it again!)",{"type":46,"tag":81,"props":1070,"children":1071},{},[1072,1077,1079,1088,1092,1094],{"type":46,"tag":71,"props":1073,"children":1074},{},[1075],{"type":52,"value":1076},"Save Token",{"type":52,"value":1078},"\nAdd to your .env file:",{"type":46,"tag":412,"props":1080,"children":1083},{"className":1081,"code":1082,"language":52},[415],"WEBFLOW_WORKSPACE_API_TOKEN=your-token-here\n",[1084],{"type":46,"tag":138,"props":1085,"children":1086},{"__ignoreMap":420},[1087],{"type":52,"value":1082},{"type":46,"tag":1089,"props":1090,"children":1091},"br",{},[],{"type":52,"value":1093},"⚠️ Add .env to .gitignore:",{"type":46,"tag":412,"props":1095,"children":1097},{"className":431,"code":1096,"language":433,"meta":420,"style":420},"echo \".env\" >> .gitignore\n",[1098],{"type":46,"tag":138,"props":1099,"children":1100},{"__ignoreMap":420},[1101],{"type":46,"tag":439,"props":1102,"children":1103},{"class":441,"line":442},[1104,1110,1115,1120,1125,1130],{"type":46,"tag":439,"props":1105,"children":1107},{"style":1106},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[1108],{"type":52,"value":1109},"echo",{"type":46,"tag":439,"props":1111,"children":1112},{"style":468},[1113],{"type":52,"value":1114}," \"",{"type":46,"tag":439,"props":1116,"children":1117},{"style":506},[1118],{"type":52,"value":1119},".env",{"type":46,"tag":439,"props":1121,"children":1122},{"style":468},[1123],{"type":52,"value":1124},"\"",{"type":46,"tag":439,"props":1126,"children":1127},{"style":468},[1128],{"type":52,"value":1129}," >>",{"type":46,"tag":439,"props":1131,"children":1132},{"style":506},[1133],{"type":52,"value":1134}," .gitignore\n",{"type":46,"tag":726,"props":1136,"children":1137},{},[],{"type":46,"tag":61,"props":1139,"children":1141},{"id":1140},"step-2-deploy",[1142],{"type":52,"value":1143},"Step 2: Deploy",{"type":46,"tag":55,"props":1145,"children":1146},{},[1147],{"type":52,"value":1148},"Now run:",{"type":46,"tag":412,"props":1150,"children":1151},{"className":431,"code":742,"language":433,"meta":420,"style":420},[1152],{"type":46,"tag":138,"props":1153,"children":1154},{"__ignoreMap":420},[1155],{"type":46,"tag":439,"props":1156,"children":1157},{"class":441,"line":442},[1158,1162,1166,1170],{"type":46,"tag":439,"props":1159,"children":1160},{"style":500},[1161],{"type":52,"value":503},{"type":46,"tag":439,"props":1163,"children":1164},{"style":506},[1165],{"type":52,"value":509},{"type":46,"tag":439,"props":1167,"children":1168},{"style":506},[1169],{"type":52,"value":514},{"type":46,"tag":439,"props":1171,"children":1172},{"style":506},[1173],{"type":52,"value":724},{"type":46,"tag":55,"props":1175,"children":1176},{},[1177],{"type":52,"value":1178},"The CLI will:",{"type":46,"tag":160,"props":1180,"children":1181},{},[1182,1187,1192],{"type":46,"tag":81,"props":1183,"children":1184},{},[1185],{"type":52,"value":1186},"Read your token from .env",{"type":46,"tag":81,"props":1188,"children":1189},{},[1190],{"type":52,"value":1191},"Bundle your components",{"type":46,"tag":81,"props":1193,"children":1194},{},[1195],{"type":52,"value":1196},"Upload to your workspace",{"type":46,"tag":726,"props":1198,"children":1199},{},[],{"type":46,"tag":61,"props":1201,"children":1203},{"id":1202},"step-3-verify",[1204],{"type":52,"value":1205},"Step 3: Verify",{"type":46,"tag":55,"props":1207,"children":1208},{},[1209],{"type":52,"value":1210},"After successful deploy:",{"type":46,"tag":160,"props":1212,"children":1213},{},[1214,1218,1223,1228],{"type":46,"tag":81,"props":1215,"children":1216},{},[1217],{"type":52,"value":804},{"type":46,"tag":81,"props":1219,"children":1220},{},[1221],{"type":52,"value":1222},"Press 'A' to open Add panel",{"type":46,"tag":81,"props":1224,"children":1225},{},[1226],{"type":52,"value":1227},"Find your components in the Components section",{"type":46,"tag":81,"props":1229,"children":1230},{},[1231],{"type":52,"value":1232},"Drag onto canvas to test",{"type":46,"tag":726,"props":1234,"children":1235},{},[],{"type":46,"tag":55,"props":1237,"children":1238},{},[1239,1241],{"type":52,"value":1240},"🎉 ",{"type":46,"tag":71,"props":1242,"children":1243},{},[1244],{"type":52,"value":1245},"First deployment complete!",{"type":46,"tag":55,"props":1247,"children":1248},{},[1249],{"type":52,"value":1250},"Future deployments are simpler:",{"type":46,"tag":412,"props":1252,"children":1254},{"className":431,"code":1253,"language":433,"meta":420,"style":420},"# Just run this after making changes\nnpx webflow library share\n",[1255],{"type":46,"tag":138,"props":1256,"children":1257},{"__ignoreMap":420},[1258,1266],{"type":46,"tag":439,"props":1259,"children":1260},{"class":441,"line":442},[1261],{"type":46,"tag":439,"props":1262,"children":1263},{"style":446},[1264],{"type":52,"value":1265},"# Just run this after making changes\n",{"type":46,"tag":439,"props":1267,"children":1268},{"class":441,"line":452},[1269,1273,1277,1281],{"type":46,"tag":439,"props":1270,"children":1271},{"style":500},[1272],{"type":52,"value":503},{"type":46,"tag":439,"props":1274,"children":1275},{"style":506},[1276],{"type":52,"value":509},{"type":46,"tag":439,"props":1278,"children":1279},{"style":506},[1280],{"type":52,"value":514},{"type":46,"tag":439,"props":1282,"children":1283},{"style":506},[1284],{"type":52,"value":724},{"type":46,"tag":412,"props":1286,"children":1289},{"className":1287,"code":1288,"language":52},[415],"\n---\n\n**Example: CI\u002FCD Setup**\n\n",[1290],{"type":46,"tag":138,"props":1291,"children":1292},{"__ignoreMap":420},[1293],{"type":52,"value":1288},{"type":46,"tag":55,"props":1295,"children":1296},{},[1297],{"type":52,"value":1298},"🚀 Deploy Guide: CI\u002FCD Setup",{"type":46,"tag":55,"props":1300,"children":1301},{},[1302],{"type":52,"value":1303},"Setting up automated deployments for your pipeline.",{"type":46,"tag":726,"props":1305,"children":1306},{},[],{"type":46,"tag":61,"props":1308,"children":1310},{"id":1309},"github-actions-example",[1311],{"type":52,"value":1312},"GitHub Actions Example",{"type":46,"tag":55,"props":1314,"children":1315},{},[1316,1318,1324],{"type":52,"value":1317},"Create ",{"type":46,"tag":138,"props":1319,"children":1321},{"className":1320},[],[1322],{"type":52,"value":1323},".github\u002Fworkflows\u002Fdeploy.yml",{"type":52,"value":172},{"type":46,"tag":412,"props":1326,"children":1330},{"className":1327,"code":1328,"language":1329,"meta":420,"style":420},"language-yaml shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","name: Deploy to Webflow\n\non:\n  push:\n    branches: [main]\n\njobs:\n  deploy:\n    runs-on: ubuntu-latest\n\n    steps:\n      - uses: actions\u002Fcheckout@v4\n\n      - name: Setup Node.js\n        uses: actions\u002Fsetup-node@v4\n        with:\n          node-version: '20'\n          cache: 'npm'\n\n      - name: Install dependencies\n        run: npm ci\n\n      - name: Deploy to Webflow\n        env:\n          WEBFLOW_WORKSPACE_API_TOKEN: ${{ secrets.WEBFLOW_WORKSPACE_API_TOKEN }}\n        run: npx webflow library share --no-input\n","yaml",[1331],{"type":46,"tag":138,"props":1332,"children":1333},{"__ignoreMap":420},[1334,1352,1359,1372,1384,1411,1418,1431,1444,1462,1470,1483,1506,1514,1536,1554,1567,1594,1620,1628,1649,1667,1675,1695,1708,1726],{"type":46,"tag":439,"props":1335,"children":1336},{"class":441,"line":442},[1337,1343,1347],{"type":46,"tag":439,"props":1338,"children":1340},{"style":1339},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[1341],{"type":52,"value":1342},"name",{"type":46,"tag":439,"props":1344,"children":1345},{"style":468},[1346],{"type":52,"value":172},{"type":46,"tag":439,"props":1348,"children":1349},{"style":506},[1350],{"type":52,"value":1351}," Deploy to Webflow\n",{"type":46,"tag":439,"props":1353,"children":1354},{"class":441,"line":452},[1355],{"type":46,"tag":439,"props":1356,"children":1357},{"emptyLinePlaceholder":483},[1358],{"type":52,"value":486},{"type":46,"tag":439,"props":1360,"children":1361},{"class":441,"line":479},[1362,1368],{"type":46,"tag":439,"props":1363,"children":1365},{"style":1364},"--shiki-light:#FF5370;--shiki-default:#FF9CAC;--shiki-dark:#FF9CAC",[1366],{"type":52,"value":1367},"on",{"type":46,"tag":439,"props":1369,"children":1370},{"style":468},[1371],{"type":52,"value":259},{"type":46,"tag":439,"props":1373,"children":1374},{"class":441,"line":248},[1375,1380],{"type":46,"tag":439,"props":1376,"children":1377},{"style":1339},[1378],{"type":52,"value":1379},"  push",{"type":46,"tag":439,"props":1381,"children":1382},{"style":468},[1383],{"type":52,"value":259},{"type":46,"tag":439,"props":1385,"children":1386},{"class":441,"line":286},[1387,1392,1396,1401,1406],{"type":46,"tag":439,"props":1388,"children":1389},{"style":1339},[1390],{"type":52,"value":1391},"    branches",{"type":46,"tag":439,"props":1393,"children":1394},{"style":468},[1395],{"type":52,"value":172},{"type":46,"tag":439,"props":1397,"children":1398},{"style":468},[1399],{"type":52,"value":1400}," [",{"type":46,"tag":439,"props":1402,"children":1403},{"style":506},[1404],{"type":52,"value":1405},"main",{"type":46,"tag":439,"props":1407,"children":1408},{"style":468},[1409],{"type":52,"value":1410},"]\n",{"type":46,"tag":439,"props":1412,"children":1413},{"class":441,"line":329},[1414],{"type":46,"tag":439,"props":1415,"children":1416},{"emptyLinePlaceholder":483},[1417],{"type":52,"value":486},{"type":46,"tag":439,"props":1419,"children":1421},{"class":441,"line":1420},7,[1422,1427],{"type":46,"tag":439,"props":1423,"children":1424},{"style":1339},[1425],{"type":52,"value":1426},"jobs",{"type":46,"tag":439,"props":1428,"children":1429},{"style":468},[1430],{"type":52,"value":259},{"type":46,"tag":439,"props":1432,"children":1434},{"class":441,"line":1433},8,[1435,1440],{"type":46,"tag":439,"props":1436,"children":1437},{"style":1339},[1438],{"type":52,"value":1439},"  deploy",{"type":46,"tag":439,"props":1441,"children":1442},{"style":468},[1443],{"type":52,"value":259},{"type":46,"tag":439,"props":1445,"children":1447},{"class":441,"line":1446},9,[1448,1453,1457],{"type":46,"tag":439,"props":1449,"children":1450},{"style":1339},[1451],{"type":52,"value":1452},"    runs-on",{"type":46,"tag":439,"props":1454,"children":1455},{"style":468},[1456],{"type":52,"value":172},{"type":46,"tag":439,"props":1458,"children":1459},{"style":506},[1460],{"type":52,"value":1461}," ubuntu-latest\n",{"type":46,"tag":439,"props":1463,"children":1465},{"class":441,"line":1464},10,[1466],{"type":46,"tag":439,"props":1467,"children":1468},{"emptyLinePlaceholder":483},[1469],{"type":52,"value":486},{"type":46,"tag":439,"props":1471,"children":1473},{"class":441,"line":1472},11,[1474,1479],{"type":46,"tag":439,"props":1475,"children":1476},{"style":1339},[1477],{"type":52,"value":1478},"    steps",{"type":46,"tag":439,"props":1480,"children":1481},{"style":468},[1482],{"type":52,"value":259},{"type":46,"tag":439,"props":1484,"children":1486},{"class":441,"line":1485},12,[1487,1492,1497,1501],{"type":46,"tag":439,"props":1488,"children":1489},{"style":468},[1490],{"type":52,"value":1491},"      -",{"type":46,"tag":439,"props":1493,"children":1494},{"style":1339},[1495],{"type":52,"value":1496}," uses",{"type":46,"tag":439,"props":1498,"children":1499},{"style":468},[1500],{"type":52,"value":172},{"type":46,"tag":439,"props":1502,"children":1503},{"style":506},[1504],{"type":52,"value":1505}," actions\u002Fcheckout@v4\n",{"type":46,"tag":439,"props":1507,"children":1509},{"class":441,"line":1508},13,[1510],{"type":46,"tag":439,"props":1511,"children":1512},{"emptyLinePlaceholder":483},[1513],{"type":52,"value":486},{"type":46,"tag":439,"props":1515,"children":1517},{"class":441,"line":1516},14,[1518,1522,1527,1531],{"type":46,"tag":439,"props":1519,"children":1520},{"style":468},[1521],{"type":52,"value":1491},{"type":46,"tag":439,"props":1523,"children":1524},{"style":1339},[1525],{"type":52,"value":1526}," name",{"type":46,"tag":439,"props":1528,"children":1529},{"style":468},[1530],{"type":52,"value":172},{"type":46,"tag":439,"props":1532,"children":1533},{"style":506},[1534],{"type":52,"value":1535}," Setup Node.js\n",{"type":46,"tag":439,"props":1537,"children":1539},{"class":441,"line":1538},15,[1540,1545,1549],{"type":46,"tag":439,"props":1541,"children":1542},{"style":1339},[1543],{"type":52,"value":1544},"        uses",{"type":46,"tag":439,"props":1546,"children":1547},{"style":468},[1548],{"type":52,"value":172},{"type":46,"tag":439,"props":1550,"children":1551},{"style":506},[1552],{"type":52,"value":1553}," actions\u002Fsetup-node@v4\n",{"type":46,"tag":439,"props":1555,"children":1557},{"class":441,"line":1556},16,[1558,1563],{"type":46,"tag":439,"props":1559,"children":1560},{"style":1339},[1561],{"type":52,"value":1562},"        with",{"type":46,"tag":439,"props":1564,"children":1565},{"style":468},[1566],{"type":52,"value":259},{"type":46,"tag":439,"props":1568,"children":1569},{"class":441,"line":28},[1570,1575,1579,1584,1589],{"type":46,"tag":439,"props":1571,"children":1572},{"style":1339},[1573],{"type":52,"value":1574},"          node-version",{"type":46,"tag":439,"props":1576,"children":1577},{"style":468},[1578],{"type":52,"value":172},{"type":46,"tag":439,"props":1580,"children":1581},{"style":468},[1582],{"type":52,"value":1583}," '",{"type":46,"tag":439,"props":1585,"children":1586},{"style":506},[1587],{"type":52,"value":1588},"20",{"type":46,"tag":439,"props":1590,"children":1591},{"style":468},[1592],{"type":52,"value":1593},"'\n",{"type":46,"tag":439,"props":1595,"children":1597},{"class":441,"line":1596},18,[1598,1603,1607,1611,1616],{"type":46,"tag":439,"props":1599,"children":1600},{"style":1339},[1601],{"type":52,"value":1602},"          cache",{"type":46,"tag":439,"props":1604,"children":1605},{"style":468},[1606],{"type":52,"value":172},{"type":46,"tag":439,"props":1608,"children":1609},{"style":468},[1610],{"type":52,"value":1583},{"type":46,"tag":439,"props":1612,"children":1613},{"style":506},[1614],{"type":52,"value":1615},"npm",{"type":46,"tag":439,"props":1617,"children":1618},{"style":468},[1619],{"type":52,"value":1593},{"type":46,"tag":439,"props":1621,"children":1623},{"class":441,"line":1622},19,[1624],{"type":46,"tag":439,"props":1625,"children":1626},{"emptyLinePlaceholder":483},[1627],{"type":52,"value":486},{"type":46,"tag":439,"props":1629,"children":1631},{"class":441,"line":1630},20,[1632,1636,1640,1644],{"type":46,"tag":439,"props":1633,"children":1634},{"style":468},[1635],{"type":52,"value":1491},{"type":46,"tag":439,"props":1637,"children":1638},{"style":1339},[1639],{"type":52,"value":1526},{"type":46,"tag":439,"props":1641,"children":1642},{"style":468},[1643],{"type":52,"value":172},{"type":46,"tag":439,"props":1645,"children":1646},{"style":506},[1647],{"type":52,"value":1648}," Install dependencies\n",{"type":46,"tag":439,"props":1650,"children":1652},{"class":441,"line":1651},21,[1653,1658,1662],{"type":46,"tag":439,"props":1654,"children":1655},{"style":1339},[1656],{"type":52,"value":1657},"        run",{"type":46,"tag":439,"props":1659,"children":1660},{"style":468},[1661],{"type":52,"value":172},{"type":46,"tag":439,"props":1663,"children":1664},{"style":506},[1665],{"type":52,"value":1666}," npm ci\n",{"type":46,"tag":439,"props":1668,"children":1670},{"class":441,"line":1669},22,[1671],{"type":46,"tag":439,"props":1672,"children":1673},{"emptyLinePlaceholder":483},[1674],{"type":52,"value":486},{"type":46,"tag":439,"props":1676,"children":1678},{"class":441,"line":1677},23,[1679,1683,1687,1691],{"type":46,"tag":439,"props":1680,"children":1681},{"style":468},[1682],{"type":52,"value":1491},{"type":46,"tag":439,"props":1684,"children":1685},{"style":1339},[1686],{"type":52,"value":1526},{"type":46,"tag":439,"props":1688,"children":1689},{"style":468},[1690],{"type":52,"value":172},{"type":46,"tag":439,"props":1692,"children":1693},{"style":506},[1694],{"type":52,"value":1351},{"type":46,"tag":439,"props":1696,"children":1698},{"class":441,"line":1697},24,[1699,1704],{"type":46,"tag":439,"props":1700,"children":1701},{"style":1339},[1702],{"type":52,"value":1703},"        env",{"type":46,"tag":439,"props":1705,"children":1706},{"style":468},[1707],{"type":52,"value":259},{"type":46,"tag":439,"props":1709,"children":1711},{"class":441,"line":1710},25,[1712,1717,1721],{"type":46,"tag":439,"props":1713,"children":1714},{"style":1339},[1715],{"type":52,"value":1716},"          WEBFLOW_WORKSPACE_API_TOKEN",{"type":46,"tag":439,"props":1718,"children":1719},{"style":468},[1720],{"type":52,"value":172},{"type":46,"tag":439,"props":1722,"children":1723},{"style":506},[1724],{"type":52,"value":1725}," ${{ secrets.WEBFLOW_WORKSPACE_API_TOKEN }}\n",{"type":46,"tag":439,"props":1727,"children":1729},{"class":441,"line":1728},26,[1730,1734,1738],{"type":46,"tag":439,"props":1731,"children":1732},{"style":1339},[1733],{"type":52,"value":1657},{"type":46,"tag":439,"props":1735,"children":1736},{"style":468},[1737],{"type":52,"value":172},{"type":46,"tag":439,"props":1739,"children":1740},{"style":506},[1741],{"type":52,"value":1742}," npx webflow library share --no-input\n",{"type":46,"tag":726,"props":1744,"children":1745},{},[],{"type":46,"tag":61,"props":1747,"children":1749},{"id":1748},"add-secret-to-github",[1750],{"type":52,"value":1751},"Add Secret to GitHub",{"type":46,"tag":160,"props":1753,"children":1754},{},[1755,1760,1765,1776,1781],{"type":46,"tag":81,"props":1756,"children":1757},{},[1758],{"type":52,"value":1759},"Go to your repo → Settings → Secrets and variables → Actions",{"type":46,"tag":81,"props":1761,"children":1762},{},[1763],{"type":52,"value":1764},"Click \"New repository secret\"",{"type":46,"tag":81,"props":1766,"children":1767},{},[1768,1770],{"type":52,"value":1769},"Name: ",{"type":46,"tag":138,"props":1771,"children":1773},{"className":1772},[],[1774],{"type":52,"value":1775},"WEBFLOW_WORKSPACE_API_TOKEN",{"type":46,"tag":81,"props":1777,"children":1778},{},[1779],{"type":52,"value":1780},"Value: Your workspace API token",{"type":46,"tag":81,"props":1782,"children":1783},{},[1784],{"type":52,"value":1785},"Click \"Add secret\"",{"type":46,"tag":726,"props":1787,"children":1788},{},[],{"type":46,"tag":61,"props":1790,"children":1792},{"id":1791},"key-flags-for-cicd",[1793],{"type":52,"value":1794},"Key Flags for CI\u002FCD",{"type":46,"tag":412,"props":1796,"children":1798},{"className":431,"code":1797,"language":433,"meta":420,"style":420},"npx webflow library share --no-input\n",[1799],{"type":46,"tag":138,"props":1800,"children":1801},{"__ignoreMap":420},[1802],{"type":46,"tag":439,"props":1803,"children":1804},{"class":441,"line":442},[1805,1809,1813,1817,1821],{"type":46,"tag":439,"props":1806,"children":1807},{"style":500},[1808],{"type":52,"value":503},{"type":46,"tag":439,"props":1810,"children":1811},{"style":506},[1812],{"type":52,"value":509},{"type":46,"tag":439,"props":1814,"children":1815},{"style":506},[1816],{"type":52,"value":514},{"type":46,"tag":439,"props":1818,"children":1819},{"style":506},[1820],{"type":52,"value":519},{"type":46,"tag":439,"props":1822,"children":1823},{"style":506},[1824],{"type":52,"value":524},{"type":46,"tag":77,"props":1826,"children":1827},{},[1828,1839],{"type":46,"tag":81,"props":1829,"children":1830},{},[1831,1837],{"type":46,"tag":138,"props":1832,"children":1834},{"className":1833},[],[1835],{"type":52,"value":1836},"--no-input",{"type":52,"value":1838},": Disables interactive prompts",{"type":46,"tag":81,"props":1840,"children":1841},{},[1842,1844,1849],{"type":52,"value":1843},"Uses ",{"type":46,"tag":138,"props":1845,"children":1847},{"className":1846},[],[1848],{"type":52,"value":1775},{"type":52,"value":1850}," env var automatically",{"type":46,"tag":726,"props":1852,"children":1853},{},[],{"type":46,"tag":61,"props":1855,"children":1857},{"id":1856},"optional-add-typescript-check",[1858],{"type":52,"value":1859},"Optional: Add TypeScript Check",{"type":46,"tag":412,"props":1861,"children":1863},{"className":1327,"code":1862,"language":1329,"meta":420,"style":420},"- name: Type check\n  run: npx tsc --noEmit\n",[1864],{"type":46,"tag":138,"props":1865,"children":1866},{"__ignoreMap":420},[1867,1888],{"type":46,"tag":439,"props":1868,"children":1869},{"class":441,"line":442},[1870,1875,1879,1883],{"type":46,"tag":439,"props":1871,"children":1872},{"style":468},[1873],{"type":52,"value":1874},"-",{"type":46,"tag":439,"props":1876,"children":1877},{"style":1339},[1878],{"type":52,"value":1526},{"type":46,"tag":439,"props":1880,"children":1881},{"style":468},[1882],{"type":52,"value":172},{"type":46,"tag":439,"props":1884,"children":1885},{"style":506},[1886],{"type":52,"value":1887}," Type check\n",{"type":46,"tag":439,"props":1889,"children":1890},{"class":441,"line":452},[1891,1896,1900],{"type":46,"tag":439,"props":1892,"children":1893},{"style":1339},[1894],{"type":52,"value":1895},"  run",{"type":46,"tag":439,"props":1897,"children":1898},{"style":468},[1899],{"type":52,"value":172},{"type":46,"tag":439,"props":1901,"children":1902},{"style":506},[1903],{"type":52,"value":1904}," npx tsc --noEmit\n",{"type":46,"tag":726,"props":1906,"children":1907},{},[],{"type":46,"tag":55,"props":1909,"children":1910},{},[1911,1912],{"type":52,"value":860},{"type":46,"tag":71,"props":1913,"children":1914},{},[1915],{"type":52,"value":1916},"CI\u002FCD configured!",{"type":46,"tag":55,"props":1918,"children":1919},{},[1920],{"type":52,"value":1921},"Now every push to main will automatically deploy your components.",{"type":46,"tag":412,"props":1923,"children":1926},{"className":1924,"code":1925,"language":52},[415],"\n## Validation\n\nAfter deployment, verify success with these checks:\n\n| Check | How to Verify |\n|-------|---------------|\n| Deploy completed | `npx webflow library share` exited without errors |\n| Components visible | Open Designer Add panel → find your library |\n| Import logs clean | `npx webflow library log` shows successful import |\n| Bundle size OK | Output shows bundle under 50MB |\n| Props work | Drag component onto canvas, verify props in right panel |\n\n## Guidelines\n\n### Terminology\n\nThe CLI command is `webflow library share`. This skill uses \"deploy\" as the user-facing term for consistency with common developer vocabulary. See the [CLI reference](..\u002F..\u002Freferences\u002FCODE_COMPONENTS_REFERENCE.md) (Section 12) for full command documentation.\n\n### Authentication Methods\n\n| Method | Use Case | Command |\n|--------|----------|---------|\n| Interactive | First time, local dev | `npx webflow library share` |\n| Environment variable | CI\u002FCD, automation | Set `WEBFLOW_WORKSPACE_API_TOKEN` |\n| CLI flag | One-off with different token | `--api-token TOKEN` |\n\n### Pre-Deploy Checklist\n\nBefore every deployment:\n\n- [ ] `npm install` is up to date\n- [ ] Build succeeds locally\n- [ ] Bundle under 50MB\n- [ ] All component tests pass\n- [ ] No SSR-breaking code (or ssr: false set)\n- [ ] Props have default values where supported (not available for Link, Image, Slot, ID)\n\n### Common Deploy Issues\n\n| Issue | Cause | Solution |\n|-------|-------|----------|\n| \"Authentication failed\" | Invalid\u002Fexpired token | Regenerate workspace token |\n| \"Bundle too large\" | Over 50MB | Optimize dependencies |\n| \"Library not found\" | Wrong workspace | Check token workspace |\n| \"Build failed\" | Code errors | Fix compilation errors |\n\n### CLI Flags Reference\n\nAll flags for `npx webflow library share`:\n\n| Flag | Description | Default |\n|------|-------------|---------|\n| `--manifest` | Path to `webflow.json` file | Scans current directory |\n| `--api-token` | Workspace API token | Uses `WEBFLOW_WORKSPACE_API_TOKEN` from `.env` |\n| `--no-input` | Skip interactive prompts (for CI\u002FCD) | No |\n| `--verbose` | Display more debugging information | No |\n| `--dev` | Bundle in development mode (no minification) | No |\n\n### Rollback & Versioning\n\n- Each `library share` replaces the **entire** library — there are no partial updates\n- There is **no built-in rollback** — use git to revert changes and re-deploy\n- **Never rename `.webflow.tsx` files** — renaming creates a new component and removes the old one, breaking all existing instances in projects\n\n### Debugging Commands\n\n```bash\n# Check recent deploy logs\nnpx webflow library log\n\n# Verbose deploy output (detailed errors)\nnpx webflow library share --verbose\n\n# Local bundle verification (catches build errors before deploying)\nnpx webflow library bundle --public-path http:\u002F\u002Flocalhost:4000\u002F\n",[1927],{"type":46,"tag":138,"props":1928,"children":1929},{"__ignoreMap":420},[1930],{"type":52,"value":1925},{"type":46,"tag":153,"props":1932,"children":1934},{"id":1933},"cicd-deployment-1",[1935],{"type":52,"value":428},{"type":46,"tag":55,"props":1937,"children":1938},{},[1939],{"type":52,"value":1940},"The GitHub Actions example above applies to any CI system. The key elements are:",{"type":46,"tag":412,"props":1942,"children":1944},{"className":431,"code":1943,"language":433,"meta":420,"style":420},"# Generic CI pattern:\nnpm ci                                        # Install dependencies\nnpx webflow library share --no-input          # Deploy without prompts\n# Requires WEBFLOW_WORKSPACE_API_TOKEN env var\n",[1945],{"type":46,"tag":138,"props":1946,"children":1947},{"__ignoreMap":420},[1948,1956,1973,2002],{"type":46,"tag":439,"props":1949,"children":1950},{"class":441,"line":442},[1951],{"type":46,"tag":439,"props":1952,"children":1953},{"style":446},[1954],{"type":52,"value":1955},"# Generic CI pattern:\n",{"type":46,"tag":439,"props":1957,"children":1958},{"class":441,"line":452},[1959,1963,1968],{"type":46,"tag":439,"props":1960,"children":1961},{"style":500},[1962],{"type":52,"value":1615},{"type":46,"tag":439,"props":1964,"children":1965},{"style":506},[1966],{"type":52,"value":1967}," ci",{"type":46,"tag":439,"props":1969,"children":1970},{"style":446},[1971],{"type":52,"value":1972},"                                        # Install dependencies\n",{"type":46,"tag":439,"props":1974,"children":1975},{"class":441,"line":479},[1976,1980,1984,1988,1992,1997],{"type":46,"tag":439,"props":1977,"children":1978},{"style":500},[1979],{"type":52,"value":503},{"type":46,"tag":439,"props":1981,"children":1982},{"style":506},[1983],{"type":52,"value":509},{"type":46,"tag":439,"props":1985,"children":1986},{"style":506},[1987],{"type":52,"value":514},{"type":46,"tag":439,"props":1989,"children":1990},{"style":506},[1991],{"type":52,"value":519},{"type":46,"tag":439,"props":1993,"children":1994},{"style":506},[1995],{"type":52,"value":1996}," --no-input",{"type":46,"tag":439,"props":1998,"children":1999},{"style":446},[2000],{"type":52,"value":2001},"          # Deploy without prompts\n",{"type":46,"tag":439,"props":2003,"children":2004},{"class":441,"line":248},[2005],{"type":46,"tag":439,"props":2006,"children":2007},{"style":446},[2008],{"type":52,"value":2009},"# Requires WEBFLOW_WORKSPACE_API_TOKEN env var\n",{"type":46,"tag":153,"props":2011,"children":2013},{"id":2012},"post-deploy-verification",[2014],{"type":52,"value":2015},"Post-Deploy Verification",{"type":46,"tag":55,"props":2017,"children":2018},{},[2019],{"type":52,"value":2020},"Always verify after deployment:",{"type":46,"tag":160,"props":2022,"children":2023},{},[2024,2034,2044,2054,2064],{"type":46,"tag":81,"props":2025,"children":2026},{},[2027,2032],{"type":46,"tag":71,"props":2028,"children":2029},{},[2030],{"type":52,"value":2031},"Check Designer",{"type":52,"value":2033},": Components appear in Add panel",{"type":46,"tag":81,"props":2035,"children":2036},{},[2037,2042],{"type":46,"tag":71,"props":2038,"children":2039},{},[2040],{"type":52,"value":2041},"Test drag-and-drop",{"type":52,"value":2043},": Component renders on canvas",{"type":46,"tag":81,"props":2045,"children":2046},{},[2047,2052],{"type":46,"tag":71,"props":2048,"children":2049},{},[2050],{"type":52,"value":2051},"Test props",{"type":52,"value":2053},": Props editable in right panel",{"type":46,"tag":81,"props":2055,"children":2056},{},[2057,2062],{"type":46,"tag":71,"props":2058,"children":2059},{},[2060],{"type":52,"value":2061},"Test preview",{"type":52,"value":2063},": Component works in preview mode",{"type":46,"tag":81,"props":2065,"children":2066},{},[2067,2072],{"type":46,"tag":71,"props":2068,"children":2069},{},[2070],{"type":52,"value":2071},"Test publish",{"type":52,"value":2073},": Component works on published site",{"type":46,"tag":2075,"props":2076,"children":2077},"style",{},[2078],{"type":52,"value":2079},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":2081,"total":2259},[2082,2101,2116,2133,2148,2164,2180,2194,2208,2215,2229,2245],{"slug":2083,"name":2084,"fn":2085,"description":2086,"org":2087,"tags":2088,"stars":24,"repoUrl":25,"updatedAt":2100},"webflow-clicloud","webflow-cli:cloud","deploy applications to Webflow Cloud","Initialize, build, and deploy full-stack Webflow applications to Webflow Cloud hosting. Supports site-attached deploys (linked to an existing Webflow site) and project app deploys (independent project, no existing site required). Use when creating new projects, deploying existing ones, or setting up CI\u002FCD pipelines for Webflow Cloud.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},[2089,2092,2095,2096,2099],{"name":2090,"slug":2091,"type":16},"CLI","cli",{"name":2093,"slug":2094,"type":16},"Cloud","cloud",{"name":18,"slug":19,"type":16},{"name":2097,"slug":2098,"type":16},"Full-stack","full-stack",{"name":10,"slug":9,"type":16},"2026-05-18T06:47:47.514609",{"slug":2102,"name":2103,"fn":2104,"description":2105,"org":2106,"tags":2107,"stars":24,"repoUrl":25,"updatedAt":2115},"webflow-clicode-component","webflow-cli:code-component","create and deploy Webflow Code Components","Create and deploy reusable React components for Webflow Designer. Configure existing React projects with webflow.json, build and bundle code, validate output, and deploy to workspace using library share. Use when building custom components for designers.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},[2108,2109,2110,2111,2114],{"name":2090,"slug":2091,"type":16},{"name":18,"slug":19,"type":16},{"name":14,"slug":15,"type":16},{"name":2112,"slug":2113,"type":16},"UI Components","ui-components",{"name":10,"slug":9,"type":16},"2026-05-18T06:47:41.421071",{"slug":2117,"name":2118,"fn":2119,"description":2120,"org":2121,"tags":2122,"stars":24,"repoUrl":25,"updatedAt":2132},"webflow-clidesigner-extension","webflow-cli:designer-extension","build Webflow Designer Extensions","Build Designer Extensions for custom Webflow Designer functionality. Lists available templates, initializes extension projects from templates (default\u002Freact\u002Ftypescript-alt), bundles extensions for upload, and serves locally for development.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},[2123,2124,2127,2128,2131],{"name":2090,"slug":2091,"type":16},{"name":2125,"slug":2126,"type":16},"Plugin Development","plugin-development",{"name":14,"slug":15,"type":16},{"name":2129,"slug":2130,"type":16},"TypeScript","typescript",{"name":10,"slug":9,"type":16},"2026-05-18T06:47:43.853573",{"slug":2134,"name":2135,"fn":2136,"description":2137,"org":2138,"tags":2139,"stars":24,"repoUrl":25,"updatedAt":2147},"webflow-clidevlink","webflow-cli:devlink","export Webflow components to React and Next.js","Export Webflow Designer components to React\u002FNext.js code for external projects. Configure devlink settings in webflow.json, sync design updates with devlink sync, validate generated code, show diffs, and provide integration examples. Use when building with Webflow designs in React\u002FNext.js.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},[2140,2141,2142,2145,2146],{"name":2090,"slug":2091,"type":16},{"name":22,"slug":23,"type":16},{"name":2143,"slug":2144,"type":16},"Next.js","next-js",{"name":14,"slug":15,"type":16},{"name":10,"slug":9,"type":16},"2026-05-18T06:47:40.182468",{"slug":2149,"name":2150,"fn":2151,"description":2152,"org":2153,"tags":2154,"stars":24,"repoUrl":25,"updatedAt":2163},"webflow-clitroubleshooter","webflow-cli:troubleshooter","troubleshoot Webflow CLI issues","Diagnose and fix Webflow CLI issues including installation problems, authentication failures, build errors, and bundle problems. Uses CLI diagnostic flags (--version, --help, --verbose, --debug-bundler) for troubleshooting.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},[2155,2156,2159,2162],{"name":2090,"slug":2091,"type":16},{"name":2157,"slug":2158,"type":16},"Configuration","configuration",{"name":2160,"slug":2161,"type":16},"Debugging","debugging",{"name":10,"slug":9,"type":16},"2026-05-18T06:47:48.831648",{"slug":2165,"name":2166,"fn":2167,"description":2168,"org":2169,"tags":2170,"stars":24,"repoUrl":25,"updatedAt":2179},"webflow-code-componentcomponent-audit","webflow-code-component:component-audit","audit Webflow Code Component architecture","Audit Webflow Code Components for architecture decisions - prop exposure, state management, slot opportunities, and Shadow DOM compatibility. Focused on Webflow-specific patterns, not generic React best practices.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},[2171,2174,2177,2178],{"name":2172,"slug":2173,"type":16},"Architecture","architecture",{"name":2175,"slug":2176,"type":16},"Code Analysis","code-analysis",{"name":14,"slug":15,"type":16},{"name":10,"slug":9,"type":16},"2026-05-18T06:47:46.277768",{"slug":2181,"name":2182,"fn":2183,"description":2184,"org":2185,"tags":2186,"stars":24,"repoUrl":25,"updatedAt":2193},"webflow-code-componentcomponent-scaffold","webflow-code-component:component-scaffold","scaffold Webflow Code Component boilerplate","Generate new Webflow Code Component boilerplate with React component, definition file, and optional styling. Automatically checks prerequisites and can set up missing config\u002Fdependencies.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},[2187,2188,2189,2192],{"name":22,"slug":23,"type":16},{"name":14,"slug":15,"type":16},{"name":2190,"slug":2191,"type":16},"Templates","templates",{"name":10,"slug":9,"type":16},"2026-05-18T06:47:42.638042",{"slug":2195,"name":2196,"fn":2197,"description":2198,"org":2199,"tags":2200,"stars":24,"repoUrl":25,"updatedAt":2207},"webflow-code-componentconvert-component","webflow-code-component:convert-component","convert React components to Webflow Code Components","Convert an existing React component into a Webflow Code Component. Analyzes TypeScript props, maps to Webflow prop types, generates the .webflow.tsx definition file, and identifies required modifications.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},[2201,2204,2205,2206],{"name":2202,"slug":2203,"type":16},"Migration","migration",{"name":14,"slug":15,"type":16},{"name":2129,"slug":2130,"type":16},{"name":10,"slug":9,"type":16},"2026-05-18T06:47:52.523608",{"slug":4,"name":5,"fn":6,"description":7,"org":2209,"tags":2210,"stars":24,"repoUrl":25,"updatedAt":26},{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},[2211,2212,2213,2214],{"name":18,"slug":19,"type":16},{"name":22,"slug":23,"type":16},{"name":14,"slug":15,"type":16},{"name":10,"slug":9,"type":16},{"slug":2216,"name":2217,"fn":2218,"description":2219,"org":2220,"tags":2221,"stars":24,"repoUrl":25,"updatedAt":2228},"webflow-code-componentlocal-dev-setup","webflow-code-component:local-dev-setup","set up local Webflow Code Component projects","Initialize a new Webflow Code Components project from scratch. Creates project structure, installs dependencies, configures webflow.json, and sets up development environment.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},[2222,2223,2226,2227],{"name":2157,"slug":2158,"type":16},{"name":2224,"slug":2225,"type":16},"Local Development","local-development",{"name":14,"slug":15,"type":16},{"name":10,"slug":9,"type":16},"2026-05-18T06:47:50.062783",{"slug":2230,"name":2231,"fn":2232,"description":2233,"org":2234,"tags":2235,"stars":24,"repoUrl":25,"updatedAt":2244},"webflow-code-componentpre-deploy-check","webflow-code-component:pre-deploy-check","validate Webflow Code Components before deployment","Pre-deployment validation for Webflow Code Components. Checks bundle size, dependencies, prop configurations, SSR compatibility, styling setup, and common issues before running webflow library share.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},[2236,2237,2240,2243],{"name":18,"slug":19,"type":16},{"name":2238,"slug":2239,"type":16},"QA","qa",{"name":2241,"slug":2242,"type":16},"Validation","validation",{"name":10,"slug":9,"type":16},"2026-05-18T06:47:51.300653",{"slug":2246,"name":2247,"fn":2248,"description":2249,"org":2250,"tags":2251,"stars":24,"repoUrl":25,"updatedAt":2258},"webflow-code-componenttroubleshoot-deploy","webflow-code-component:troubleshoot-deploy","troubleshoot Webflow Code Component deployments","Debug deployment failures for Webflow Code Components. Analyzes error messages, identifies root causes, and provides specific fixes for common issues.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},[2252,2253,2254,2257],{"name":2160,"slug":2161,"type":16},{"name":18,"slug":19,"type":16},{"name":2255,"slug":2256,"type":16},"Observability","observability",{"name":10,"slug":9,"type":16},"2026-05-18T06:47:45.057571",28,{"items":2261,"total":2259},[2262,2270,2278,2286,2294,2301,2308],{"slug":2083,"name":2084,"fn":2085,"description":2086,"org":2263,"tags":2264,"stars":24,"repoUrl":25,"updatedAt":2100},{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},[2265,2266,2267,2268,2269],{"name":2090,"slug":2091,"type":16},{"name":2093,"slug":2094,"type":16},{"name":18,"slug":19,"type":16},{"name":2097,"slug":2098,"type":16},{"name":10,"slug":9,"type":16},{"slug":2102,"name":2103,"fn":2104,"description":2105,"org":2271,"tags":2272,"stars":24,"repoUrl":25,"updatedAt":2115},{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},[2273,2274,2275,2276,2277],{"name":2090,"slug":2091,"type":16},{"name":18,"slug":19,"type":16},{"name":14,"slug":15,"type":16},{"name":2112,"slug":2113,"type":16},{"name":10,"slug":9,"type":16},{"slug":2117,"name":2118,"fn":2119,"description":2120,"org":2279,"tags":2280,"stars":24,"repoUrl":25,"updatedAt":2132},{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},[2281,2282,2283,2284,2285],{"name":2090,"slug":2091,"type":16},{"name":2125,"slug":2126,"type":16},{"name":14,"slug":15,"type":16},{"name":2129,"slug":2130,"type":16},{"name":10,"slug":9,"type":16},{"slug":2134,"name":2135,"fn":2136,"description":2137,"org":2287,"tags":2288,"stars":24,"repoUrl":25,"updatedAt":2147},{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},[2289,2290,2291,2292,2293],{"name":2090,"slug":2091,"type":16},{"name":22,"slug":23,"type":16},{"name":2143,"slug":2144,"type":16},{"name":14,"slug":15,"type":16},{"name":10,"slug":9,"type":16},{"slug":2149,"name":2150,"fn":2151,"description":2152,"org":2295,"tags":2296,"stars":24,"repoUrl":25,"updatedAt":2163},{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},[2297,2298,2299,2300],{"name":2090,"slug":2091,"type":16},{"name":2157,"slug":2158,"type":16},{"name":2160,"slug":2161,"type":16},{"name":10,"slug":9,"type":16},{"slug":2165,"name":2166,"fn":2167,"description":2168,"org":2302,"tags":2303,"stars":24,"repoUrl":25,"updatedAt":2179},{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},[2304,2305,2306,2307],{"name":2172,"slug":2173,"type":16},{"name":2175,"slug":2176,"type":16},{"name":14,"slug":15,"type":16},{"name":10,"slug":9,"type":16},{"slug":2181,"name":2182,"fn":2183,"description":2184,"org":2309,"tags":2310,"stars":24,"repoUrl":25,"updatedAt":2193},{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},[2311,2312,2313,2314],{"name":22,"slug":23,"type":16},{"name":14,"slug":15,"type":16},{"name":2190,"slug":2191,"type":16},{"name":10,"slug":9,"type":16}]