Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计未展示

webflow-cli%3atroubleshooterWebflow CLI 3atroubleshooter 搜索

Agent Skill

webflow-cli%3atroubleshooter 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

5,217

周安装

209

GitHub Stars

62

下载量

1,689
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/webflow/webflow-skills --skill webflow-cli:troubleshooter

简介

用于查找、检索和筛选相关信息。webflow-cli%3atroubleshooter 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合根据关键词、任务场景或来源线索快速定位候选结果。
  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围和维护状态,避免触发联网或文件读写。
  • 涉及外部请求时应注意频率限制和数据隐私合规要求。

SKILL.md

Webflow CLI Troubleshooter

Diagnose and resolve Webflow CLI issues with diagnostic commands and automated fixes.

Important Note

ALWAYS use Bash tool for all diagnostic operations:

  • Execute diagnostic commands via Bash tool
  • Use Read tool to examine configuration files
  • Verify CLI installation: webflow --version
  • Check authentication: webflow auth login (if needed)
  • Use CLI diagnostic flags: --verbose, --debug-bundler, --help
  • DO NOT use Webflow MCP tools for CLI workflows
  • All CLI commands require proper descriptions (not context parameters)

Package Manager Detection:

  • Check for lock files: package-lock.json (npm), pnpm-lock.yaml (pnpm), yarn.lock (yarn)
  • If no lock file found, ask user which package manager to use (npm/pnpm/yarn)
  • Use detected package manager for all install/build commands

Instructions

Phase 1: Issue Identification

  1. Ask user to describe issue: What command failed or what error occurred
  2. Determine error category:

- CLI not installed or wrong version - Authentication failed - Build/bundle failed - Command not recognized

  1. Capture error message: Get exact error output

Phase 2: Run Diagnostics

  1. Check CLI installation: Run webflow --version
  2. Check authentication: Run webflow auth login if needed
  3. Run command with --verbose: Execute failed command with --verbose flag for detailed output
  4. Use --debug-bundler (if bundle issue): Run with --debug-bundler flag to see bundler config
  5. Check --help: Run webflow <command> --help to verify command syntax

Phase 3: Analyze & Fix

  1. Identify root cause: Parse error messages and diagnostic output
  2. Present fix: Show specific solution based on CLI error
  3. Apply fix: Execute fix commands
  4. Verify: Re-run original command to confirm resolution

Examples

Example 1: CLI Not Installed

User prompt:

Getting "webflow: command not found"

Diagnostics:

🔍 Checking CLI Installation

Executing: webflow --version

Error: bash: webflow: command not found

❌ Webflow CLI not installed

Fix:

📋 Fix: Install Webflow CLI

Executing: npm install -g @webflow/cli

✓ CLI installed

Verifying...
Executing: webflow --version

Output: @webflow/cli/1.5.2

✅ Issue resolved

Example 2: Build Failed

User prompt:

Build is failing but I don't know why

Diagnostics:

🔍 Running Build with Diagnostics

Executing: webflow library bundle --verbose

Output:
[verbose] Loading webflow.json
[verbose] Found library config
[verbose] Building components from ./src/**/*.webflow.tsx
[verbose] Running bundler
Error: Failed to resolve import './missing-file.ts'

❌ Build failed: Missing import file

Fix:

📋 Fix: Missing Import

Issue: Component imports './missing-file.ts' which doesn't exist

Solutions:
1. Create the missing file
2. Fix the import path
3. Remove the import if not needed

Check your component imports and ensure all files exist.

Example 3: Bundle Configuration Issue

User prompt:

Bundle is failing with webpack errors

Diagnostics:

🔍 Checking Bundle Configuration

Executing: webflow library bundle --debug-bundler

Output:
[debug-bundler] Final bundler configuration:
{
  "entry": "./src/Component.tsx",
  "output": {
    "path": "/dist",
    "filename": "bundle.js"
  },
  "resolve": {
    "extensions": [".ts", ".tsx", ".js"]
  }
}

Error: Module not found: Can't resolve 'styled-components'

❌ Bundle failed: Missing dependency

Fix:

📋 Fix: Install Missing Dependency

Executing: npm install styled-components

✓ Dependency installed

Retrying bundle...
Executing: webflow library bundle

✓ Bundle created successfully

✅ Issue resolved

