Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计未展示

webflow-code-component%3atroubleshoot-deployWebflow 代码 component 3atroubleshoot 部署

Agent Skill

用于辅助云资源、部署、容器、基础设施和运维自动化任务。它适合让 Agent 检查配置、整理部署步骤、分析资源状态、生成排障思路或辅助云服务接入。使用时需要明确目标环境、账号权限、区域和资源组,区分本地测试与生产操作;涉及删除资源、重启服务、修改网络或权限配置时,应先确认影响范围。

总安装

4,842

周安装

208

GitHub Stars

62

下载量

1,697
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:webflow-code-component%3atroubleshoot-deploy(Webflow 代码 component 3atroubleshoot 部署)
来源仓库:https://github.com/webflow/webflow-skills
仓库路径:skills/webflow-code-component%3Atroubleshoot-deploy
安装命令:
npx skills add https://github.com/webflow/webflow-skills --skill webflow-code-component:troubleshoot-deploy
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/webflow/webflow-skills --skill webflow-code-component:troubleshoot-deploy

简介

用于辅助云资源、部署和基础设施相关任务。webflow-code-component%3atroubleshoot-deploy 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合检查配置、整理部署步骤和分析资源状态。
  • 使用时需明确目标环境、账号权限和资源组,区分测试与生产操作。
  • 涉及删除资源或修改网络配置时,应先确认影响范围。
  • 安装前建议验证权限边界,避免越权操作导致服务中断。

SKILL.md

Troubleshoot Deploy

Debug and fix deployment issues for Webflow Code Components.

When to Use This Skill

Use when:

  • webflow library share failed with an error
  • Components deployed but aren't working correctly
  • User shares an error message from deployment
  • Bundle or compilation errors occurred

Do NOT use when:

  • Deployment hasn't been attempted yet (use deploy-guide instead)
  • Validating before deployment (use pre-deploy-check instead)
  • General code quality issues (use component-audit instead)

Instructions

Phase 1: Gather Information

  1. Get error details:

- Ask for exact error message - Request output from npx webflow library share - Check if npx webflow library log has additional info

  1. Understand context:

- First deploy or update? - Recent changes made? - Working previously?

Phase 2: Diagnose

  1. Identify error category:

- Authentication errors - Build/compilation errors - Bundle size errors - Network/upload errors - Configuration errors

  1. Analyze root cause:

- Parse error message - Check common causes - Identify specific issue

Phase 3: Provide Solution

  1. Give specific fix:

- Step-by-step resolution - Code examples if needed - Verification steps

  1. Prevent recurrence:

- Explain why it happened - Suggest preventive measures

Common Error Reference

For detailed solutions to each error, see references/ERROR_CATALOG.md.

Quick Reference

ErrorCategoryQuick Fix
"Authentication failed"AuthRegenerate API token in Workspace Settings
"Insufficient permissions"AuthCheck workspace role and token
"Module not found"Buildnpm install --save-dev @webflow/react
"TypeScript errors"BuildRun npx tsc --noEmit to find error
"Unexpected token"BuildCheck file extension is .tsx
"Bundle size exceeds limit"BundleTree-shake imports, lazy load heavy components
"Component not rendering"RuntimeCheck SSR issues, browser console
"Styles not appearing"RuntimeImport CSS in.webflow.tsx file
"webflow.json not found"ConfigCreate webflow.json in project root
"No components found"ConfigCheck glob pattern and file extension
"Invalid JSON in webflow.json"ConfigFix JSON syntax (trailing commas, comments)
"429 Too Many Requests"NetworkWait 60 seconds and retry
"Request timed out"NetworkCheck connectivity, proxy, Webflow status
"JavaScript heap out of memory"MemoryNODE_OPTIONS="--max-old-space-size=4096"
"Circular dependency"BuildExtract shared code, break import cycles

Most Common Fixes

Authentication:

# Regenerate token, then:
export WEBFLOW_WORKSPACE_API_TOKEN=your-new-token
npx webflow library share

Missing Dependencies:

npm install --save-dev @webflow/webflow-cli @webflow/data-types @webflow/react

SSR Issues:

// Wrap browser APIs in useEffect or disable SSR:
declareComponent(Component, { options: { ssr: false } });

Missing Styles:

// In .webflow.tsx, import styles:
import "./Component.module.css";

Debugging Commands

# Check recent deploy logs
npx webflow library log

# Verbose deploy output (shows detailed errors)
npx webflow library share --verbose

# Type check without deploying
npx tsc --noEmit

Validation

The issue is resolved when all of the following are true:

Success CriteriaHow to Verify
Deploy completes without errorsnpx webflow library share exits cleanly
Components appear in DesignerOpen Add panel in Designer and find your library
Import logs confirm successnpx webflow library log shows successful import

Guidelines

Error Analysis Process

  1. Read the full error message - Often contains the solution
  2. Check the error category - Auth, build, bundle, or runtime
  3. Look for file paths - Points to exact location
  4. Check line numbers - For code errors
  5. Search error message - May be a known issue

When to Escalate

If none of the solutions work, gather this data before escalating:

  1. Deploy logs: npx webflow library log
  2. Verbose output: npx webflow library share --verbose
  3. Node.js version: node -v
  4. Package versions: npm list @webflow/webflow-cli @webflow/data-types @webflow/react
  5. Configuration: Contents of webflow.json
  6. Error message: Full error output (not just the summary line)

Then:

  • Check Webflow status page for outages
  • Search the Webflow Community Forum for your error message
  • Contact Webflow Support with the collected data above

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.53%
按下载量换算569

Claude

30.79%
按下载量换算523

Cursor

17.92%
按下载量换算304

Gemini CLI

10.88%
按下载量换算185

安全审计

暂无安全审计结果可展示。

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills