[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-webflow-webflow-clitroubleshooter":3,"mdc-mxpcxn-key":37,"related-repo-webflow-webflow-clitroubleshooter":1711,"related-org-webflow-webflow-clitroubleshooter":1821},{"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-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},"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},"Configuration","configuration","tag",{"name":18,"slug":19,"type":16},"CLI","cli",{"name":10,"slug":9,"type":16},{"name":22,"slug":23,"type":16},"Debugging","debugging",107,"https:\u002F\u002Fgithub.com\u002Fwebflow\u002Fwebflow-skills","2026-05-18T06:47:48.831648",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\u002Fwebflow-cli-troubleshooter","---\nname: webflow-cli:troubleshooter\ndescription: 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.\n---\n\n# Webflow CLI Troubleshooter\n\nDiagnose and resolve Webflow CLI issues with diagnostic commands and automated fixes.\n\n## Important Note\n\n**ALWAYS use Bash tool for all diagnostic operations:**\n- Execute diagnostic commands via Bash tool\n- Use Read tool to examine configuration files\n- Verify CLI installation: `webflow --version`\n- Check authentication: `webflow auth login` (if needed)\n- Use CLI diagnostic flags: `--verbose`, `--debug-bundler`, `--help`\n- DO NOT use Webflow MCP tools for CLI workflows\n- All CLI commands require proper descriptions (not context parameters)\n\n**Package Manager Detection:**\n- Check for lock files: `package-lock.json` (npm), `pnpm-lock.yaml` (pnpm), `yarn.lock` (yarn)\n- If no lock file found, ask user which package manager to use (npm\u002Fpnpm\u002Fyarn)\n- Use detected package manager for all install\u002Fbuild commands\n\n## Instructions\n\n### Phase 1: Issue Identification\n1. **Ask user to describe issue**: What command failed or what error occurred\n2. **Determine error category**:\n   - CLI not installed or wrong version\n   - Authentication failed\n   - Build\u002Fbundle failed\n   - Command not recognized\n3. **Capture error message**: Get exact error output\n\n### Phase 2: Run Diagnostics\n4. **Check CLI installation**: Run `webflow --version`\n5. **Check authentication**: Run `webflow auth login` if needed\n6. **Run command with --verbose**: Execute failed command with `--verbose` flag for detailed output\n7. **Use --debug-bundler** (if bundle issue): Run with `--debug-bundler` flag to see bundler config\n8. **Check --help**: Run `webflow \u003Ccommand> --help` to verify command syntax\n\n### Phase 3: Analyze & Fix\n9. **Identify root cause**: Parse error messages and diagnostic output\n10. **Present fix**: Show specific solution based on CLI error\n11. **Apply fix**: Execute fix commands\n12. **Verify**: Re-run original command to confirm resolution\n\n## Examples\n\n### Example 1: CLI Not Installed\n\n**User prompt:**\n```\nGetting \"webflow: command not found\"\n```\n\n**Diagnostics:**\n```\n🔍 Checking CLI Installation\n\nExecuting: webflow --version\n\nError: bash: webflow: command not found\n\n❌ Webflow CLI not installed\n```\n\n**Fix:**\n```\n📋 Fix: Install Webflow CLI\n\nExecuting: npm install -g @webflow\u002Fcli\n\n✓ CLI installed\n\nVerifying...\nExecuting: webflow --version\n\nOutput: @webflow\u002Fcli\u002F1.5.2\n\n✅ Issue resolved\n```\n\n### Example 2: Build Failed\n\n**User prompt:**\n```\nBuild is failing but I don't know why\n```\n\n**Diagnostics:**\n```\n🔍 Running Build with Diagnostics\n\nExecuting: webflow library bundle --verbose\n\nOutput:\n[verbose] Loading webflow.json\n[verbose] Found library config\n[verbose] Building components from .\u002Fsrc\u002F**\u002F*.webflow.tsx\n[verbose] Running bundler\nError: Failed to resolve import '.\u002Fmissing-file.ts'\n\n❌ Build failed: Missing import file\n```\n\n**Fix:**\n```\n📋 Fix: Missing Import\n\nIssue: Component imports '.\u002Fmissing-file.ts' which doesn't exist\n\nSolutions:\n1. Create the missing file\n2. Fix the import path\n3. Remove the import if not needed\n\nCheck your component imports and ensure all files exist.\n```\n\n### Example 3: Bundle Configuration Issue\n\n**User prompt:**\n```\nBundle is failing with webpack errors\n```\n\n**Diagnostics:**\n```\n🔍 Checking Bundle Configuration\n\nExecuting: webflow library bundle --debug-bundler\n\nOutput:\n[debug-bundler] Final bundler configuration:\n{\n  \"entry\": \".\u002Fsrc\u002FComponent.tsx\",\n  \"output\": {\n    \"path\": \"\u002Fdist\",\n    \"filename\": \"bundle.js\"\n  },\n  \"resolve\": {\n    \"extensions\": [\".ts\", \".tsx\", \".js\"]\n  }\n}\n\nError: Module not found: Can't resolve 'styled-components'\n\n❌ Bundle failed: Missing dependency\n```\n\n**Fix:**\n```\n📋 Fix: Install Missing Dependency\n\nExecuting: npm install styled-components\n\n✓ Dependency installed\n\nRetrying bundle...\nExecuting: webflow library bundle\n\n✓ Bundle created successfully\n\n✅ Issue resolved\n```\n\n## Guidelines\n\n### CLI Diagnostic Commands\n\n**Version Check:**\n```bash\nwebflow --version\n# or\nwebflow -V\n```\n\n**Command Help:**\n```bash\nwebflow --help                    # General help\nwebflow library --help            # Library commands help\nwebflow library bundle --help     # Specific command help\n```\n\n**Verbose Output:**\n```bash\n# Add --verbose to any command for detailed debugging\nwebflow library bundle --verbose\nwebflow cloud deploy --verbose\nwebflow extension bundle --verbose\n```\n\n**Debug Bundler:**\n```bash\n# Show final bundler configuration\nwebflow library bundle --debug-bundler\nwebflow extension bundle --debug-bundler\n```\n\n### Common Issues & Fixes\n\n**Issue: CLI Not Found**\n- **Diagnostic:** `webflow --version` fails\n- **Fix:** `npm install -g @webflow\u002Fcli`\n- **Verify:** `webflow --version` shows version\n\n**Issue: Wrong CLI Version**\n- **Diagnostic:** `webflow --version` shows old version\n- **Fix:** `npm update -g @webflow\u002Fcli`\n- **Verify:** Latest version installed\n\n**Issue: Command Not Recognized**\n- **Diagnostic:** \"Unknown command\" error\n- **Fix:** Check command with `webflow --help`\n- **Verify:** Use correct command syntax\n\n**Issue: Authentication Failed**\n- **Diagnostic:** \"Not authenticated\" error\n- **Fix:** `webflow auth login`\n- **Verify:** Authentication succeeds\n\n**Issue: Build Failed**\n- **Diagnostic:** Run with `--verbose` flag\n- **Fix:** Fix errors shown in verbose output\n- **Verify:** Build succeeds\n\n**Issue: Bundle Configuration Error**\n- **Diagnostic:** Run with `--debug-bundler` flag\n- **Fix:** Adjust bundler config in webflow.json\n- **Verify:** Bundle succeeds\n\n**Issue: Missing Dependencies**\n- **Diagnostic:** \"Module not found\" errors\n- **Fix:** `npm install` or install specific package\n- **Verify:** Build\u002Fbundle succeeds\n\n**Issue: Corrupted node_modules**\n- **Diagnostic:** Unexplained build failures\n- **Fix:** `rm -rf node_modules && npm install`\n- **Verify:** Build succeeds\n\n### Error Handling\n\n**CLI Not Installed:**\n```\n❌ Webflow CLI Not Found\n\nInstall:\nnpm install -g @webflow\u002Fcli\n\nVerify:\nwebflow --version\n\nDocs: https:\u002F\u002Fdevelopers.webflow.com\u002Fcli\n```\n\n**Authentication Required:**\n```\n❌ Authentication Failed\n\nFix:\nwebflow auth login\n\nFollow browser prompts to authenticate\n```\n\n**Build\u002FBundle Failed:**\n```\n❌ Build Failed\n\nRun with diagnostics:\nwebflow library bundle --verbose --debug-bundler\n\nThis shows:\n- Detailed build steps\n- Import resolution\n- Bundler configuration\n- Exact error location\n\nFix the errors shown in output\n```\n\n**Unknown Error:**\n```\n❌ Unknown Issue\n\nGather info:\n1. What command are you running?\n2. Run command with --verbose flag\n3. Check command syntax with --help\n4. Share full error output\n\nThis helps identify the specific problem\n```\n\n### File Operations\n\n**Reading Config Files:**\n```\n# View webflow.json\nRead: webflow.json\n\n# View package.json\nRead: package.json\n\n# View build output\nRead: dist\u002F\n```\n\n**Discovering Files:**\n```\n# Find config files\nGlob: **\u002Fwebflow.json\n\n# Find components\nGlob: src\u002F**\u002F*.webflow.tsx\n\n# Find logs\nGlob: **\u002F*.log\n```\n\n### Best Practices\n\n**Always Start With:**\n1. Check CLI version: `webflow --version`\n2. Check command syntax: `webflow \u003Ccommand> --help`\n3. Run with verbose: Add `--verbose` flag\n\n**For Build\u002FBundle Issues:**\n1. Use `--verbose` for detailed output\n2. Use `--debug-bundler` to see config\n3. Check import paths\n4. Verify dependencies installed\n\n**For Authentication Issues:**\n1. Run `webflow auth login`\n2. Follow browser prompts\n3. Verify workspace access\n\n**For Installation Issues:**\n1. Check Node.js version: `node --version`\n2. Install CLI globally: `npm install -g @webflow\u002Fcli`\n3. Verify installation: `webflow --version`\n\n## Quick Reference\n\n**Workflow:** identify → diagnose → fix → verify\n\n**Diagnostic Flags:**\n- `--version` \u002F `-V` - Check CLI version\n- `--help` \u002F `-h` - Show command help\n- `--verbose` - Detailed debugging output\n- `--debug-bundler` - Show bundler config\n\n**Common Fixes:**\n- Not installed → `npm install -g @webflow\u002Fcli`\n- Wrong version → `npm update -g @webflow\u002Fcli`\n- Auth failed → `webflow auth login`\n- Build failed → Check `--verbose` output\n- Bundle error → Check `--debug-bundler` output\n- Missing deps → `npm install`\n\n**Documentation:** https:\u002F\u002Fdevelopers.webflow.com\u002Fcli\n",{"data":38,"body":39},{"name":5,"description":7},{"type":40,"children":41},"root",[42,51,57,64,73,149,157,199,205,212,269,275,361,367,411,417,423,431,443,451,460,468,477,483,490,499,506,515,522,531,537,544,553,560,569,576,585,591,597,605,654,662,732,740,816,824,878,884,892,942,950,991,999,1035,1043,1077,1085,1122,1130,1165,1173,1210,1218,1252,1258,1266,1275,1283,1292,1300,1309,1317,1326,1332,1340,1349,1357,1366,1372,1380,1414,1422,1458,1466,1489,1497,1531,1537,1547,1555,1614,1622,1688,1705],{"type":43,"tag":44,"props":45,"children":47},"element","h1",{"id":46},"webflow-cli-troubleshooter",[48],{"type":49,"value":50},"text","Webflow CLI Troubleshooter",{"type":43,"tag":52,"props":53,"children":54},"p",{},[55],{"type":49,"value":56},"Diagnose and resolve Webflow CLI issues with diagnostic commands and automated fixes.",{"type":43,"tag":58,"props":59,"children":61},"h2",{"id":60},"important-note",[62],{"type":49,"value":63},"Important Note",{"type":43,"tag":52,"props":65,"children":66},{},[67],{"type":43,"tag":68,"props":69,"children":70},"strong",{},[71],{"type":49,"value":72},"ALWAYS use Bash tool for all diagnostic operations:",{"type":43,"tag":74,"props":75,"children":76},"ul",{},[77,83,88,100,113,139,144],{"type":43,"tag":78,"props":79,"children":80},"li",{},[81],{"type":49,"value":82},"Execute diagnostic commands via Bash tool",{"type":43,"tag":78,"props":84,"children":85},{},[86],{"type":49,"value":87},"Use Read tool to examine configuration files",{"type":43,"tag":78,"props":89,"children":90},{},[91,93],{"type":49,"value":92},"Verify CLI installation: ",{"type":43,"tag":94,"props":95,"children":97},"code",{"className":96},[],[98],{"type":49,"value":99},"webflow --version",{"type":43,"tag":78,"props":101,"children":102},{},[103,105,111],{"type":49,"value":104},"Check authentication: ",{"type":43,"tag":94,"props":106,"children":108},{"className":107},[],[109],{"type":49,"value":110},"webflow auth login",{"type":49,"value":112}," (if needed)",{"type":43,"tag":78,"props":114,"children":115},{},[116,118,124,126,132,133],{"type":49,"value":117},"Use CLI diagnostic flags: ",{"type":43,"tag":94,"props":119,"children":121},{"className":120},[],[122],{"type":49,"value":123},"--verbose",{"type":49,"value":125},", ",{"type":43,"tag":94,"props":127,"children":129},{"className":128},[],[130],{"type":49,"value":131},"--debug-bundler",{"type":49,"value":125},{"type":43,"tag":94,"props":134,"children":136},{"className":135},[],[137],{"type":49,"value":138},"--help",{"type":43,"tag":78,"props":140,"children":141},{},[142],{"type":49,"value":143},"DO NOT use Webflow MCP tools for CLI workflows",{"type":43,"tag":78,"props":145,"children":146},{},[147],{"type":49,"value":148},"All CLI commands require proper descriptions (not context parameters)",{"type":43,"tag":52,"props":150,"children":151},{},[152],{"type":43,"tag":68,"props":153,"children":154},{},[155],{"type":49,"value":156},"Package Manager Detection:",{"type":43,"tag":74,"props":158,"children":159},{},[160,189,194],{"type":43,"tag":78,"props":161,"children":162},{},[163,165,171,173,179,181,187],{"type":49,"value":164},"Check for lock files: ",{"type":43,"tag":94,"props":166,"children":168},{"className":167},[],[169],{"type":49,"value":170},"package-lock.json",{"type":49,"value":172}," (npm), ",{"type":43,"tag":94,"props":174,"children":176},{"className":175},[],[177],{"type":49,"value":178},"pnpm-lock.yaml",{"type":49,"value":180}," (pnpm), ",{"type":43,"tag":94,"props":182,"children":184},{"className":183},[],[185],{"type":49,"value":186},"yarn.lock",{"type":49,"value":188}," (yarn)",{"type":43,"tag":78,"props":190,"children":191},{},[192],{"type":49,"value":193},"If no lock file found, ask user which package manager to use (npm\u002Fpnpm\u002Fyarn)",{"type":43,"tag":78,"props":195,"children":196},{},[197],{"type":49,"value":198},"Use detected package manager for all install\u002Fbuild commands",{"type":43,"tag":58,"props":200,"children":202},{"id":201},"instructions",[203],{"type":49,"value":204},"Instructions",{"type":43,"tag":206,"props":207,"children":209},"h3",{"id":208},"phase-1-issue-identification",[210],{"type":49,"value":211},"Phase 1: Issue Identification",{"type":43,"tag":213,"props":214,"children":215},"ol",{},[216,226,259],{"type":43,"tag":78,"props":217,"children":218},{},[219,224],{"type":43,"tag":68,"props":220,"children":221},{},[222],{"type":49,"value":223},"Ask user to describe issue",{"type":49,"value":225},": What command failed or what error occurred",{"type":43,"tag":78,"props":227,"children":228},{},[229,234,236],{"type":43,"tag":68,"props":230,"children":231},{},[232],{"type":49,"value":233},"Determine error category",{"type":49,"value":235},":\n",{"type":43,"tag":74,"props":237,"children":238},{},[239,244,249,254],{"type":43,"tag":78,"props":240,"children":241},{},[242],{"type":49,"value":243},"CLI not installed or wrong version",{"type":43,"tag":78,"props":245,"children":246},{},[247],{"type":49,"value":248},"Authentication failed",{"type":43,"tag":78,"props":250,"children":251},{},[252],{"type":49,"value":253},"Build\u002Fbundle failed",{"type":43,"tag":78,"props":255,"children":256},{},[257],{"type":49,"value":258},"Command not recognized",{"type":43,"tag":78,"props":260,"children":261},{},[262,267],{"type":43,"tag":68,"props":263,"children":264},{},[265],{"type":49,"value":266},"Capture error message",{"type":49,"value":268},": Get exact error output",{"type":43,"tag":206,"props":270,"children":272},{"id":271},"phase-2-run-diagnostics",[273],{"type":49,"value":274},"Phase 2: Run Diagnostics",{"type":43,"tag":213,"props":276,"children":278},{"start":277},4,[279,294,310,327,344],{"type":43,"tag":78,"props":280,"children":281},{},[282,287,289],{"type":43,"tag":68,"props":283,"children":284},{},[285],{"type":49,"value":286},"Check CLI installation",{"type":49,"value":288},": Run ",{"type":43,"tag":94,"props":290,"children":292},{"className":291},[],[293],{"type":49,"value":99},{"type":43,"tag":78,"props":295,"children":296},{},[297,302,303,308],{"type":43,"tag":68,"props":298,"children":299},{},[300],{"type":49,"value":301},"Check authentication",{"type":49,"value":288},{"type":43,"tag":94,"props":304,"children":306},{"className":305},[],[307],{"type":49,"value":110},{"type":49,"value":309}," if needed",{"type":43,"tag":78,"props":311,"children":312},{},[313,318,320,325],{"type":43,"tag":68,"props":314,"children":315},{},[316],{"type":49,"value":317},"Run command with --verbose",{"type":49,"value":319},": Execute failed command with ",{"type":43,"tag":94,"props":321,"children":323},{"className":322},[],[324],{"type":49,"value":123},{"type":49,"value":326}," flag for detailed output",{"type":43,"tag":78,"props":328,"children":329},{},[330,335,337,342],{"type":43,"tag":68,"props":331,"children":332},{},[333],{"type":49,"value":334},"Use --debug-bundler",{"type":49,"value":336}," (if bundle issue): Run with ",{"type":43,"tag":94,"props":338,"children":340},{"className":339},[],[341],{"type":49,"value":131},{"type":49,"value":343}," flag to see bundler config",{"type":43,"tag":78,"props":345,"children":346},{},[347,352,353,359],{"type":43,"tag":68,"props":348,"children":349},{},[350],{"type":49,"value":351},"Check --help",{"type":49,"value":288},{"type":43,"tag":94,"props":354,"children":356},{"className":355},[],[357],{"type":49,"value":358},"webflow \u003Ccommand> --help",{"type":49,"value":360}," to verify command syntax",{"type":43,"tag":206,"props":362,"children":364},{"id":363},"phase-3-analyze-fix",[365],{"type":49,"value":366},"Phase 3: Analyze & Fix",{"type":43,"tag":213,"props":368,"children":370},{"start":369},9,[371,381,391,401],{"type":43,"tag":78,"props":372,"children":373},{},[374,379],{"type":43,"tag":68,"props":375,"children":376},{},[377],{"type":49,"value":378},"Identify root cause",{"type":49,"value":380},": Parse error messages and diagnostic output",{"type":43,"tag":78,"props":382,"children":383},{},[384,389],{"type":43,"tag":68,"props":385,"children":386},{},[387],{"type":49,"value":388},"Present fix",{"type":49,"value":390},": Show specific solution based on CLI error",{"type":43,"tag":78,"props":392,"children":393},{},[394,399],{"type":43,"tag":68,"props":395,"children":396},{},[397],{"type":49,"value":398},"Apply fix",{"type":49,"value":400},": Execute fix commands",{"type":43,"tag":78,"props":402,"children":403},{},[404,409],{"type":43,"tag":68,"props":405,"children":406},{},[407],{"type":49,"value":408},"Verify",{"type":49,"value":410},": Re-run original command to confirm resolution",{"type":43,"tag":58,"props":412,"children":414},{"id":413},"examples",[415],{"type":49,"value":416},"Examples",{"type":43,"tag":206,"props":418,"children":420},{"id":419},"example-1-cli-not-installed",[421],{"type":49,"value":422},"Example 1: CLI Not Installed",{"type":43,"tag":52,"props":424,"children":425},{},[426],{"type":43,"tag":68,"props":427,"children":428},{},[429],{"type":49,"value":430},"User prompt:",{"type":43,"tag":432,"props":433,"children":437},"pre",{"className":434,"code":436,"language":49},[435],"language-text","Getting \"webflow: command not found\"\n",[438],{"type":43,"tag":94,"props":439,"children":441},{"__ignoreMap":440},"",[442],{"type":49,"value":436},{"type":43,"tag":52,"props":444,"children":445},{},[446],{"type":43,"tag":68,"props":447,"children":448},{},[449],{"type":49,"value":450},"Diagnostics:",{"type":43,"tag":432,"props":452,"children":455},{"className":453,"code":454,"language":49},[435],"🔍 Checking CLI Installation\n\nExecuting: webflow --version\n\nError: bash: webflow: command not found\n\n❌ Webflow CLI not installed\n",[456],{"type":43,"tag":94,"props":457,"children":458},{"__ignoreMap":440},[459],{"type":49,"value":454},{"type":43,"tag":52,"props":461,"children":462},{},[463],{"type":43,"tag":68,"props":464,"children":465},{},[466],{"type":49,"value":467},"Fix:",{"type":43,"tag":432,"props":469,"children":472},{"className":470,"code":471,"language":49},[435],"📋 Fix: Install Webflow CLI\n\nExecuting: npm install -g @webflow\u002Fcli\n\n✓ CLI installed\n\nVerifying...\nExecuting: webflow --version\n\nOutput: @webflow\u002Fcli\u002F1.5.2\n\n✅ Issue resolved\n",[473],{"type":43,"tag":94,"props":474,"children":475},{"__ignoreMap":440},[476],{"type":49,"value":471},{"type":43,"tag":206,"props":478,"children":480},{"id":479},"example-2-build-failed",[481],{"type":49,"value":482},"Example 2: Build Failed",{"type":43,"tag":52,"props":484,"children":485},{},[486],{"type":43,"tag":68,"props":487,"children":488},{},[489],{"type":49,"value":430},{"type":43,"tag":432,"props":491,"children":494},{"className":492,"code":493,"language":49},[435],"Build is failing but I don't know why\n",[495],{"type":43,"tag":94,"props":496,"children":497},{"__ignoreMap":440},[498],{"type":49,"value":493},{"type":43,"tag":52,"props":500,"children":501},{},[502],{"type":43,"tag":68,"props":503,"children":504},{},[505],{"type":49,"value":450},{"type":43,"tag":432,"props":507,"children":510},{"className":508,"code":509,"language":49},[435],"🔍 Running Build with Diagnostics\n\nExecuting: webflow library bundle --verbose\n\nOutput:\n[verbose] Loading webflow.json\n[verbose] Found library config\n[verbose] Building components from .\u002Fsrc\u002F**\u002F*.webflow.tsx\n[verbose] Running bundler\nError: Failed to resolve import '.\u002Fmissing-file.ts'\n\n❌ Build failed: Missing import file\n",[511],{"type":43,"tag":94,"props":512,"children":513},{"__ignoreMap":440},[514],{"type":49,"value":509},{"type":43,"tag":52,"props":516,"children":517},{},[518],{"type":43,"tag":68,"props":519,"children":520},{},[521],{"type":49,"value":467},{"type":43,"tag":432,"props":523,"children":526},{"className":524,"code":525,"language":49},[435],"📋 Fix: Missing Import\n\nIssue: Component imports '.\u002Fmissing-file.ts' which doesn't exist\n\nSolutions:\n1. Create the missing file\n2. Fix the import path\n3. Remove the import if not needed\n\nCheck your component imports and ensure all files exist.\n",[527],{"type":43,"tag":94,"props":528,"children":529},{"__ignoreMap":440},[530],{"type":49,"value":525},{"type":43,"tag":206,"props":532,"children":534},{"id":533},"example-3-bundle-configuration-issue",[535],{"type":49,"value":536},"Example 3: Bundle Configuration Issue",{"type":43,"tag":52,"props":538,"children":539},{},[540],{"type":43,"tag":68,"props":541,"children":542},{},[543],{"type":49,"value":430},{"type":43,"tag":432,"props":545,"children":548},{"className":546,"code":547,"language":49},[435],"Bundle is failing with webpack errors\n",[549],{"type":43,"tag":94,"props":550,"children":551},{"__ignoreMap":440},[552],{"type":49,"value":547},{"type":43,"tag":52,"props":554,"children":555},{},[556],{"type":43,"tag":68,"props":557,"children":558},{},[559],{"type":49,"value":450},{"type":43,"tag":432,"props":561,"children":564},{"className":562,"code":563,"language":49},[435],"🔍 Checking Bundle Configuration\n\nExecuting: webflow library bundle --debug-bundler\n\nOutput:\n[debug-bundler] Final bundler configuration:\n{\n  \"entry\": \".\u002Fsrc\u002FComponent.tsx\",\n  \"output\": {\n    \"path\": \"\u002Fdist\",\n    \"filename\": \"bundle.js\"\n  },\n  \"resolve\": {\n    \"extensions\": [\".ts\", \".tsx\", \".js\"]\n  }\n}\n\nError: Module not found: Can't resolve 'styled-components'\n\n❌ Bundle failed: Missing dependency\n",[565],{"type":43,"tag":94,"props":566,"children":567},{"__ignoreMap":440},[568],{"type":49,"value":563},{"type":43,"tag":52,"props":570,"children":571},{},[572],{"type":43,"tag":68,"props":573,"children":574},{},[575],{"type":49,"value":467},{"type":43,"tag":432,"props":577,"children":580},{"className":578,"code":579,"language":49},[435],"📋 Fix: Install Missing Dependency\n\nExecuting: npm install styled-components\n\n✓ Dependency installed\n\nRetrying bundle...\nExecuting: webflow library bundle\n\n✓ Bundle created successfully\n\n✅ Issue resolved\n",[581],{"type":43,"tag":94,"props":582,"children":583},{"__ignoreMap":440},[584],{"type":49,"value":579},{"type":43,"tag":58,"props":586,"children":588},{"id":587},"guidelines",[589],{"type":49,"value":590},"Guidelines",{"type":43,"tag":206,"props":592,"children":594},{"id":593},"cli-diagnostic-commands",[595],{"type":49,"value":596},"CLI Diagnostic Commands",{"type":43,"tag":52,"props":598,"children":599},{},[600],{"type":43,"tag":68,"props":601,"children":602},{},[603],{"type":49,"value":604},"Version Check:",{"type":43,"tag":432,"props":606,"children":610},{"className":607,"code":608,"language":609,"meta":440,"style":440},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","webflow --version\n# or\nwebflow -V\n","bash",[611],{"type":43,"tag":94,"props":612,"children":613},{"__ignoreMap":440},[614,631,641],{"type":43,"tag":615,"props":616,"children":619},"span",{"class":617,"line":618},"line",1,[620,625],{"type":43,"tag":615,"props":621,"children":623},{"style":622},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[624],{"type":49,"value":9},{"type":43,"tag":615,"props":626,"children":628},{"style":627},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[629],{"type":49,"value":630}," --version\n",{"type":43,"tag":615,"props":632,"children":634},{"class":617,"line":633},2,[635],{"type":43,"tag":615,"props":636,"children":638},{"style":637},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[639],{"type":49,"value":640},"# or\n",{"type":43,"tag":615,"props":642,"children":644},{"class":617,"line":643},3,[645,649],{"type":43,"tag":615,"props":646,"children":647},{"style":622},[648],{"type":49,"value":9},{"type":43,"tag":615,"props":650,"children":651},{"style":627},[652],{"type":49,"value":653}," -V\n",{"type":43,"tag":52,"props":655,"children":656},{},[657],{"type":43,"tag":68,"props":658,"children":659},{},[660],{"type":49,"value":661},"Command Help:",{"type":43,"tag":432,"props":663,"children":665},{"className":607,"code":664,"language":609,"meta":440,"style":440},"webflow --help                    # General help\nwebflow library --help            # Library commands help\nwebflow library bundle --help     # Specific command help\n",[666],{"type":43,"tag":94,"props":667,"children":668},{"__ignoreMap":440},[669,686,707],{"type":43,"tag":615,"props":670,"children":671},{"class":617,"line":618},[672,676,681],{"type":43,"tag":615,"props":673,"children":674},{"style":622},[675],{"type":49,"value":9},{"type":43,"tag":615,"props":677,"children":678},{"style":627},[679],{"type":49,"value":680}," --help",{"type":43,"tag":615,"props":682,"children":683},{"style":637},[684],{"type":49,"value":685},"                    # General help\n",{"type":43,"tag":615,"props":687,"children":688},{"class":617,"line":633},[689,693,698,702],{"type":43,"tag":615,"props":690,"children":691},{"style":622},[692],{"type":49,"value":9},{"type":43,"tag":615,"props":694,"children":695},{"style":627},[696],{"type":49,"value":697}," library",{"type":43,"tag":615,"props":699,"children":700},{"style":627},[701],{"type":49,"value":680},{"type":43,"tag":615,"props":703,"children":704},{"style":637},[705],{"type":49,"value":706},"            # Library commands help\n",{"type":43,"tag":615,"props":708,"children":709},{"class":617,"line":643},[710,714,718,723,727],{"type":43,"tag":615,"props":711,"children":712},{"style":622},[713],{"type":49,"value":9},{"type":43,"tag":615,"props":715,"children":716},{"style":627},[717],{"type":49,"value":697},{"type":43,"tag":615,"props":719,"children":720},{"style":627},[721],{"type":49,"value":722}," bundle",{"type":43,"tag":615,"props":724,"children":725},{"style":627},[726],{"type":49,"value":680},{"type":43,"tag":615,"props":728,"children":729},{"style":637},[730],{"type":49,"value":731},"     # Specific command help\n",{"type":43,"tag":52,"props":733,"children":734},{},[735],{"type":43,"tag":68,"props":736,"children":737},{},[738],{"type":49,"value":739},"Verbose Output:",{"type":43,"tag":432,"props":741,"children":743},{"className":607,"code":742,"language":609,"meta":440,"style":440},"# Add --verbose to any command for detailed debugging\nwebflow library bundle --verbose\nwebflow cloud deploy --verbose\nwebflow extension bundle --verbose\n",[744],{"type":43,"tag":94,"props":745,"children":746},{"__ignoreMap":440},[747,755,775,796],{"type":43,"tag":615,"props":748,"children":749},{"class":617,"line":618},[750],{"type":43,"tag":615,"props":751,"children":752},{"style":637},[753],{"type":49,"value":754},"# Add --verbose to any command for detailed debugging\n",{"type":43,"tag":615,"props":756,"children":757},{"class":617,"line":633},[758,762,766,770],{"type":43,"tag":615,"props":759,"children":760},{"style":622},[761],{"type":49,"value":9},{"type":43,"tag":615,"props":763,"children":764},{"style":627},[765],{"type":49,"value":697},{"type":43,"tag":615,"props":767,"children":768},{"style":627},[769],{"type":49,"value":722},{"type":43,"tag":615,"props":771,"children":772},{"style":627},[773],{"type":49,"value":774}," --verbose\n",{"type":43,"tag":615,"props":776,"children":777},{"class":617,"line":643},[778,782,787,792],{"type":43,"tag":615,"props":779,"children":780},{"style":622},[781],{"type":49,"value":9},{"type":43,"tag":615,"props":783,"children":784},{"style":627},[785],{"type":49,"value":786}," cloud",{"type":43,"tag":615,"props":788,"children":789},{"style":627},[790],{"type":49,"value":791}," deploy",{"type":43,"tag":615,"props":793,"children":794},{"style":627},[795],{"type":49,"value":774},{"type":43,"tag":615,"props":797,"children":798},{"class":617,"line":277},[799,803,808,812],{"type":43,"tag":615,"props":800,"children":801},{"style":622},[802],{"type":49,"value":9},{"type":43,"tag":615,"props":804,"children":805},{"style":627},[806],{"type":49,"value":807}," extension",{"type":43,"tag":615,"props":809,"children":810},{"style":627},[811],{"type":49,"value":722},{"type":43,"tag":615,"props":813,"children":814},{"style":627},[815],{"type":49,"value":774},{"type":43,"tag":52,"props":817,"children":818},{},[819],{"type":43,"tag":68,"props":820,"children":821},{},[822],{"type":49,"value":823},"Debug Bundler:",{"type":43,"tag":432,"props":825,"children":827},{"className":607,"code":826,"language":609,"meta":440,"style":440},"# Show final bundler configuration\nwebflow library bundle --debug-bundler\nwebflow extension bundle --debug-bundler\n",[828],{"type":43,"tag":94,"props":829,"children":830},{"__ignoreMap":440},[831,839,859],{"type":43,"tag":615,"props":832,"children":833},{"class":617,"line":618},[834],{"type":43,"tag":615,"props":835,"children":836},{"style":637},[837],{"type":49,"value":838},"# Show final bundler configuration\n",{"type":43,"tag":615,"props":840,"children":841},{"class":617,"line":633},[842,846,850,854],{"type":43,"tag":615,"props":843,"children":844},{"style":622},[845],{"type":49,"value":9},{"type":43,"tag":615,"props":847,"children":848},{"style":627},[849],{"type":49,"value":697},{"type":43,"tag":615,"props":851,"children":852},{"style":627},[853],{"type":49,"value":722},{"type":43,"tag":615,"props":855,"children":856},{"style":627},[857],{"type":49,"value":858}," --debug-bundler\n",{"type":43,"tag":615,"props":860,"children":861},{"class":617,"line":643},[862,866,870,874],{"type":43,"tag":615,"props":863,"children":864},{"style":622},[865],{"type":49,"value":9},{"type":43,"tag":615,"props":867,"children":868},{"style":627},[869],{"type":49,"value":807},{"type":43,"tag":615,"props":871,"children":872},{"style":627},[873],{"type":49,"value":722},{"type":43,"tag":615,"props":875,"children":876},{"style":627},[877],{"type":49,"value":858},{"type":43,"tag":206,"props":879,"children":881},{"id":880},"common-issues-fixes",[882],{"type":49,"value":883},"Common Issues & Fixes",{"type":43,"tag":52,"props":885,"children":886},{},[887],{"type":43,"tag":68,"props":888,"children":889},{},[890],{"type":49,"value":891},"Issue: CLI Not Found",{"type":43,"tag":74,"props":893,"children":894},{},[895,912,926],{"type":43,"tag":78,"props":896,"children":897},{},[898,903,905,910],{"type":43,"tag":68,"props":899,"children":900},{},[901],{"type":49,"value":902},"Diagnostic:",{"type":49,"value":904}," ",{"type":43,"tag":94,"props":906,"children":908},{"className":907},[],[909],{"type":49,"value":99},{"type":49,"value":911}," fails",{"type":43,"tag":78,"props":913,"children":914},{},[915,919,920],{"type":43,"tag":68,"props":916,"children":917},{},[918],{"type":49,"value":467},{"type":49,"value":904},{"type":43,"tag":94,"props":921,"children":923},{"className":922},[],[924],{"type":49,"value":925},"npm install -g @webflow\u002Fcli",{"type":43,"tag":78,"props":927,"children":928},{},[929,934,935,940],{"type":43,"tag":68,"props":930,"children":931},{},[932],{"type":49,"value":933},"Verify:",{"type":49,"value":904},{"type":43,"tag":94,"props":936,"children":938},{"className":937},[],[939],{"type":49,"value":99},{"type":49,"value":941}," shows version",{"type":43,"tag":52,"props":943,"children":944},{},[945],{"type":43,"tag":68,"props":946,"children":947},{},[948],{"type":49,"value":949},"Issue: Wrong CLI Version",{"type":43,"tag":74,"props":951,"children":952},{},[953,968,982],{"type":43,"tag":78,"props":954,"children":955},{},[956,960,961,966],{"type":43,"tag":68,"props":957,"children":958},{},[959],{"type":49,"value":902},{"type":49,"value":904},{"type":43,"tag":94,"props":962,"children":964},{"className":963},[],[965],{"type":49,"value":99},{"type":49,"value":967}," shows old version",{"type":43,"tag":78,"props":969,"children":970},{},[971,975,976],{"type":43,"tag":68,"props":972,"children":973},{},[974],{"type":49,"value":467},{"type":49,"value":904},{"type":43,"tag":94,"props":977,"children":979},{"className":978},[],[980],{"type":49,"value":981},"npm update -g @webflow\u002Fcli",{"type":43,"tag":78,"props":983,"children":984},{},[985,989],{"type":43,"tag":68,"props":986,"children":987},{},[988],{"type":49,"value":933},{"type":49,"value":990}," Latest version installed",{"type":43,"tag":52,"props":992,"children":993},{},[994],{"type":43,"tag":68,"props":995,"children":996},{},[997],{"type":49,"value":998},"Issue: Command Not Recognized",{"type":43,"tag":74,"props":1000,"children":1001},{},[1002,1011,1026],{"type":43,"tag":78,"props":1003,"children":1004},{},[1005,1009],{"type":43,"tag":68,"props":1006,"children":1007},{},[1008],{"type":49,"value":902},{"type":49,"value":1010}," \"Unknown command\" error",{"type":43,"tag":78,"props":1012,"children":1013},{},[1014,1018,1020],{"type":43,"tag":68,"props":1015,"children":1016},{},[1017],{"type":49,"value":467},{"type":49,"value":1019}," Check command with ",{"type":43,"tag":94,"props":1021,"children":1023},{"className":1022},[],[1024],{"type":49,"value":1025},"webflow --help",{"type":43,"tag":78,"props":1027,"children":1028},{},[1029,1033],{"type":43,"tag":68,"props":1030,"children":1031},{},[1032],{"type":49,"value":933},{"type":49,"value":1034}," Use correct command syntax",{"type":43,"tag":52,"props":1036,"children":1037},{},[1038],{"type":43,"tag":68,"props":1039,"children":1040},{},[1041],{"type":49,"value":1042},"Issue: Authentication Failed",{"type":43,"tag":74,"props":1044,"children":1045},{},[1046,1055,1068],{"type":43,"tag":78,"props":1047,"children":1048},{},[1049,1053],{"type":43,"tag":68,"props":1050,"children":1051},{},[1052],{"type":49,"value":902},{"type":49,"value":1054}," \"Not authenticated\" error",{"type":43,"tag":78,"props":1056,"children":1057},{},[1058,1062,1063],{"type":43,"tag":68,"props":1059,"children":1060},{},[1061],{"type":49,"value":467},{"type":49,"value":904},{"type":43,"tag":94,"props":1064,"children":1066},{"className":1065},[],[1067],{"type":49,"value":110},{"type":43,"tag":78,"props":1069,"children":1070},{},[1071,1075],{"type":43,"tag":68,"props":1072,"children":1073},{},[1074],{"type":49,"value":933},{"type":49,"value":1076}," Authentication succeeds",{"type":43,"tag":52,"props":1078,"children":1079},{},[1080],{"type":43,"tag":68,"props":1081,"children":1082},{},[1083],{"type":49,"value":1084},"Issue: Build Failed",{"type":43,"tag":74,"props":1086,"children":1087},{},[1088,1104,1113],{"type":43,"tag":78,"props":1089,"children":1090},{},[1091,1095,1097,1102],{"type":43,"tag":68,"props":1092,"children":1093},{},[1094],{"type":49,"value":902},{"type":49,"value":1096}," Run with ",{"type":43,"tag":94,"props":1098,"children":1100},{"className":1099},[],[1101],{"type":49,"value":123},{"type":49,"value":1103}," flag",{"type":43,"tag":78,"props":1105,"children":1106},{},[1107,1111],{"type":43,"tag":68,"props":1108,"children":1109},{},[1110],{"type":49,"value":467},{"type":49,"value":1112}," Fix errors shown in verbose output",{"type":43,"tag":78,"props":1114,"children":1115},{},[1116,1120],{"type":43,"tag":68,"props":1117,"children":1118},{},[1119],{"type":49,"value":933},{"type":49,"value":1121}," Build succeeds",{"type":43,"tag":52,"props":1123,"children":1124},{},[1125],{"type":43,"tag":68,"props":1126,"children":1127},{},[1128],{"type":49,"value":1129},"Issue: Bundle Configuration Error",{"type":43,"tag":74,"props":1131,"children":1132},{},[1133,1147,1156],{"type":43,"tag":78,"props":1134,"children":1135},{},[1136,1140,1141,1146],{"type":43,"tag":68,"props":1137,"children":1138},{},[1139],{"type":49,"value":902},{"type":49,"value":1096},{"type":43,"tag":94,"props":1142,"children":1144},{"className":1143},[],[1145],{"type":49,"value":131},{"type":49,"value":1103},{"type":43,"tag":78,"props":1148,"children":1149},{},[1150,1154],{"type":43,"tag":68,"props":1151,"children":1152},{},[1153],{"type":49,"value":467},{"type":49,"value":1155}," Adjust bundler config in webflow.json",{"type":43,"tag":78,"props":1157,"children":1158},{},[1159,1163],{"type":43,"tag":68,"props":1160,"children":1161},{},[1162],{"type":49,"value":933},{"type":49,"value":1164}," Bundle succeeds",{"type":43,"tag":52,"props":1166,"children":1167},{},[1168],{"type":43,"tag":68,"props":1169,"children":1170},{},[1171],{"type":49,"value":1172},"Issue: Missing Dependencies",{"type":43,"tag":74,"props":1174,"children":1175},{},[1176,1185,1201],{"type":43,"tag":78,"props":1177,"children":1178},{},[1179,1183],{"type":43,"tag":68,"props":1180,"children":1181},{},[1182],{"type":49,"value":902},{"type":49,"value":1184}," \"Module not found\" errors",{"type":43,"tag":78,"props":1186,"children":1187},{},[1188,1192,1193,1199],{"type":43,"tag":68,"props":1189,"children":1190},{},[1191],{"type":49,"value":467},{"type":49,"value":904},{"type":43,"tag":94,"props":1194,"children":1196},{"className":1195},[],[1197],{"type":49,"value":1198},"npm install",{"type":49,"value":1200}," or install specific package",{"type":43,"tag":78,"props":1202,"children":1203},{},[1204,1208],{"type":43,"tag":68,"props":1205,"children":1206},{},[1207],{"type":49,"value":933},{"type":49,"value":1209}," Build\u002Fbundle succeeds",{"type":43,"tag":52,"props":1211,"children":1212},{},[1213],{"type":43,"tag":68,"props":1214,"children":1215},{},[1216],{"type":49,"value":1217},"Issue: Corrupted node_modules",{"type":43,"tag":74,"props":1219,"children":1220},{},[1221,1230,1244],{"type":43,"tag":78,"props":1222,"children":1223},{},[1224,1228],{"type":43,"tag":68,"props":1225,"children":1226},{},[1227],{"type":49,"value":902},{"type":49,"value":1229}," Unexplained build failures",{"type":43,"tag":78,"props":1231,"children":1232},{},[1233,1237,1238],{"type":43,"tag":68,"props":1234,"children":1235},{},[1236],{"type":49,"value":467},{"type":49,"value":904},{"type":43,"tag":94,"props":1239,"children":1241},{"className":1240},[],[1242],{"type":49,"value":1243},"rm -rf node_modules && npm install",{"type":43,"tag":78,"props":1245,"children":1246},{},[1247,1251],{"type":43,"tag":68,"props":1248,"children":1249},{},[1250],{"type":49,"value":933},{"type":49,"value":1121},{"type":43,"tag":206,"props":1253,"children":1255},{"id":1254},"error-handling",[1256],{"type":49,"value":1257},"Error Handling",{"type":43,"tag":52,"props":1259,"children":1260},{},[1261],{"type":43,"tag":68,"props":1262,"children":1263},{},[1264],{"type":49,"value":1265},"CLI Not Installed:",{"type":43,"tag":432,"props":1267,"children":1270},{"className":1268,"code":1269,"language":49},[435],"❌ Webflow CLI Not Found\n\nInstall:\nnpm install -g @webflow\u002Fcli\n\nVerify:\nwebflow --version\n\nDocs: https:\u002F\u002Fdevelopers.webflow.com\u002Fcli\n",[1271],{"type":43,"tag":94,"props":1272,"children":1273},{"__ignoreMap":440},[1274],{"type":49,"value":1269},{"type":43,"tag":52,"props":1276,"children":1277},{},[1278],{"type":43,"tag":68,"props":1279,"children":1280},{},[1281],{"type":49,"value":1282},"Authentication Required:",{"type":43,"tag":432,"props":1284,"children":1287},{"className":1285,"code":1286,"language":49},[435],"❌ Authentication Failed\n\nFix:\nwebflow auth login\n\nFollow browser prompts to authenticate\n",[1288],{"type":43,"tag":94,"props":1289,"children":1290},{"__ignoreMap":440},[1291],{"type":49,"value":1286},{"type":43,"tag":52,"props":1293,"children":1294},{},[1295],{"type":43,"tag":68,"props":1296,"children":1297},{},[1298],{"type":49,"value":1299},"Build\u002FBundle Failed:",{"type":43,"tag":432,"props":1301,"children":1304},{"className":1302,"code":1303,"language":49},[435],"❌ Build Failed\n\nRun with diagnostics:\nwebflow library bundle --verbose --debug-bundler\n\nThis shows:\n- Detailed build steps\n- Import resolution\n- Bundler configuration\n- Exact error location\n\nFix the errors shown in output\n",[1305],{"type":43,"tag":94,"props":1306,"children":1307},{"__ignoreMap":440},[1308],{"type":49,"value":1303},{"type":43,"tag":52,"props":1310,"children":1311},{},[1312],{"type":43,"tag":68,"props":1313,"children":1314},{},[1315],{"type":49,"value":1316},"Unknown Error:",{"type":43,"tag":432,"props":1318,"children":1321},{"className":1319,"code":1320,"language":49},[435],"❌ Unknown Issue\n\nGather info:\n1. What command are you running?\n2. Run command with --verbose flag\n3. Check command syntax with --help\n4. Share full error output\n\nThis helps identify the specific problem\n",[1322],{"type":43,"tag":94,"props":1323,"children":1324},{"__ignoreMap":440},[1325],{"type":49,"value":1320},{"type":43,"tag":206,"props":1327,"children":1329},{"id":1328},"file-operations",[1330],{"type":49,"value":1331},"File Operations",{"type":43,"tag":52,"props":1333,"children":1334},{},[1335],{"type":43,"tag":68,"props":1336,"children":1337},{},[1338],{"type":49,"value":1339},"Reading Config Files:",{"type":43,"tag":432,"props":1341,"children":1344},{"className":1342,"code":1343,"language":49},[435],"# View webflow.json\nRead: webflow.json\n\n# View package.json\nRead: package.json\n\n# View build output\nRead: dist\u002F\n",[1345],{"type":43,"tag":94,"props":1346,"children":1347},{"__ignoreMap":440},[1348],{"type":49,"value":1343},{"type":43,"tag":52,"props":1350,"children":1351},{},[1352],{"type":43,"tag":68,"props":1353,"children":1354},{},[1355],{"type":49,"value":1356},"Discovering Files:",{"type":43,"tag":432,"props":1358,"children":1361},{"className":1359,"code":1360,"language":49},[435],"# Find config files\nGlob: **\u002Fwebflow.json\n\n# Find components\nGlob: src\u002F**\u002F*.webflow.tsx\n\n# Find logs\nGlob: **\u002F*.log\n",[1362],{"type":43,"tag":94,"props":1363,"children":1364},{"__ignoreMap":440},[1365],{"type":49,"value":1360},{"type":43,"tag":206,"props":1367,"children":1369},{"id":1368},"best-practices",[1370],{"type":49,"value":1371},"Best Practices",{"type":43,"tag":52,"props":1373,"children":1374},{},[1375],{"type":43,"tag":68,"props":1376,"children":1377},{},[1378],{"type":49,"value":1379},"Always Start With:",{"type":43,"tag":213,"props":1381,"children":1382},{},[1383,1393,1403],{"type":43,"tag":78,"props":1384,"children":1385},{},[1386,1388],{"type":49,"value":1387},"Check CLI version: ",{"type":43,"tag":94,"props":1389,"children":1391},{"className":1390},[],[1392],{"type":49,"value":99},{"type":43,"tag":78,"props":1394,"children":1395},{},[1396,1398],{"type":49,"value":1397},"Check command syntax: ",{"type":43,"tag":94,"props":1399,"children":1401},{"className":1400},[],[1402],{"type":49,"value":358},{"type":43,"tag":78,"props":1404,"children":1405},{},[1406,1408,1413],{"type":49,"value":1407},"Run with verbose: Add ",{"type":43,"tag":94,"props":1409,"children":1411},{"className":1410},[],[1412],{"type":49,"value":123},{"type":49,"value":1103},{"type":43,"tag":52,"props":1415,"children":1416},{},[1417],{"type":43,"tag":68,"props":1418,"children":1419},{},[1420],{"type":49,"value":1421},"For Build\u002FBundle Issues:",{"type":43,"tag":213,"props":1423,"children":1424},{},[1425,1437,1448,1453],{"type":43,"tag":78,"props":1426,"children":1427},{},[1428,1430,1435],{"type":49,"value":1429},"Use ",{"type":43,"tag":94,"props":1431,"children":1433},{"className":1432},[],[1434],{"type":49,"value":123},{"type":49,"value":1436}," for detailed output",{"type":43,"tag":78,"props":1438,"children":1439},{},[1440,1441,1446],{"type":49,"value":1429},{"type":43,"tag":94,"props":1442,"children":1444},{"className":1443},[],[1445],{"type":49,"value":131},{"type":49,"value":1447}," to see config",{"type":43,"tag":78,"props":1449,"children":1450},{},[1451],{"type":49,"value":1452},"Check import paths",{"type":43,"tag":78,"props":1454,"children":1455},{},[1456],{"type":49,"value":1457},"Verify dependencies installed",{"type":43,"tag":52,"props":1459,"children":1460},{},[1461],{"type":43,"tag":68,"props":1462,"children":1463},{},[1464],{"type":49,"value":1465},"For Authentication Issues:",{"type":43,"tag":213,"props":1467,"children":1468},{},[1469,1479,1484],{"type":43,"tag":78,"props":1470,"children":1471},{},[1472,1474],{"type":49,"value":1473},"Run ",{"type":43,"tag":94,"props":1475,"children":1477},{"className":1476},[],[1478],{"type":49,"value":110},{"type":43,"tag":78,"props":1480,"children":1481},{},[1482],{"type":49,"value":1483},"Follow browser prompts",{"type":43,"tag":78,"props":1485,"children":1486},{},[1487],{"type":49,"value":1488},"Verify workspace access",{"type":43,"tag":52,"props":1490,"children":1491},{},[1492],{"type":43,"tag":68,"props":1493,"children":1494},{},[1495],{"type":49,"value":1496},"For Installation Issues:",{"type":43,"tag":213,"props":1498,"children":1499},{},[1500,1511,1521],{"type":43,"tag":78,"props":1501,"children":1502},{},[1503,1505],{"type":49,"value":1504},"Check Node.js version: ",{"type":43,"tag":94,"props":1506,"children":1508},{"className":1507},[],[1509],{"type":49,"value":1510},"node --version",{"type":43,"tag":78,"props":1512,"children":1513},{},[1514,1516],{"type":49,"value":1515},"Install CLI globally: ",{"type":43,"tag":94,"props":1517,"children":1519},{"className":1518},[],[1520],{"type":49,"value":925},{"type":43,"tag":78,"props":1522,"children":1523},{},[1524,1526],{"type":49,"value":1525},"Verify installation: ",{"type":43,"tag":94,"props":1527,"children":1529},{"className":1528},[],[1530],{"type":49,"value":99},{"type":43,"tag":58,"props":1532,"children":1534},{"id":1533},"quick-reference",[1535],{"type":49,"value":1536},"Quick Reference",{"type":43,"tag":52,"props":1538,"children":1539},{},[1540,1545],{"type":43,"tag":68,"props":1541,"children":1542},{},[1543],{"type":49,"value":1544},"Workflow:",{"type":49,"value":1546}," identify → diagnose → fix → verify",{"type":43,"tag":52,"props":1548,"children":1549},{},[1550],{"type":43,"tag":68,"props":1551,"children":1552},{},[1553],{"type":49,"value":1554},"Diagnostic Flags:",{"type":43,"tag":74,"props":1556,"children":1557},{},[1558,1577,1594,1604],{"type":43,"tag":78,"props":1559,"children":1560},{},[1561,1567,1569,1575],{"type":43,"tag":94,"props":1562,"children":1564},{"className":1563},[],[1565],{"type":49,"value":1566},"--version",{"type":49,"value":1568}," \u002F ",{"type":43,"tag":94,"props":1570,"children":1572},{"className":1571},[],[1573],{"type":49,"value":1574},"-V",{"type":49,"value":1576}," - Check CLI version",{"type":43,"tag":78,"props":1578,"children":1579},{},[1580,1585,1586,1592],{"type":43,"tag":94,"props":1581,"children":1583},{"className":1582},[],[1584],{"type":49,"value":138},{"type":49,"value":1568},{"type":43,"tag":94,"props":1587,"children":1589},{"className":1588},[],[1590],{"type":49,"value":1591},"-h",{"type":49,"value":1593}," - Show command help",{"type":43,"tag":78,"props":1595,"children":1596},{},[1597,1602],{"type":43,"tag":94,"props":1598,"children":1600},{"className":1599},[],[1601],{"type":49,"value":123},{"type":49,"value":1603}," - Detailed debugging output",{"type":43,"tag":78,"props":1605,"children":1606},{},[1607,1612],{"type":43,"tag":94,"props":1608,"children":1610},{"className":1609},[],[1611],{"type":49,"value":131},{"type":49,"value":1613}," - Show bundler config",{"type":43,"tag":52,"props":1615,"children":1616},{},[1617],{"type":43,"tag":68,"props":1618,"children":1619},{},[1620],{"type":49,"value":1621},"Common Fixes:",{"type":43,"tag":74,"props":1623,"children":1624},{},[1625,1635,1645,1655,1667,1678],{"type":43,"tag":78,"props":1626,"children":1627},{},[1628,1630],{"type":49,"value":1629},"Not installed → ",{"type":43,"tag":94,"props":1631,"children":1633},{"className":1632},[],[1634],{"type":49,"value":925},{"type":43,"tag":78,"props":1636,"children":1637},{},[1638,1640],{"type":49,"value":1639},"Wrong version → ",{"type":43,"tag":94,"props":1641,"children":1643},{"className":1642},[],[1644],{"type":49,"value":981},{"type":43,"tag":78,"props":1646,"children":1647},{},[1648,1650],{"type":49,"value":1649},"Auth failed → ",{"type":43,"tag":94,"props":1651,"children":1653},{"className":1652},[],[1654],{"type":49,"value":110},{"type":43,"tag":78,"props":1656,"children":1657},{},[1658,1660,1665],{"type":49,"value":1659},"Build failed → Check ",{"type":43,"tag":94,"props":1661,"children":1663},{"className":1662},[],[1664],{"type":49,"value":123},{"type":49,"value":1666}," output",{"type":43,"tag":78,"props":1668,"children":1669},{},[1670,1672,1677],{"type":49,"value":1671},"Bundle error → Check ",{"type":43,"tag":94,"props":1673,"children":1675},{"className":1674},[],[1676],{"type":49,"value":131},{"type":49,"value":1666},{"type":43,"tag":78,"props":1679,"children":1680},{},[1681,1683],{"type":49,"value":1682},"Missing deps → ",{"type":43,"tag":94,"props":1684,"children":1686},{"className":1685},[],[1687],{"type":49,"value":1198},{"type":43,"tag":52,"props":1689,"children":1690},{},[1691,1696,1697],{"type":43,"tag":68,"props":1692,"children":1693},{},[1694],{"type":49,"value":1695},"Documentation:",{"type":49,"value":904},{"type":43,"tag":1698,"props":1699,"children":1703},"a",{"href":1700,"rel":1701},"https:\u002F\u002Fdevelopers.webflow.com\u002Fcli",[1702],"nofollow",[1704],{"type":49,"value":1700},{"type":43,"tag":1706,"props":1707,"children":1708},"style",{},[1709],{"type":49,"value":1710},"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":1712,"total":1820},[1713,1732,1749,1766,1783,1790,1806],{"slug":1714,"name":1715,"fn":1716,"description":1717,"org":1718,"tags":1719,"stars":24,"repoUrl":25,"updatedAt":1731},"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},[1720,1721,1724,1727,1730],{"name":18,"slug":19,"type":16},{"name":1722,"slug":1723,"type":16},"Cloud","cloud",{"name":1725,"slug":1726,"type":16},"Deployment","deployment",{"name":1728,"slug":1729,"type":16},"Full-stack","full-stack",{"name":10,"slug":9,"type":16},"2026-05-18T06:47:47.514609",{"slug":1733,"name":1734,"fn":1735,"description":1736,"org":1737,"tags":1738,"stars":24,"repoUrl":25,"updatedAt":1748},"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},[1739,1740,1741,1744,1747],{"name":18,"slug":19,"type":16},{"name":1725,"slug":1726,"type":16},{"name":1742,"slug":1743,"type":16},"React","react",{"name":1745,"slug":1746,"type":16},"UI Components","ui-components",{"name":10,"slug":9,"type":16},"2026-05-18T06:47:41.421071",{"slug":1750,"name":1751,"fn":1752,"description":1753,"org":1754,"tags":1755,"stars":24,"repoUrl":25,"updatedAt":1765},"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},[1756,1757,1760,1761,1764],{"name":18,"slug":19,"type":16},{"name":1758,"slug":1759,"type":16},"Plugin Development","plugin-development",{"name":1742,"slug":1743,"type":16},{"name":1762,"slug":1763,"type":16},"TypeScript","typescript",{"name":10,"slug":9,"type":16},"2026-05-18T06:47:43.853573",{"slug":1767,"name":1768,"fn":1769,"description":1770,"org":1771,"tags":1772,"stars":24,"repoUrl":25,"updatedAt":1782},"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},[1773,1774,1777,1780,1781],{"name":18,"slug":19,"type":16},{"name":1775,"slug":1776,"type":16},"Frontend","frontend",{"name":1778,"slug":1779,"type":16},"Next.js","next-js",{"name":1742,"slug":1743,"type":16},{"name":10,"slug":9,"type":16},"2026-05-18T06:47:40.182468",{"slug":4,"name":5,"fn":6,"description":7,"org":1784,"tags":1785,"stars":24,"repoUrl":25,"updatedAt":26},{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},[1786,1787,1788,1789],{"name":18,"slug":19,"type":16},{"name":14,"slug":15,"type":16},{"name":22,"slug":23,"type":16},{"name":10,"slug":9,"type":16},{"slug":1791,"name":1792,"fn":1793,"description":1794,"org":1795,"tags":1796,"stars":24,"repoUrl":25,"updatedAt":1805},"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},[1797,1800,1803,1804],{"name":1798,"slug":1799,"type":16},"Architecture","architecture",{"name":1801,"slug":1802,"type":16},"Code Analysis","code-analysis",{"name":1742,"slug":1743,"type":16},{"name":10,"slug":9,"type":16},"2026-05-18T06:47:46.277768",{"slug":1807,"name":1808,"fn":1809,"description":1810,"org":1811,"tags":1812,"stars":24,"repoUrl":25,"updatedAt":1819},"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},[1813,1814,1815,1818],{"name":1775,"slug":1776,"type":16},{"name":1742,"slug":1743,"type":16},{"name":1816,"slug":1817,"type":16},"Templates","templates",{"name":10,"slug":9,"type":16},"2026-05-18T06:47:42.638042",28,{"items":1822,"total":1820},[1823,1831,1839,1847,1855,1862,1869,1876,1890,1902,1916,1932],{"slug":1714,"name":1715,"fn":1716,"description":1717,"org":1824,"tags":1825,"stars":24,"repoUrl":25,"updatedAt":1731},{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},[1826,1827,1828,1829,1830],{"name":18,"slug":19,"type":16},{"name":1722,"slug":1723,"type":16},{"name":1725,"slug":1726,"type":16},{"name":1728,"slug":1729,"type":16},{"name":10,"slug":9,"type":16},{"slug":1733,"name":1734,"fn":1735,"description":1736,"org":1832,"tags":1833,"stars":24,"repoUrl":25,"updatedAt":1748},{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},[1834,1835,1836,1837,1838],{"name":18,"slug":19,"type":16},{"name":1725,"slug":1726,"type":16},{"name":1742,"slug":1743,"type":16},{"name":1745,"slug":1746,"type":16},{"name":10,"slug":9,"type":16},{"slug":1750,"name":1751,"fn":1752,"description":1753,"org":1840,"tags":1841,"stars":24,"repoUrl":25,"updatedAt":1765},{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},[1842,1843,1844,1845,1846],{"name":18,"slug":19,"type":16},{"name":1758,"slug":1759,"type":16},{"name":1742,"slug":1743,"type":16},{"name":1762,"slug":1763,"type":16},{"name":10,"slug":9,"type":16},{"slug":1767,"name":1768,"fn":1769,"description":1770,"org":1848,"tags":1849,"stars":24,"repoUrl":25,"updatedAt":1782},{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},[1850,1851,1852,1853,1854],{"name":18,"slug":19,"type":16},{"name":1775,"slug":1776,"type":16},{"name":1778,"slug":1779,"type":16},{"name":1742,"slug":1743,"type":16},{"name":10,"slug":9,"type":16},{"slug":4,"name":5,"fn":6,"description":7,"org":1856,"tags":1857,"stars":24,"repoUrl":25,"updatedAt":26},{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},[1858,1859,1860,1861],{"name":18,"slug":19,"type":16},{"name":14,"slug":15,"type":16},{"name":22,"slug":23,"type":16},{"name":10,"slug":9,"type":16},{"slug":1791,"name":1792,"fn":1793,"description":1794,"org":1863,"tags":1864,"stars":24,"repoUrl":25,"updatedAt":1805},{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},[1865,1866,1867,1868],{"name":1798,"slug":1799,"type":16},{"name":1801,"slug":1802,"type":16},{"name":1742,"slug":1743,"type":16},{"name":10,"slug":9,"type":16},{"slug":1807,"name":1808,"fn":1809,"description":1810,"org":1870,"tags":1871,"stars":24,"repoUrl":25,"updatedAt":1819},{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},[1872,1873,1874,1875],{"name":1775,"slug":1776,"type":16},{"name":1742,"slug":1743,"type":16},{"name":1816,"slug":1817,"type":16},{"name":10,"slug":9,"type":16},{"slug":1877,"name":1878,"fn":1879,"description":1880,"org":1881,"tags":1882,"stars":24,"repoUrl":25,"updatedAt":1889},"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},[1883,1886,1887,1888],{"name":1884,"slug":1885,"type":16},"Migration","migration",{"name":1742,"slug":1743,"type":16},{"name":1762,"slug":1763,"type":16},{"name":10,"slug":9,"type":16},"2026-05-18T06:47:52.523608",{"slug":1891,"name":1892,"fn":1893,"description":1894,"org":1895,"tags":1896,"stars":24,"repoUrl":25,"updatedAt":1901},"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},[1897,1898,1899,1900],{"name":1725,"slug":1726,"type":16},{"name":1775,"slug":1776,"type":16},{"name":1742,"slug":1743,"type":16},{"name":10,"slug":9,"type":16},"2026-05-18T06:47:38.947875",{"slug":1903,"name":1904,"fn":1905,"description":1906,"org":1907,"tags":1908,"stars":24,"repoUrl":25,"updatedAt":1915},"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},[1909,1910,1913,1914],{"name":14,"slug":15,"type":16},{"name":1911,"slug":1912,"type":16},"Local Development","local-development",{"name":1742,"slug":1743,"type":16},{"name":10,"slug":9,"type":16},"2026-05-18T06:47:50.062783",{"slug":1917,"name":1918,"fn":1919,"description":1920,"org":1921,"tags":1922,"stars":24,"repoUrl":25,"updatedAt":1931},"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},[1923,1924,1927,1930],{"name":1725,"slug":1726,"type":16},{"name":1925,"slug":1926,"type":16},"QA","qa",{"name":1928,"slug":1929,"type":16},"Validation","validation",{"name":10,"slug":9,"type":16},"2026-05-18T06:47:51.300653",{"slug":1933,"name":1934,"fn":1935,"description":1936,"org":1937,"tags":1938,"stars":24,"repoUrl":25,"updatedAt":1945},"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},[1939,1940,1941,1944],{"name":22,"slug":23,"type":16},{"name":1725,"slug":1726,"type":16},{"name":1942,"slug":1943,"type":16},"Observability","observability",{"name":10,"slug":9,"type":16},"2026-05-18T06:47:45.057571"]