一条命令,你的AI编程助手突然就懂了10多年积累的React和Next.js最佳实践。
在近日的ShipNYC大会后,Vercel CEO Guillermo Rauch接受TechCrunch专访并宣布推出Vercel Skills——一个面向AI编码助手的技能包管理器。Rauch认为2025年是AI原型开发年,2026年的重点转向生产环境落地,而Skills就是让AI从"会写代码"进化到"写对生产级代码"的关键基础设施。
为什么AI Agent需要"包管理器"?
这个类比很精准:npm(Node Package Manager)之于JavaScript生态,就像Skills之于AI Agent生态。
在npm出现之前,JavaScript开发者要手动下载库文件、复制粘贴到项目里、管理版本依赖、处理冲突——效率极低。npm让一行npm install解决所有问题:自动下载、管理依赖、版本控制、按需加载。JavaScript生态的繁荣,npm功不可没。
AI Agent现在面临同样的问题。通用大模型(Claude、GPT、Gemini)确实"什么都懂一点",但在具体框架、具体库、具体最佳实践上,它们的知识经常过时、不准确或者不够深入。你让通用模型写一个Next.js 15的App Router代码,它可能还在用Pages Router的老写法;你让它配置最新的Tailwind CSS v4,它可能给出v3的配置。
Skills解决的就是这个问题。它是一个技能包的分发和管理系统:框架作者、库维护者、公司团队可以把自己的最佳实践、代码规范、API用法、常见陷阱打包成一个"Skill",发布到Skills仓库。开发者一条命令就能把这个Skill注入到自己的AI编程助手里——AI立刻就"学会"了这个框架的最新用法。
Vercel官方推出的第一个Skill就是10多年React和Next.js知识的打包。这意味着即使你用的是基础版Claude或者GPT,安装这个Skill后,它写Next.js代码的水平就像一个有10年经验的Vercel工程师。
Agent生态从"全能"到"专业"
Skills的推出代表了AI Agent发展的一个重要方向:从追求"一个模型什么都会",转向"通用模型+专业技能包"的模块化架构。
过去一年AI编程工具的思路是"用更大更强的模型解决所有问题"——模型越大、训练数据越多、上下文窗口越长,写代码就越好。但这个思路有边际效应递减的问题:模型每增大一倍,编码能力可能只提升5%,但成本增加好几倍。而且再大的模型也不可能及时掌握所有框架的最新版本——Next.js 15上个月刚更新的功能,模型训练数据里没有。
技能包的思路完全不同。模型是通用推理引擎,Skill是专业知识插件。就像你不会要求一个人类工程师记住所有框架的所有API——他知道怎么查文档、怎么找最佳实践。Skills就是给AI一个"查文档"和"加载最佳实践"的标准化机制。
"2025年我们问'哪个模型写代码最好';2026年我们问'哪个模型装了最多最好的Skills'。这是范式转换。"—— Vercel CEO Guillermo Rauch
这和MCP(Model Context Protocol)的方向一脉相承。MCP解决的是AI连接外部工具和数据源的问题,Skills解决的是AI加载专业知识和最佳实践的问题。两者结合起来,AI Agent就有了"手"(MCP工具)和"脑"(Skills知识),可以真正在专业领域胜任工作。
对开发者和团队来说,Skills的价值很直接:第一,可以把团队内部的编码规范、架构约定、私有库用法打包成私有Skill,让新加入的AI工具立刻符合团队标准;第二,框架作者可以官方维护Skill,确保AI生成的代码永远符合最新最佳实践;第三,开发者可以按需加载Skill,不需要为了写个简单脚本就调用最强的模型。
当然,Skills才刚刚发布,生态还需要时间建设。但方向是清晰的:AI Agent的竞争,正在从模型能力的单一维度,转向模型+工具+技能+数据的多维生态竞争。npm用了几年时间彻底改变了JavaScript开发,Skills会不会用同样的方式改变AI编程?我们拭目以待。
明天见。
One command, and your AI coding assistant suddenly understands over a decade of accumulated React and Next.js best practices.
After the recent ShipNYC conference, Vercel CEO Guillermo Rauch sat down with TechCrunch and announced Vercel Skills — a skill package manager for AI coding assistants. Rauch argues that 2025 was the year of AI prototyping, and 2026's focus shifts to production deployment. Skills is the key infrastructure that moves AI from "writing code" to "writing correct production-grade code."
Why Do AI Agents Need a "Package Manager"?
The analogy is precise: npm (Node Package Manager) is to the JavaScript ecosystem what Skills is to the AI Agent ecosystem.
Before npm, JavaScript developers had to manually download library files, copy-paste them into projects, manage version dependencies, and handle conflicts — extremely inefficient. npm made a single line of npm install solve everything: auto-download, dependency management, version control, on-demand loading. npm deserves massive credit for JavaScript ecosystem prosperity.
AI Agents face the same problem now. General-purpose LLMs (Claude, GPT, Gemini) indeed "know a little about everything," but when it comes to specific frameworks, libraries, and best practices, their knowledge is often outdated, inaccurate, or insufficiently deep. Ask a general model to write Next.js 15 App Router code, and it might still use the old Pages Router approach; ask it to configure the latest Tailwind CSS v4, and it might give you v3 configuration.
Skills solves exactly this. It's a skill pack distribution and management system: framework authors, library maintainers, and company teams can package their best practices, coding standards, API usage patterns, and common pitfalls into a "Skill" and publish it to the Skills repository. With one command, developers can inject that Skill into their AI coding assistant — and the AI instantly "learns" the latest usage patterns for that framework.
The first Skill Vercel officially ships packages over a decade of React and Next.js knowledge. That means even if you're using base Claude or GPT, installing this Skill makes its Next.js code output comparable to a Vercel engineer with 10 years of experience.
Agent Ecosystem: From "Omniscient" to "Specialized"
The launch of Skills represents an important direction in AI Agent development: shifting from "one model that does everything" to a modular architecture of "general model + specialized skill packs."
Over the past year, AI coding tools have followed the philosophy of "solve everything with a bigger, stronger model" — larger models, more training data, longer context windows mean better code. But this approach hits diminishing returns: doubling model size might improve coding ability by 5% while multiplying costs several times over. And no model, no matter how large, can keep up with every framework's latest version in real time — a feature that shipped in Next.js 15 last month won't be in the model's training data.
Skill packs take a fundamentally different approach. The model is a general reasoning engine; the Skill is a specialized knowledge plugin. Just like you wouldn't expect a human engineer to memorize every API of every framework — they know how to check docs and find best practices. Skills gives AI a standardized mechanism for "checking docs" and "loading best practices."
"In 2025 we asked 'which model writes the best code'; in 2026 we ask 'which model has the most and best Skills installed.' That's a paradigm shift."— Vercel CEO Guillermo Rauch
This aligns with the direction of MCP (Model Context Protocol). MCP solves how AI connects to external tools and data sources; Skills solves how AI loads specialized knowledge and best practices. Together, AI Agents have "hands" (MCP tools) and "brains" (Skills knowledge), enabling them to be truly competent in specialized domains.
For developers and teams, the value of Skills is direct: first, teams can package internal coding standards, architectural conventions, and private library usage into private Skills, so newly onboarded AI tools immediately conform to team standards; second, framework authors can officially maintain Skills, ensuring AI-generated code always follows latest best practices; third, developers can load Skills on demand without calling the strongest model just to write a simple script.
Of course, Skills just launched and the ecosystem needs time to grow. But the direction is clear: AI Agent competition is shifting from the single dimension of model capability to multi-dimensional ecosystem competition across models + tools + skills + data. npm took a few years to completely transform JavaScript development. Will Skills change AI coding the same way? Watch this space.
See you tomorrow.
2025年我们问'哪个模型写代码最好';2026年我们问'哪个模型装了最多最好的Skills'。这是范式转换。
—— Vercel CEO Guillermo Rauch
In 2025 we asked 'which model writes the best code'; in 2026 we ask 'which model has the most and best Skills installed.' That's a paradigm shift.
— Vercel CEO Guillermo Rauch
Vercel Skills · AI Agent · 技能包管理器 · AI编程 · npm · Agent工具链 · MCP · Guillermo Rauch · 模块化AI
Vercel Skills · AI Agent · skill package manager · AI coding · npm · Agent toolchain · MCP · Guillermo Rauch · modular AI