home / skills / skillcreatorai / ai-agent-skills / vercel-deploy
This skill helps deploy applications to Vercel using edge functions, serverless, and ISR to optimize performance and scalability.
npx playbooks add skill skillcreatorai/ai-agent-skills --skill vercel-deployReview the files below or copy the command above to add this skill to your agents.
---
name: vercel-deploy
description: Deploy applications to Vercel with edge functions, serverless, and ISR.
author: vercel
category: development
tags: [nextjs, node, typescript]
---
# Vercel Deploy
Deploy applications to Vercel with edge functions, serverless, and ISR.
## When to Use
- Deploying Next.js applications
- Setting up edge functions
- Configuring ISR (Incremental Static Regeneration)
- Serverless deployments
## Source
This skill references patterns from [Vercel's agent-skills](https://github.com/vercel-labs/agent-skills).
This skill deploys applications to Vercel, handling edge functions, serverless functions, and Incremental Static Regeneration (ISR). It streamlines build and deployment steps for Next.js and other frameworks supported by Vercel, letting you target edge runtimes or serverless backends with simple commands. The skill is implemented in Python and designed for integration into agent workflows.
The skill prepares project configuration and invokes Vercel deployment APIs or CLI commands to upload builds, set runtimes, and configure routes. It detects Next.js conventions to enable ISR and can switch functions to the edge runtime or to serverless depending on your configuration. It reports build status, deployment URLs, and common errors to help diagnose failures.
Does the skill support non-Next.js projects?
Yes. It supports any framework that Vercel accepts, but Next.js-specific features like ISR are handled automatically when detected.
Can it configure edge versus serverless automatically?
The skill can switch runtimes based on configuration hints and recommended patterns, but you should verify vercel.json or project config for precise control.