deploy-to-vercel

Deploy applications and websites to Vercel using CLI, git push, or claimable endpoints.

Updated Aug 28, 2026
One-click install
npx skills add https://github.com/AnderHonorato/Mem-rias-IA---Infinity --skill deploy-to-vercel-anderhonorato
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: deploy-to-vercel
Source: https://github.com/AnderHonorato/Mem-rias-IA---Infinity/tree/main/Manus/Skills/snapshots/vercel-deploy-to-vercel
Command: npx skills add https://github.com/AnderHonorato/Mem-rias-IA---Infinity --skill deploy-to-vercel-anderhonorato

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Getting a local project live on Vercel involves many branching paths: checking git remotes, verifying CLI authentication, linking projects to teams, and handling sandboxed environments without credentials. This Skill automates that decision flow so any project can be deployed as a preview with a shareable URL. ## Core Features & Use Cases - State-aware deploy method selection: Detects git remotes, .vercel/ link files, and CLI authentication to choose between git push, vercel deploy, or no-auth fallback scripts. - Team and project linking: Guides team selection via --scope and links projects with vercel link --repo or standard linking to enable automatic git-push deployments. - No-auth fallback scripts: Ships deploy.sh and deploy-codex.sh that package a project (excluding node_modules, .git, .env), auto-detect the framework from package.json, upload to a claimable deploy endpoint, and return preview and claim URLs. - Use Case: A user in a sandboxed AI environment asks to "deploy my app and give me the link" — the Skill packages the project, deploys it without credentials, and returns a live preview URL plus a claim URL to transfer ownership. ## Quick Start Ask the agent to deploy the current project to Vercel and return the preview URL.

Frequently Asked Questions about deploy-to-vercel

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I deploy my app to Vercel from the command line?

Run vercel deploy with the -y and --no-wait flags to deploy the current directory without blocking on the build. If the project is not linked yet, run vercel link first, then check deployment status with vercel inspect using the returned URL.

How to deploy to Vercel without authentication or CLI login?

Use the bundled deploy.sh or deploy-codex.sh fallback scripts, which package the project, detect the framework, and upload it to a claimable deploy endpoint. They return a preview URL for the live site and a claim URL to transfer the deployment to your Vercel account.

Does Vercel deployment work in sandboxed environments like claude.ai or Codex?

Yes, via the no-auth fallback scripts that require no credentials. In Codex, check if the vercel CLI exists first; if unavailable or unauthenticated, run deploy-codex.sh. Network-restricted sandboxes may require escalated permissions or allowlisting vercel.com domains.

Should I deploy to Vercel with git push or the Vercel CLI?

Use git push when the project is linked to Vercel and has a git remote, since pushes trigger automatic preview or production deployments. Use the vercel deploy CLI command when the project is linked but has no git remote.

Why does vercel link prompt interactively or fail to detect my project?

In an unlinked directory, commands like vercel link or vercel ls trigger interactive prompts or silently link as a side effect. Check for .vercel/project.json or .vercel/repo.json first, and prefer vercel link --repo when a git remote exists for reliable repo-based matching.