vercel

vercel is a skill for Claude Code from Elnora-AI/elnora-ai-agent-hackathon-starter-kit. It costs 18 tokens per session (969 once invoked), scanned A, original, Apache-2.0.

A command-line tool for deploying, managing, and developing projects on Vercel, a platform for hosting web applications.

In plain words
What is it for?
It helps deploy projects, connect local folders to Vercel projects, manage projects from the terminal, and develop Vercel-hosted applications.
Why use it?
It lets you work with Vercel projects from a terminal instead of relying only on its web dashboard. Project linking helps the commands target the correct project, including projects inside a monorepo, a repository containing multiple projects.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter.

Part of the vercel plugin — 5 skills, 5 commands shipped together

Good fit It helps deploy projects, connect local folders to Vercel projects, manage projects from the terminal, and develop Vercel-hosted applications.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/elnora-ai/elnora-ai-agent-hackathon-starter-kit/vercel
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Elnora-AI/elnora-ai-agent-hackathon-starter-kit --skill vercel
Clone the repo
git clone --depth 1 https://github.com/Elnora-AI/elnora-ai-agent-hackathon-starter-kit

Made for: Claude Code.

Or install vercel, the plugin that ships this one along with the rest of its 5 skills, 5 commands.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for vercel

README.md
[![agentmods](https://agentmods.dev/badge/skills/elnora-ai/elnora-ai-agent-hackathon-starter-kit/vercel/github.svg)](https://agentmods.dev/skills/elnora-ai/elnora-ai-agent-hackathon-starter-kit/vercel)
Your own site
<a href="https://agentmods.dev/skills/elnora-ai/elnora-ai-agent-hackathon-starter-kit/vercel"><img src="https://agentmods.dev/badge/skills/elnora-ai/elnora-ai-agent-hackathon-starter-kit/vercel/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for vercel

Your own site · 80×15
<a href="https://agentmods.dev/skills/elnora-ai/elnora-ai-agent-hackathon-starter-kit/vercel"><img src="https://agentmods.dev/badge/skills/elnora-ai/elnora-ai-agent-hackathon-starter-kit/vercel.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 18 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 969 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00018 $0.00969
Opus 5 $0.00009 $0.00485
Sonnet 5 $0.00004 $0.00194
Haiku 4.5 $0.00002 $0.00097

Measured 9d ago against content hash 6f9ab55cad31, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

vercel scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

- **Access a preview deployment** → use `vercel curl` (see `references/monitoring-and-debugging.md`)
Origin

Copies of this mod

1 near-identical copy found in the catalogue:

plugins/vercel/skills/vercel/SKILL.md · 69 lines

How it starts

The opening of the file, as written. The whole thing — 69 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Vercel CLI Skill

The Vercel CLI (vercel or vc) deploys, manages, and develops projects on the Vercel platform from the command line. Use vercel <command> -h for full flag details on any command.

Critical: Project Linking

Commands must be run from the directory containing the .vercel folder (or a subdirectory of it). How .vercel gets set up depends on your project structure:

  • .vercel/project.json: Created by vercel link. Links a single project. Fine for single-project repos, and can work in monorepos if there's only one project.
  • .vercel/repo.json: Created by vercel link --repo. Links a repo that may contain multiple projects. Always a good idea when any project has a non-root directory (e.g., apps/web).

Running from a project subdirectory (e.g., apps/web/) skips the "which project?" prompt since it's unambiguous.

When something goes wrong, check how things are linked first — look at what's in .vercel/ and whether it's project.json or repo.json. Also verify you're on the right team with vercel whoami — linking while on the wrong team is a common mistake.

Quick Start

npm i -g vercel
vercel login
vercel link              # single project
# OR
vercel link --repo       # monorepo
vercel pull
vercel dev        # local development
vercel deploy     # preview deployment
vercel --prod     # production deployment

Decision Tree

Use this to route to the correct reference file:

  • Deployreferences/deployment.md
  • Local developmentreferences/local-development.md
  • Environment variablesreferences/environment-variables.md
  • CI/CD automationreferences/ci-automation.md
  • Domains or DNSreferences/domains-and-dns.md
  • Projects or teamsreferences/projects-and-teams.md
  • Logs, debugging, or accessing preview deploysreferences/monitoring-and-debugging.md
  • Blob storagereferences/storage.md
  • Integrations (databases, storage, etc.) → use the integration skill, or references/integrations.md for deep reference
  • Access a preview deployment → use vercel curl (see references/monitoring-and-debugging.md)
  • CLI doesn't have a command for it → use vercel api as a fallback (see references/advanced.md)
  • Node.js backends (Express, Hono, etc.)references/node-backends.md
  • Monorepos (Turborepo, Nx, workspaces)references/monorepos.md
  • Bun runtimereferences/bun.md
  • Advanced (API, webhooks)references/advanced.md
  • Global flagsreferences/global-options.md
  • First-time setupreferences/getting-started.md
  • REST API endpointsreferences/rest-api-reference.md
  • Complete CLI command/flag referencereferences/cli-complete-reference.md

Read the full file on GitHub · 69 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 69 lines · 18 tokens per session scan A 6f9ab55cad31

Subscribe to this mod's changes

vercel is a skill published in the GitHub repository Elnora-AI/elnora-ai-agent-hackathon-starter-kit (22 stars, last pushed yesterday), licensed Apache-2.0. It adds 18 tokens to every session and 969 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

merge-seed

Merge upstream React Starter Kit updates (the seed remote) into main, preserving this project's identity, scope, and behavior. Use when asked to sync, pull, or merge the seed / starter kit / upstream template.

kriasoft/react-starter-kit · 49 tokens

vite-tunnel

A guide for exposing a local Vite development server through a Cloudflare Named Tunnel, giving it a stable public web address.

YuDefine/nuxt-supabase-starter · 27 tokens

shadcn

Manages shadcn components and projects — adding, searching, fixing, debugging, styling, and composing UI, including chat interfaces. Provides project context, component docs, and usage examples. Applies when working with shadcn/ui, component registries, presets, --preset codes, or any project with a components.json…

kriasoft/react-starter-kit · 94 tokens

deploy-to-vercel

Deploy applications and websites to Vercel. Use when the user requests deployment actions like "deploy my app", "deploy and give me the link", "push this live", or "create a preview deployment".

ever-works/directory-web-template · 47 tokens

gke-compute-classes

Configures, optimizes, and troubleshoots GKE ComputeClasses. Use when configuring Spot VMs with on-demand fallback, targeting specific accelerators (GPUs/TPUs) or machine families, restricting ComputeClass access, or debugging pending pods related to node pool auto-creation. Do not use for cluster-level Node Auto…

google/skills · 83 tokens

gke-reliability

Improves GKE workload reliability, using PDBs, health probes, and topology spread constraints. Use when configuring GKE workload reliability, setting up PDBs, or configuring GKE health probes (liveness, readiness, startup). Don't use for disaster recovery setup or full cluster backups (use gke-backup-dr instead).

google/skills · 73 tokens