knowledge-update

Corrects outdated LLM knowledge about Vercel platform features and products.

Updated Jul 31, 2026
One-click install
npx skills add https://github.com/AarnavBaddam/skills --skill knowledge-update-aarnavbaddam
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: knowledge-update
Source: https://github.com/AarnavBaddam/skills/tree/main/knowledge-update
Command: npx skills add https://github.com/AarnavBaddam/skills --skill knowledge-update-aarnavbaddam

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? LLMs often carry outdated knowledge about the Vercel platform, such as recommending Edge Functions, assuming streaming requires the edge runtime, or referencing deprecated products like Vercel Postgres and Vercel KV. This Skill injects authoritative corrections at session start so generated code and architecture advice reflect the current platform. ## Core Features & Use Cases - Knowledge Corrections: Overrides stale assumptions about Edge Functions, streaming/SSE, Fluid Compute, Node.js 24 defaults, 300s timeouts, Active CPU pricing, and 5 GB function package sizes. - New Product Awareness: Introduces recent Vercel offerings including Eve, AI Gateway, Queues, Sandbox, Rolling Releases, BotID, and the Vercel MCP server. - vercel.ts Configuration: Promotes the typed vercel.ts config (via @vercel/config) as the replacement for vercel.json, with examples for rewrites, redirects, headers, and crons. - Use Case: When a user asks how to stream an AI response on Vercel, the assistant correctly recommends the default Node.js Fluid Compute runtime instead of unnecessarily switching to runtime = 'edge'. ## Quick Start Ask the assistant to configure a Vercel project or answer a Vercel platform question, and the injected knowledge updates will automatically correct any outdated assumptions.

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 works on the default Node.js runtime with zero configuration. ReadableStream, Server-Sent Events, and AI token streaming all run on Fluid Compute, which also provides full Node.js APIs and longer execution durations.

How do I configure a Vercel project with vercel.ts?

Install @vercel/config and export a typed VercelConfig from a vercel.ts file at the project root. It replaces vercel.json with TypeScript support, dynamic logic, and helpers for rewrites, redirects, headers, and cron schedules.

Does Vercel still offer Vercel Postgres and Vercel KV?

No, Vercel Postgres and Vercel KV are no longer offered. Vercel now provides databases and other services through integrations available in the Vercel Marketplace.

What is the default Node.js version and function timeout on Vercel?

Node.js 24 LTS is the current default runtime, and Node.js 18 is deprecated. The default function execution timeout is 300 seconds on all plans, up from the previous 60-90 second limits.

Can Vercel Functions handle WebSockets and large request bodies?

Yes, Vercel Functions support WebSockets using standard libraries like ws or Socket.IO on Fluid Compute. They also accept request bodies up to 100 MB and package sizes up to 5 GB.