stack-vercel

stack-vercel is a skill for Claude Code from e-t-y-b/etyb-skills. It costs 251 tokens per session (4,289 once invoked), scanned A, original, MIT.

A Vercel knowledge guide for building and deploying web applications with Vercel's frontend hosting platform, including Next.js and server-side functions.

In plain words
What is it for?
Use it when working with Next.js, Vercel Functions, deployments, caching, scheduled jobs, queues, or Vercel storage services.
Why use it?
It gives the existing team roles a shared place to find Vercel-specific guidance and current reference material.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions Claude Code; mentions Codex.

Part of the etyb plugin — 14 skills, 5 agents, 4 hooks shipped together

Good fit Use it when working with Next.js, Vercel Functions, deployments, caching, scheduled jobs, queues, or Vercel storage services.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/e-t-y-b/etyb-skills/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 e-t-y-b/etyb-skills --skill vercel
Clone the repo
git clone --depth 1 https://github.com/e-t-y-b/etyb-skills

Made for: Claude Code.

Or install etyb, the plugin that ships this one along with the rest of its 14 skills, 5 agents, 4 hooks.

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 stack-vercel

README.md
[![agentmods](https://agentmods.dev/badge/skills/e-t-y-b/etyb-skills/vercel/github.svg)](https://agentmods.dev/skills/e-t-y-b/etyb-skills/vercel)
Your own site
<a href="https://agentmods.dev/skills/e-t-y-b/etyb-skills/vercel"><img src="https://agentmods.dev/badge/skills/e-t-y-b/etyb-skills/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 stack-vercel

Your own site · 80×15
<a href="https://agentmods.dev/skills/e-t-y-b/etyb-skills/vercel"><img src="https://agentmods.dev/badge/skills/e-t-y-b/etyb-skills/vercel.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 251 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,289 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00251 $0.04289
Opus 5 $0.00125 $0.02145
Sonnet 5 $0.00050 $0.00858
Haiku 4.5 $0.00025 $0.00429

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

Security

Grade A, and why

stack-vercel scanned grade A with 0 findings 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 11d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

stacks/vercel/SKILL.md · 143 lines

How it starts

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

Vercel Stack — Team Briefing

This is a knowledge overlay, not a new specialist. The existing ETYB team does the work — backend-architect writes the backend code, devops-engineer wires the deploys, security-engineer enforces the boundary. This pack tells each role where the current Vercel knowledge lives.

Where the full briefing lives

The full Stack briefing lives in this same folder. Per-product and per-role pages are siblings of this SKILL.md. Every page carries last_verified_on stamps and authoritative-source URLs in its frontmatter; see skills/etyb/core/knowledge-currency.md for the drift-check protocol that uses them.

  • Stack briefing: stacks/vercel/index.md
  • Per-product pages: stacks/vercel/<product>.md — one per entry in products_covered above
  • Per-role views: stacks/vercel/<role>.md — one per role in applies_to_roles above

When ETYB is installed locally these are read directly from disk. For third-party agents without the install, the same content is reachable as raw markdown at https://raw.githubusercontent.com/e-t-y-b/etyb-skills/main/stacks/vercel/<page>.md.

When delegate_to_skills (frontmatter above) lists a first-party vendor MCP/skill that's installed in the user's environment, ETYB defers to it first. The in-repo Stack content is the curated fallback.

What changed in 2025-2026 that older training data misses

Critical context — an LLM with a 2024 cutoff will get these wrong:

  • Next.js 16 shipped (late 2025) with Cache Components as the recommended caching model. The 'use cache' directive at file, function, or component scope, paired with cacheLife() and cacheTag(), is the new default — replacing ad-hoc fetch(..., { next: { revalidate } }), unstable_cache, and export const revalidate = N for most cases. Old patterns still work in 15.x, but new builds should adopt Cache Components.
  • Partial Prerendering (PPR) is GA and the default rendering model for new App Router projects in Next.js 16. A single route can ship a static shell with streamed Suspense holes — this is neither SSG, SSR, nor ISR in the classical sense. Mental models built before PPR will fight the framework.
  • Fluid Compute went GA in 2025 and changed Vercel Functions billing/concurrency math fundamentally. Functions now multiplex in-process concurrency, bill on active CPU rather than wall-clock GB-seconds, and dynamically scale CPU within a single instance. "Cold start vs warm" reasoning from the pre-Fluid era is wrong.
  • Vercel Postgres is Neon under the hood. Old @vercel/postgres SDK calls still work but the Marketplace direction is for users to provision Neon (or another Marketplace Postgres) directly. New projects should use @neondatabase/serverless rather than reaching for @vercel/postgres.
  • Vercel KV is a Marketplace integration, typically powered by Upstash. New code should treat Marketplace as the primary path.
  • Vercel Sandbox GA'd in 2025 — microVM-isolated execution for running untrusted code (AI-generated code, agent tool outputs, user-submitted scripts). If a request involves "let an LLM run code" or "execute user-submitted code," Sandbox is the answer, not a homegrown VM2/subprocess.
  • Vercel Workflow ships durable functions (long-running, multi-step, replay-safe) for background jobs and AI agent orchestration. Don't reach for Temporal/Inngest on Vercel before checking whether Workflow fits.
  • Vercel Queues ships first-party producer/consumer queues with visibility timeouts and DLQs.
  • Vercel AI SDK v5+ is a major rewrite. The streaming UI primitives (streamUI, experimental_StreamingReactResponse) from v3 are deprecated. Current canon: streamText, generateText, generateObject, streamObject, tool() definitions, useChat() v2, plus AI Elements — a shadcn-layered component library specifically for AI UIs.
  • AI Gateway routes across providers (Anthropic, OpenAI, Google, Mistral, xAI, Groq, Fireworks, Bedrock, etc.) with observability, caching, rate limiting, and fallback. Use @ai-sdk/gateway + gateway('anthropic/claude-sonnet-4.7') etc.
  • Turbopack is the production build path for Next.js 16+ (stable for dev since Next.js 15, stable for build is rolling out). Webpack is still supported but no longer the default story.
  • after() (formerly unstable_after) is GA: schedule work after the response is sent without blocking the user.
  • taintObjectReference / taintUniqueValue are the canonical guard against accidentally serializing server-only objects/secrets into a Client Component.

Read the full file on GitHub · 143 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. 11d ago First seen · 143 lines · 251 tokens per session scan A d95589a50134

Subscribe to this mod's changes

stack-vercel is a skill published in the GitHub repository e-t-y-b/etyb-skills (10 stars, last pushed 2mo ago), licensed MIT. It adds 251 tokens to every session and 4,289 once invoked, about $0.0013 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

azure-integrations

Azure deployment for web apps — Static Web Apps, App Service, Blob Storage, Bicep/ARM, GitHub Actions CI/CD. Use when deploying Next.js/Vite to Azure or configuring Azure resources for full-stack apps.

PracticalSwan/agent-skills · 50 tokens

deploy-to-vercel

Deploy a Next.js application to Vercel. Covers project linking, environment variables, preview deployments, custom domains, and production deployment configuration. Use when deploying a Next.js app for the first time, setting up preview deployments for pull requests, configuring custom domains, or managing environment…

pjt222/agent-almanac · 69 tokens

frappe-ops-website-deploy

Deploy HTML/CSS websites to ERPNext/Frappe (v15/v16) as Web Pages via the REST API. Use this skill whenever a user wants to host a website on ERPNext, deploy HTML mockups to Frappe, create Web Pages programmatically, configure Website Settings, or integrate Frappe's Discussion system as a forum. Also use when the user…

Impertio-Studio/Frappe_Claude_Skill_Package · 148 tokens

vercel

Inspect Vercel projects, deployments, build logs and domains via the Vercel REST API. Use when the user mentions Vercel, a deployment that failed / is building, build or runtime logs, a preview URL, project domains, or wants to check / redeploy a Vercel project.

AceDataCloud/Skills · 65 tokens

x-lsof

Enhanced lsof (List Open Files) with interactive UI and structured output. View open files, network connections, and processes. Dependency: This is an x-cmd module. Install x-cmd first (see x-cmd skill for installation options). see x-cmd skill for installation.

x-cmd/x-cmd · 64 tokens

netlify-deploy

Deploy web projects to Netlify using the Netlify CLI (npx netlify). Use when the user asks to deploy, host, publish, or link a site/repo on Netlify, including preview and production deploys.

foryourhealth111-pixel/Vibe-Skills · 51 tokens