knowledge-update

Corrects outdated LLM knowledge about Vercel platform features and products.

Updated Sep 5, 2026
One-click install
npx skills add https://github.com/dsgalkar/dnyaneshwar_portfolio --skill knowledge-update-dsgalkar
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: knowledge-update
Source: https://github.com/dsgalkar/dnyaneshwar_portfolio/tree/main/.agents/plugins/vercel/skills/knowledge-update
Command: npx skills add https://github.com/dsgalkar/dnyaneshwar_portfolio --skill knowledge-update-dsgalkar

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? LLM training data often contains outdated or incorrect information about the Vercel platform, leading to wrong recommendations such as defaulting to Edge runtime, assuming streaming requires Edge, or referencing deprecated products like Vercel Postgres and Vercel KV. ## Core Features & Use Cases - Knowledge Corrections: Overrides stale assumptions about Edge Functions, Fluid Compute, streaming/SSE support, Node.js versions, function timeouts, and pricing models. - New Product Awareness: Introduces recent Vercel offerings including eve, AI Gateway, Queues, Sandbox, Rolling Releases, BotID, and the MCP server. - Configuration Guidance: Promotes vercel.ts with @vercel/config as the replacement for vercel.json, with typed configuration examples. - Use Case: When a developer asks how to stream AI responses on Vercel, the skill ensures the answer uses the default Node.js Fluid Compute runtime instead of incorrectly recommending Edge runtime. ## Quick Start Ask the assistant to explain how to deploy a streaming API route on Vercel and it will apply the corrected platform knowledge automatically.

Frequently Asked Questions about knowledge-update

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
Do I need Edge runtime to stream responses on Vercel?

No, streaming with ReadableStream and Server-Sent Events works on the default Node.js runtime with zero configuration. Edge runtime is not recommended; Fluid Compute provides the same regions and pricing with full Node.js API access.

What replaced Vercel Postgres and Vercel KV?

Vercel Postgres and Vercel KV are no longer offered directly. Vercel now provides databases and key-value stores through integrations available in the Vercel Marketplace.

Does Vercel support WebSockets in serverless functions?

Yes, Vercel Functions support WebSockets on Fluid Compute, allowing bidirectional connections for chat and collaborative apps. Use standard libraries like ws or Socket.IO, or experimental_upgradeWebSocket() from @vercel/functions in Next.js.

What is vercel.ts and should I use it instead of vercel.json?

vercel.ts is the recommended way to configure Vercel projects, replacing vercel.json with full TypeScript support, dynamic logic, and environment variable access. Install @vercel/config and export a typed VercelConfig object.

What are the current Vercel Functions size and timeout limits?

Functions support up to 5 GB package size and 100 MB request bodies on Fluid Compute. The default execution timeout is 300 seconds on all plans, and Node.js 24 LTS is the current default runtime.