vercel — Vercel 部署管理 vercel, fuzzycat, community, Vercel 部署管理, ide skills, CLI 工具, 静态资产优化, Python 脚本, JSON 数据处理, vercel ls 命令, Claude Code

v1.0.0

关于此技能

非常适合需要自动化Vercel工作流管理和优化部署任务的部署代理。 Vercel CLI 是一种命令行工具,用于管理 Vercel 部署

功能特性

支持部署列表显示
提供部署详情检查功能
支持部署日志查看
使用 Python 脚本处理 JSON 数据
支持通过 vercel ls 命令获取最新部署 URL

# 核心主题

Vero-Ventures Vero-Ventures
[0]
[0]
更新于: 3/23/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 9/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review
Review Score
9/11
Quality Score
60
Canonical Locale
en
Detected Body Locale
en

非常适合需要自动化Vercel工作流管理和优化部署任务的部署代理。 Vercel CLI 是一种命令行工具,用于管理 Vercel 部署

核心价值

赋予代理管理Vercel部署的能力,使用Vercel CLI,提供自动化的部署任务、优化的工作流和JSON输出用于进一步的处理,利用像CLI命令和JSON数据格式这样的协议。

适用 Agent 类型

非常适合需要自动化Vercel工作流管理和优化部署任务的部署代理。

赋予的主要能力 · vercel

使用'vercel ls'命令列出最近的Vercel部署
使用'vercel ls --json'自动检索最新的部署URL和状态
使用'vercel inspect <deployment-url>'命令详细检查Vercel部署
查看部署日志以进行故障排除和监控

! 使用限制与门槛

  • 需要在~/.bun/bin/vercel安装Vercel CLI
  • 需要先进行Vercel身份验证
  • 仅限于管理Vercel部署,不支持其他平台

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

评审后的下一步

先决定动作,再继续看上游仓库材料

Killer-Skills 的主价值不应该停在“帮你打开仓库说明”,而是先帮你判断这项技能是否值得安装、是否应该回到可信集合复核,以及是否已经进入工作流落地阶段。

实验室 Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

常见问题与安装步骤

以下问题与步骤与页面结构化数据保持一致,便于搜索引擎理解页面内容。

? FAQ

vercel 是什么?

非常适合需要自动化Vercel工作流管理和优化部署任务的部署代理。 Vercel CLI 是一种命令行工具,用于管理 Vercel 部署

如何安装 vercel?

运行命令:npx killer-skills add Vero-Ventures/fuzzycat。支持 Cursor、Windsurf、VS Code、Claude Code 等 19+ IDE/Agent。

vercel 适用于哪些场景?

典型场景包括:使用'vercel ls'命令列出最近的Vercel部署、使用'vercel ls --json'自动检索最新的部署URL和状态、使用'vercel inspect <deployment-url>'命令详细检查Vercel部署、查看部署日志以进行故障排除和监控。

vercel 支持哪些 IDE 或 Agent?

该技能兼容 Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer。可使用 Killer-Skills CLI 一条命令通用安装。

vercel 有哪些限制?

需要在~/.bun/bin/vercel安装Vercel CLI;需要先进行Vercel身份验证;仅限于管理Vercel部署,不支持其他平台。

安装步骤

  1. 1. 打开终端

    在你的项目目录中打开终端或命令行。

  2. 2. 执行安装命令

    运行:npx killer-skills add Vero-Ventures/fuzzycat。CLI 会自动识别 IDE 或 AI Agent 并完成配置。

  3. 3. 开始使用技能

    vercel 已启用,可立即在当前项目中调用。

! 参考页模式

此页面仍可作为安装与查阅参考,但 Killer-Skills 不再把它视为主要可索引落地页。请优先阅读上方评审结论,再决定是否继续查看上游仓库说明。

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

vercel

安装 vercel,这是一款面向AI agent workflows and automation的 AI Agent Skill。支持 Claude Code、Cursor、Windsurf,一键安装。

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Vercel CLI

Manage FuzzyCat's Vercel deployments. The CLI is installed at ~/.bun/bin/vercel and already authenticated.

Common Commands

Deployments

bash
1# List recent deployments 2vercel ls 3 4# Get latest deployment URL 5vercel ls --json 2>/dev/null | python3 -c " 6import sys,json 7deploys=json.load(sys.stdin) 8if deploys: print(f\"{deploys[0]['url']} | {deploys[0]['state']} | {deploys[0]['createdAt']}\")" 9 10# Get deployment details 11vercel inspect <deployment-url> 12 13# View deployment logs 14vercel logs <deployment-url> 15 16# View real-time logs (streaming) 17vercel logs <deployment-url> --follow

Environment Variables

bash
1# List all env vars 2vercel env ls 3 4# List env vars for specific environment 5vercel env ls --environment production 6 7# Pull env vars to a file 8vercel env pull /tmp/prod-env.txt --environment production 9 10# Add an env var (all environments) 11vercel env add VAR_NAME 12 13# Add env var for specific environment 14vercel env add VAR_NAME production 15 16# Remove an env var 17vercel env rm VAR_NAME

Domains

bash
1# List domains 2vercel domains ls 3 4# Inspect domain 5vercel domains inspect fuzzycatapp.com 6 7# Add a domain 8vercel domains add subdomain.fuzzycatapp.com

Projects

bash
1# Project info 2vercel project ls 3 4# Link current directory to project 5vercel link

Manual Deployment

bash
1# Deploy to preview 2vercel 3 4# Deploy to production (prefer auto-deploy via git push) 5vercel --prod 6 7# Note: Auto-deploys from GitHub are the standard workflow. 8# Manual vercel --prod should be avoided unless auto-deploys are broken.

Debugging

bash
1# Check build output 2vercel logs <url> --output json 2>/dev/null | python3 -c " 3import sys,json 4for line in sys.stdin: 5 try: 6 entry = json.loads(line) 7 if entry.get('type') == 'error': 8 print(f\"ERROR: {entry.get('text','')}\") 9 except: pass" 10 11# Check function logs (serverless) 12vercel logs <url> --follow 13 14# Check if deployment is healthy 15curl -sL https://www.fuzzycatapp.com/api/health | python3 -m json.tool

Production Checks

bash
1# Quick health check 2curl -sL https://www.fuzzycatapp.com/api/health | jq .status 3 4# Check API v1 5curl -sL https://www.fuzzycatapp.com/api/v1/health | python3 -m json.tool 6 7# Check deployment status 8vercel ls 2>/dev/null | head -5

FuzzyCat-Specific

  • Project: fuzzy-cat-apps-projects/fuzzycat
  • Production URL: https://www.fuzzycatapp.com
  • Framework: Next.js (auto-detected by Vercel)
  • Build command: next build (Vercel default)
  • Preview deploys: Currently disabled via vercel.json ignoreCommand
  • Auto-deploys: Triggered by pushes to main branch on GitHub
  • Environments: Development, Preview, Production (each with separate env vars)

相关技能

寻找 vercel 的替代方案 (Alternative) 或可搭配使用的同类 community Skill?探索以下相关开源技能。

查看全部

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

为prompts.chat的信息反馈系统生成可定制的插件小部件

149.6k
0
AI

flags

Logo of vercel
vercel

React 框架

138.4k
0
浏览器

pr-review

Logo of pytorch
pytorch

Python中具有强大GPU加速的张量和动态神经网络

98.6k
0
开发者工具