Integrate Redis-compatible Vercel KV for caching, session management, and rate limiting in Next.js applications. Powered by Upstash with strong consistency and TTL support. Use when implementing cache strategies, storing temporary data with expiration, building rate limiters, or troubleshooting missing environment variables, serialization errors, or rate limit issues. const key = `ratelimit:${ip}`; const current = await kv.incr(key); if (current === 1) await kv.expire(key, 60); // 60s window ret
/plugin marketplace add jezweb/claude-skills/plugin install vercel-kv@jezweb/claude-skills