원클릭으로
vercel-deploy
Deploy web projects to Vercel with automated CLI setup, authentication, and deployment configuration.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Deploy web projects to Vercel with automated CLI setup, authentication, and deployment configuration.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Display interactive HTML content, visualizations, dashboards, or games on connected OpenClaw nodes (Mac, iOS, Android). Supports live reloading, remote navigation, JS execution, and canvas snapshots for development, testing, and presentation scenarios.
Use the ClawHub CLI to search, install, update, and publish agent skills from clawhub.com. Use when you need to fetch new skills on the fly, sync installed skills to latest or a specific version, or publish new/updated skill folders with the npm-installed clawhub CLI.
Execute shell commands and scripts on the user's local machine.
多模态 AI 图片理解工具。将图片发送给支持 vision 的 LLM 模型,获取图片的语义理解和详细描述。可分析截图、设计稿、图表、报错信息等。
Unified memory search and management system for retrieving, storing, and organizing information across daily logs, persistent memory, SOPs, and execution traces. Use this skill to recall past events, manage knowledge bases, update important notes, or filter historical data by tags and time ranges.
智能 OCR 文字提取工具。从图片中识别文字,支持中英文混排、图像预处理(灰度化+二值化提升识别率)、表格结构还原为 Markdown 格式。
| name | vercel-deploy |
| description | Deploy web projects to Vercel with automated CLI setup, authentication, and deployment configuration. |
| version | 1.0.0 |
| author | DunCrew |
| metadata | {"openclaw":{"emoji":"🔧","primaryEnv":"shell"}} |
Deploy web projects to Vercel with automated CLI setup, authentication, and deployment configuration.
Check Prerequisites
node --version)vercel --version)npm i -g vercelVerify Project Configuration
package.json with build scriptsvercel.json exists (optional, for custom config).env or .env.local for environment variables.gitignore excludes sensitive filesAuthenticate with Vercel
vercel login if not authenticatedvercel whoamiConfigure Project (First Deploy) If this is the first deployment:
vercel to initializeSet Environment Variables If environment variables are needed:
vercel env add VARIABLE_NAME
Or bulk add from .env:
.env fileDeploy For preview deployment:
vercel
For production deployment:
vercel --prod
Verify Deployment
vercel logsPost-Deployment
vercel domains addDeploy Next.js App:
# Install Vercel CLI
npm i -g vercel
# Login
vercel login
# Deploy preview
vercel
# Deploy production
vercel --prod
Add Environment Variables:
# Add single variable
vercel env add DATABASE_URL
# Add to production only
vercel env add API_KEY production
.env files with secrets