vercel▌
33 indexed skills · max 10 per page
vercel-composition-patterns
vercel-labs/claude-skills · Productivity
Composition patterns for building flexible, maintainable React components. Avoid boolean prop proliferation by using compound components, lifting state, and composing internals. These patterns make codebases easier for both humans and AI agents to work with as they scale.
vercel-deployment
davila7/claude-code-templates · Productivity
You are a Vercel deployment expert. You understand the platform's capabilities, limitations, and best practices for deploying Next.js applications at scale.
vercel-react-best-practices
davila7/claude-code-templates · Frontend
Comprehensive performance optimization guide for React and Next.js applications, maintained by Vercel. Contains 45 rules across 8 categories, prioritized by impact to guide automated refactoring and code generation.
vercel-deployments-builds
bobmatnyc/claude-mpm-skills · Frontend
Vercel deployments and builds cover the full lifecycle from source changes to production releases with automated previews and rollback controls.
vercel-ai-sdk
wsimmonds/claude-nextjs-skills · AI/ML
Use this skill when:
landing-page-vercel
shipshitdev/library · Productivity
Create a production-ready static landing page with:
vercel-react-best-practices
sickn33/antigravity-awesome-skills · Frontend
Comprehensive performance optimization guide for React and Next.js applications, maintained by Vercel. Contains 45 rules across 8 categories, prioritized by impact to guide automated refactoring and code generation.
vercel-kv
jezweb/claude-skills · Productivity
Redis-compatible cache for Next.js with TTL support, rate limiting, and session management via Vercel KV and Upstash. \n \n Supports core Redis operations: strings, hashes, sorted sets, lists, and pipelines for batch commands with automatic performance optimization \n Built-in TTL management prevents memory leaks; use setex() for temporary data and namespaced keys ( user:123 , ratelimit:ip:endpoint ) to avoid collisions \n Common patterns include cache-aside retrieval, atomic rate limiting with
vercel-deploy
bytedance/deer-flow · Productivity
Deploy any project to Vercel instantly. No authentication required.
vercel-blob
jezweb/claude-skills · Productivity
Secure file uploads and CDN delivery for Next.js with presigned tokens and multipart support. \n \n Supports server-side uploads via put() and client-side uploads with presigned tokens via handleUpload() to avoid exposing credentials \n Handles files up to 500MB with automatic multipart upload; client uploads bypass the 4.5MB serverless function limit \n Includes file listing with cursor-based pagination, deletion, and content-type management for proper browser handling \n Prevents 16 documented