knowledge-update

Corrects outdated LLM knowledge about Vercel platform features and products.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? LLMs often carry outdated training data about the Vercel platform, leading to wrong recommendations such as defaulting to 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 guidance reflects the current platform. ## Core Features & Use Cases - Knowledge Corrections: Overrides stale assumptions about Edge Functions, Fluid Compute, streaming/SSE on Node.js, ISR framework support, Node.js 24 default, 300s timeouts, and Active CPU pricing. - New Product Awareness: Introduces recent offerings including Vercel AI Gateway, Vercel Queues, Vercel Sandbox, Rolling Releases, Sign in with Vercel, Vercel Agent, BotID, and the eve agent framework. - Configuration Guidance: Promotes vercel.ts with @vercel/config as the replacement for vercel.json, including typed rewrites, redirects, headers, and crons. - Use Case: When a developer 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 to configure a Vercel deployment or explain a Vercel feature, and the corrected platform knowledge is applied 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. Fluid Compute is recommended over Edge Functions, which have compatibility issues and no price or region advantage.

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

Install @vercel/config and export a typed VercelConfig from a vercel.ts file, which replaces vercel.json. It supports TypeScript, dynamic logic, environment variables, 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 the Vercel Marketplace integrations instead.

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.

What is the default Node.js version and 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, with Active CPU pricing based on CPU time, memory, and invocations.