원클릭으로
vercel
Deploy and manage Vercel projects, domains, environment variables, and serverless functions using the `vercel` CLI.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Deploy and manage Vercel projects, domains, environment variables, and serverless functions using the `vercel` CLI.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
The philosophy and practical benefits of agent fungibility in multi-agent software development. Why homogeneous, interchangeable agents outperform specialized role-based systems at scale.
Jeffrey Emanuel's multi-agent implementation workflow using NTM, Agent Mail, Beads, and BV. The execution phase that follows planning and bead creation. Includes exact prompts used.
Named Tmux Manager - Multi-agent orchestration for Claude Code, Codex, and Gemini in tiled tmux panes. Visual dashboards, command palette, context rotation, robot mode API, work assignment, safety system. Go CLI.
MCP Agent Mail - Mail-like coordination layer for multi-agent workflows. Identities, inbox/outbox, file reservations, contact policies, threaded messaging, pre-commit guard, Human Overseer, static exports, disaster recovery. Git+SQLite backed. Python/FastMCP.
Converting markdown plans into beads (tasks with dependencies) and polishing them until they're implementation-ready. The bridge between planning and agent swarm execution. Includes exact prompts used.
Beads Viewer - Graph-aware triage engine for Beads projects. Computes PageRank, betweenness, critical path, and cycles. Use --robot-* flags for AI agents.
| name | vercel |
| description | Deploy and manage Vercel projects, domains, environment variables, and serverless functions using the `vercel` CLI. |
Use the vercel CLI to deploy and manage Vercel projects.
Deploy current directory:
vercel
Deploy to production:
vercel --prod
List recent deployments:
vercel ls
Inspect a deployment:
vercel inspect <deployment-url>
View deployment logs:
vercel logs <deployment-url>
Redeploy a previous deployment:
vercel redeploy <deployment-url>
List all projects:
vercel project ls
Link current directory to a project:
vercel link
Remove a project:
vercel project rm <project-name>
List domains:
vercel domains ls
Add a domain to a project:
vercel domains add <domain> <project-name>
Check domain configuration:
vercel domains inspect <domain>
List env vars for a project:
vercel env ls
Add an env var:
vercel env add <name>
Pull env vars to local .env file:
vercel env pull
Remove an env var:
vercel env rm <name>
Run project locally with Vercel's dev server:
vercel dev
Pull latest project settings:
vercel pull
Build project locally:
vercel build
Note: Secrets are deprecated in favor of Environment Variables.
List teams:
vercel teams ls
Switch to a team:
vercel switch <team-slug>
Check current login:
vercel whoami
Login:
vercel login
Logout:
vercel logout