knowledge-update

Corrects outdated LLM knowledge about the Vercel platform and documents new products.

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

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, Node.js versions, timeouts, pricing, and package size limits. - New Product Awareness: Introduces recent Vercel offerings such as eve, AI Gateway, Queues, Sandbox, Rolling Releases, BotID, and the MCP server. - vercel.ts Configuration: Documents the TypeScript-based project configuration format that replaces vercel.json. - Use Case: When a user asks how to stream AI responses on Vercel, the assistant correctly recommends the default Node.js Fluid Compute runtime instead of unnecessarily switching to the Edge runtime. ## Quick Start Ask the assistant how to configure streaming, runtimes, or project settings 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 the 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. Staying on Fluid Compute keeps full Node.js APIs and longer execution durations.

How do I configure a Vercel project with TypeScript?

Use vercel.ts, which replaces vercel.json with typed configuration via the @vercel/config package. Export a VercelConfig object defining build commands, rewrites, redirects, headers, and crons.

Does Vercel still offer Vercel Postgres and Vercel KV?

No, Vercel Postgres and Vercel KV are no longer offered. Databases are now provided through integrations available in the Vercel Marketplace.

What are the current Vercel Functions limits?

Functions support up to 5 GB package size, 100 MB request bodies, a 300s default timeout, WebSockets, and Bun and Rust runtimes on Fluid Compute. Node.js 24 LTS is the default runtime.

What happened to Vercel Edge Config?

Edge Config is now called Global Config. The @vercel/global-config package replaces @vercel/edge-config as a drop-in, and the CLI command is vercel global-config.