Guidelines

CLI Diagnostic Commands

Version Check:

webflow --version
# or
webflow -V

Command Help:

webflow --help                    # General help
webflow library --help            # Library commands help
webflow library bundle --help     # Specific command help

Verbose Output:

# Add --verbose to any command for detailed debugging
webflow library bundle --verbose
webflow cloud deploy --verbose
webflow extension bundle --verbose

Debug Bundler:

# Show final bundler configuration
webflow library bundle --debug-bundler
webflow extension bundle --debug-bundler

Common Issues & Fixes

Issue: CLI Not Found

  • Diagnostic: webflow --version fails
  • Fix: npm install -g @webflow/cli
  • Verify: webflow --version shows version

Issue: Wrong CLI Version

  • Diagnostic: webflow --version shows old version
  • Fix: npm update -g @webflow/cli
  • Verify: Latest version installed

Issue: Command Not Recognized

  • Diagnostic: "Unknown command" error
  • Fix: Check command with webflow --help
  • Verify: Use correct command syntax

Issue: Authentication Failed

  • Diagnostic: "Not authenticated" error
  • Fix: webflow auth login
  • Verify: Authentication succeeds

Issue: Build Failed

  • Diagnostic: Run with --verbose flag
  • Fix: Fix errors shown in verbose output
  • Verify: Build succeeds

Issue: Bundle Configuration Error

  • Diagnostic: Run with --debug-bundler flag
  • Fix: Adjust bundler config in webflow.json
  • Verify: Bundle succeeds

Issue: Missing Dependencies

  • Diagnostic: "Module not found" errors
  • Fix: npm install or install specific package
  • Verify: Build/bundle succeeds

Issue: Corrupted node_modules

  • Diagnostic: Unexplained build failures
  • Fix: rm -rf node_modules && npm install
  • Verify: Build succeeds

Error Handling

CLI Not Installed:

❌ Webflow CLI Not Found

Install:
npm install -g @webflow/cli

Verify:
webflow --version

Docs: https://developers.webflow.com/cli

Authentication Required:

❌ Authentication Failed

Fix:
webflow auth login

Follow browser prompts to authenticate

Build/Bundle Failed:

❌ Build Failed

Run with diagnostics:
webflow library bundle --verbose --debug-bundler

This shows:
- Detailed build steps
- Import resolution
- Bundler configuration
- Exact error location

Fix the errors shown in output

Unknown Error:

❌ Unknown Issue

Gather info:
1. What command are you running?
2. Run command with --verbose flag
3. Check command syntax with --help
4. Share full error output

This helps identify the specific problem

File Operations

Reading Config Files:

# View webflow.json
Read: webflow.json

# View package.json
Read: package.json

# View build output
Read: dist/

Discovering Files:

# Find config files
Glob: **/webflow.json

# Find components
Glob: src/**/*.webflow.tsx

# Find logs
Glob: **/*.log

Best Practices

Always Start With:

  1. Check CLI version: webflow --version
  2. Check command syntax: webflow <command> --help
  3. Run with verbose: Add --verbose flag

For Build/Bundle Issues:

  1. Use --verbose for detailed output
  2. Use --debug-bundler to see config
  3. Check import paths
  4. Verify dependencies installed

For Authentication Issues:

  1. Run webflow auth login
  2. Follow browser prompts
  3. Verify workspace access

For Installation Issues:

  1. Check Node.js version: node --version
  2. Install CLI globally: npm install -g @webflow/cli
  3. Verify installation: webflow --version

Quick Reference

Workflow: identify → diagnose → fix → verify

Diagnostic Flags:

  • --version / -V - Check CLI version
  • --help / -h - Show command help
  • --verbose - Detailed debugging output
  • --debug-bundler - Show bundler config

Common Fixes:

  • Not installed → npm install -g @webflow/cli
  • Wrong version → npm update -g @webflow/cli
  • Auth failed → webflow auth login
  • Build failed → Check --verbose output
  • Bundle error → Check --debug-bundler output
  • Missing deps → npm install

Documentation: https://developers.webflow.com/cli

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

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

平台分布

Codex

38.97%
按下载量换算658

Claude

30.36%
按下载量换算513

Cursor

18.54%
按下载量换算313

Gemini CLI

10.03%
按下载量换算169

安全审计

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

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills