Vercel Labs' Skills: The Agent Skill Store That Could Reshape AI Workflows

GitHub May 2026
⭐ 16940📈 +16940
来源:GitHub归档:May 2026
Vercel Labs has open-sourced Skills, a modular agent skill library that runs with a single `npx skills` command. The project aims to standardize how AI agents discover, execute, and compose tasks, but its deep ties to Vercel's infrastructure raise questions about portability.
当前正文默认显示英文版,可按需生成当前语言全文。

Vercel Labs, the experimental arm of the cloud platform company, dropped a new open-source project called Skills that is already generating significant buzz — amassing over 16,900 GitHub stars in its first day. The tool, invoked via `npx skills`, is essentially a standardized, composable skill library for AI agents. Instead of each agent framework reinventing the wheel for tasks like web scraping, API calling, file manipulation, or data transformation, Skills provides a registry of pre-built, modular actions that agents can discover and chain together. The core innovation is in the skill definition format: each skill is a self-contained package with a manifest, input/output schema, and execution logic, making it possible for different agent frameworks — from AutoGPT to LangChain to custom implementations — to consume them uniformly. Vercel Labs positions this as the missing 'app store' for agent capabilities, lowering the barrier for developers to build sophisticated multi-step workflows without writing boilerplate. However, the project's reliance on Vercel's Edge Functions and serverless runtime for optimal performance means that while the code is open-source, the best experience is tied to Vercel's platform. This creates a classic open-core tension: broad adoption versus platform lock-in. The significance of Skills extends beyond just another tool — it represents a bet that the future of AI agents will be defined by standardized, interoperable skill ecosystems, much like how npm standardized JavaScript packages. If successful, Skills could become the de facto registry for agent behaviors, but if Vercel overplays the platform dependency, it may fragment the ecosystem instead of unifying it.

Technical Deep Dive

At its core, Vercel Labs' Skills is a registry and runtime for composable agent actions. The architecture is deceptively simple but packs several layers of engineering sophistication.

Skill Definition Format:
Each skill is a directory containing a `skill.json` manifest and an implementation file (typically a TypeScript function). The manifest declares:
- `name`: unique identifier
- `description`: natural language description for agent discovery
- `input`: JSON Schema defining expected parameters
- `output`: JSON Schema for the return value
- `dependencies`: other skills or npm packages required
- `runtime`: target environment (Node.js, Edge, Python via WASM)

This schema-driven approach means any agent framework can parse the manifest and decide whether a skill fits the current task. The agent doesn't need to understand the skill's internal logic — it only needs to match the input/output contract.

Execution Model:
Skills are executed as serverless functions on Vercel's Edge Network by default. When an agent calls `npx skills run <skill-name> --params '{}'`, the CLI resolves the skill from the registry, bundles it with its dependencies, and deploys it to a V8 isolate on the edge. The latency for cold starts is typically under 50ms due to Vercel's lightweight isolation. For hot executions, it's sub-10ms. The skill can also be run locally via `npx skills dev`, which uses a local Node.js process, but this lacks the distributed caching and concurrency benefits.

Composability via Pipelines:
Skills supports a pipeline syntax where the output of one skill feeds into the input of another. For example:
```bash
npx skills run "scrape-webpage" --url "https://example.com" | \
npx skills run "extract-structured-data" --schema "product" | \
npx skills run "write-to-database" --connection "postgres://..."
```
Under the hood, the CLI creates a DAG (Directed Acyclic Graph) of skill executions, parallelizing independent branches. The pipeline state is passed as a shared JSON blob, enabling complex multi-step workflows without a central orchestrator.

Registry and Discovery:
The default registry is hosted at `registry.skills.vercel.app`, but the CLI supports custom registries via the `--registry` flag. Skills are versioned using semver, and the registry supports search by keyword, category, and popularity. The open-source community can publish skills by submitting a PR to the `vercel-labs/skills` GitHub repo, which after review, gets added to the official registry. The review process includes automated security scanning (dependency audit, static analysis for malicious patterns) and a manual check for documentation quality.

Benchmark Performance:

| Metric | Skills (Edge) | Custom Node.js Function | AWS Lambda (Node 18) |
|---|---|---|---|
| Cold Start (p50) | 42ms | 180ms | 320ms |
| Cold Start (p99) | 95ms | 450ms | 780ms |
| Hot Execution (p50) | 3ms | 2ms | 4ms |
| Max Concurrent Skills | 1000 (per project) | Limited by server | 1000 (per account) |
| Cost per 1M invocations | $0.25 | Variable | $0.20 |

Data Takeaway: Skills on Vercel Edge offers dramatically lower cold start latencies compared to traditional serverless options, making it suitable for real-time agent interactions. However, the cost is slightly higher than AWS Lambda, and the concurrency limit is per-project rather than per-account, which could be a bottleneck for large-scale deployments.

Open-Source Repo:
The GitHub repository `vercel-labs/skills` (16,940+ stars) contains the CLI source, skill templates, and the registry client library. The core is written in TypeScript and uses `@vercel/functions` for edge deployment. The repo also includes a `skills.json` schema validator and a test harness for local skill development. The community has already contributed 47 skills in the first 24 hours, including integrations with Stripe, Slack, and Notion.

Takeaway: The technical foundation is solid — schema-driven, composable, and fast. The real test will be whether the registry can maintain quality as it scales, and whether the edge-only execution model limits adoption for teams that need on-premise or air-gapped deployments.

Key Players & Case Studies

Vercel Labs is the primary driver, but the ecosystem involves several key players and competing solutions.

Vercel Labs: Led by Guillermo Rauch (CEO of Vercel) and a small internal team, Vercel Labs has a track record of experimental projects that sometimes graduate to core products (e.g., `next-on-pages`, `turbopack`). Skills is their most ambitious AI-native project yet. The strategic play is clear: by becoming the registry for agent skills, Vercel positions itself as the infrastructure layer for the agent economy, much like npm did for JavaScript.

Competing Solutions:

| Product | Approach | Registry Model | Runtime | GitHub Stars | Key Limitation |
|---|---|---|---|---|---|
| Vercel Skills | Schema-defined, composable skills | Centralized (Vercel-hosted) | Vercel Edge | 16,940+ | Platform lock-in |
| LangChain Tools | Python-based tool wrappers | Decentralized (import from pip) | Local/Any | 95,000+ | No standardized manifest format |
| AutoGPT Plugins | Plugin-based skills | Decentralized (GitHub repos) | Local | 170,000+ | Fragmented, no versioning |
| OpenAI GPT Actions | OpenAPI-based actions | OpenAI's store | OpenAI servers | N/A | Only works with GPTs |
| CrewAI Tools | Python-based, role-oriented | Decentralized | Local/Any | 25,000+ | Steep learning curve |

Data Takeaway: Vercel Skills has the most polished developer experience (one command to run) and the fastest execution, but it's the most platform-dependent. LangChain's tools have broader runtime support but lack a unified registry. The market is still in the 'format war' phase, similar to early containerization.

Case Study: Early Adopter — Replit Agent
Replit, the browser-based IDE, integrated Skills into its AI agent that helps users build apps. Instead of hardcoding actions like 'create file', 'run command', 'install package', the Replit agent now queries the Skills registry for the appropriate skill. This reduced the agent's codebase by 40% and improved task success rate from 72% to 89% in internal tests, according to Replit's engineering blog. The trade-off: the agent now requires an internet connection to the registry, which breaks offline development scenarios.

Case Study: Enterprise Skeptic — Datadog
Datadog's AI ops team evaluated Skills for automating incident response workflows. They found the edge execution model unsuitable because their compliance requirements mandate that all automation runs within their VPC. They forked the repo and built a private registry, but lost the composability benefits because their custom skills couldn't leverage the public ecosystem. This highlights the central tension: the value of Skills is proportional to the size of the registry, but enterprises need isolation.

Takeaway: Vercel Labs needs to solve the private registry problem — either by offering a self-hosted version of the registry (with sync capabilities) or by partnering with cloud providers to offer Skills on AWS, GCP, and Azure. Without this, Skills will remain a tool for startups and hobbyists, not enterprises.

Industry Impact & Market Dynamics

The launch of Skills comes at a critical inflection point for the AI agent ecosystem. The market for agent infrastructure is projected to grow from $2.1 billion in 2024 to $28.5 billion by 2028 (CAGR 68%), according to industry estimates. The key battleground is not the models themselves — they are increasingly commoditized — but the tools that orchestrate them.

Market Positioning:

| Company | Product | Focus | Target Users | Funding Raised |
|---|---|---|---|---|
| Vercel | Skills | Agent skill registry | Web developers | $350M (total) |
| LangChain | LangChain Hub | Prompt/tool sharing | ML engineers | $35M |
| OpenAI | GPT Store | Action plugins | ChatGPT users | $13B+ |
| Anthropic | Tool Use API | Function calling | API developers | $7.6B |
| Hugging Face | Agents Course | Education | Open-source community | $235M |

Data Takeaway: Vercel is the only player with a developer-first, CLI-driven approach that targets the web development community — a massive addressable market of 20+ million developers. However, OpenAI and Anthropic have the advantage of owning the model layer, making their tool integrations seamless.

Second-Order Effects:
1. Standardization Pressure: If Skills gains critical mass, it could force other agent frameworks to adopt its manifest format, similar to how OpenAPI became the standard for REST APIs. This would be a win for the ecosystem but a loss for Vercel's differentiation.
2. Platform Lock-in Debate: Vercel's history with Next.js shows they are willing to open-source the core while keeping the best experience proprietary. Skills follows this pattern — the CLI and registry are open-source, but the edge runtime is Vercel-only. Expect community forks that replace the runtime with Docker or Kubernetes.
3. Security Concerns: A centralized skill registry is a juicy target for supply chain attacks. If a malicious skill gets published, it could compromise every agent that uses it. Vercel's automated scanning is a start, but the community will demand reproducible builds and signed packages.

Takeaway: Skills has the potential to become the npm of agent skills, but only if Vercel navigates the open-core tension carefully. The next 6 months will be decisive: if they release a self-hosted registry option and support multiple runtimes, they win. If they double down on Vercel-only features, they risk fragmentation.

Risks, Limitations & Open Questions

1. Platform Dependency: The most obvious risk. Skills is optimized for Vercel's Edge Network, and while it works locally, the performance and reliability advantages vanish. Developers who deploy on AWS, GCP, or on-premise will get a subpar experience, discouraging adoption.

2. Registry Centralization: A single point of failure. If the registry goes down, all agents relying on Skills break. Vercel has good uptime, but the internet has seen centralized registries become attack vectors (e.g., npm's 2018 outage, PyPI's malware incidents).

3. Versioning and Compatibility: As the registry grows, skill authors may update their skills in breaking ways. The semver system helps, but agents that auto-update skills could break workflows. There's no built-in rollback mechanism beyond pinning versions.

4. Ethical Concerns: Skills could be used for malicious purposes — scraping without permission, automating spam, or bypassing rate limits. Vercel's review process is a gate, but determined actors can host their own registries. The question is whether Vercel will enforce usage policies on the official registry.

5. Economic Model: Who pays for the edge executions? Currently, Vercel absorbs the cost as a loss leader, but as adoption scales, they will need a pricing model. If they charge per skill invocation, it could stifle experimentation. If they bundle it with Vercel Pro ($20/month), it's affordable but locks users in.

Open Question: Will the community embrace Skills or fragment into competing registries? The answer depends on whether Vercel can build enough trust and utility to make the official registry the default choice.

AINews Verdict & Predictions

Verdict: Vercel Labs' Skills is a well-executed, timely project that addresses a real pain point — the lack of standardized, composable agent skills. The developer experience is excellent, and the performance on Vercel Edge is best-in-class. However, the platform dependency is a significant strategic risk that could limit its adoption to the Vercel ecosystem.

Predictions:

1. Within 12 months, at least three competing registries will emerge — one from LangChain (backed by their existing tool ecosystem), one from Hugging Face (leveraging their model hub), and one from an enterprise-focused vendor like Databricks. The format war will intensify.

2. Vercel will open-source the edge runtime within 6 months to counter the platform lock-in criticism. They will release a `skills-runtime` package that can be deployed on any Node.js server, but the distributed caching and concurrency features will remain Vercel-only.

3. The first major security incident will occur within 3 months — a malicious skill that exfiltrates environment variables or API keys. This will trigger a community-wide discussion about skill signing and reproducible builds, leading to a `skills-security` working group.

4. Skills will be acquired or integrated into a larger platform within 18 months. The most likely acquirer is GitHub (Microsoft), which would integrate Skills into Copilot and Actions, or Datadog, which would use it for agent-based monitoring.

5. The `npx skills` command will become a standard part of the AI developer toolkit, alongside `npx create-next-app` and `npx tsx`. Even if Skills as a product doesn't dominate, the concept of a one-command agent skill runner will be copied by every major framework.

What to Watch: The next release of Skills will include support for Python skills (via WASM) and a self-hosted registry option. If those ship within 60 days, Vercel has a real shot at winning. If they delay, the window closes.

更多来自 GitHub

OpenPilot获大众MQB平台“救生索”:J533线束项目深度解析hardybm/comma-j533-harness代码库代表了一项聚焦于社区的、旨在解决特定硬件兼容性问题的努力:将comma.ai的openpilot系统连接到基于大众MQB平台打造的车辆上。MQB平台广泛应用于高尔夫、帕萨特和途观等车超越模仿:开源强化学习如何解锁PM01人形机器人开源机器人社区迎来新焦点:'Beyond Minic'仓库(chasefirefly03/enginai_pm01_beyondminic)将宇树科技的强化学习框架Unitree RL Lab移植至众擎PM01人形机器人。该项目直击一个显著Pear Desktop:悄然引爆GitHub的开源音乐播放器扩展,一夜狂揽3.2万星Pear Desktop是托管在GitHub上pear-devs组织下的一个开源项目,近期经历爆发式增长,星标数达到31,949颗,日增+323。该项目自我定位为音乐播放器的扩展——一个插件框架,通过高级歌词显示、音频效果和UI主题等功能增查看来源专题页GitHub 已收录 2880 篇文章

时间归档

May 20263028 篇已发布文章

延伸阅读

Hivemind:将智能体轨迹转化为可复用技能,AI 开发的新范式Activeloop 推出的 Hivemind 为智能体 AI 带来颠覆性思路:不再依赖微调或 RAG,而是捕捉智能体的决策轨迹,并将其作为可组合的技能模块重复使用。这有望解决智能体行为迁移难题,但早期成熟度与生态采纳仍是关键挑战。ctx: The 100K-Node LLM Knowledge Graph Reshaping AI Agent ExecutionA new GitHub repository, ctx, has surfaced with a staggering 102,696-node LLM knowledge graph, 91,432 skills, and 10,787Vercel 吞并 Dev Playwright:这次迁移对开发者工具链意味着什么热门开发者工具 'dev-playwright' 正式从 elsigh 仓库迁移至 Vercel Labs 的 dev3000。这不仅是仓库改名,更标志着项目轨迹的重大转折——获得官方 Vercel 支持的同时,原仓库被归档。AINews ZeroLang:Vercel Labs 推出的“智能体优先”语言,或改写AI开发规则Vercel Labs 正式发布 ZeroLang——一款专为 AI 智能体打造的全新编程语言。它将函数调用、工具使用与上下文管理内建为语言原生特性,而非库层面的抽象,旨在降低构建自主多智能体系统的门槛,重新定义人类与 AI 在复杂任务上的

常见问题

GitHub 热点“Vercel Labs' Skills: The Agent Skill Store That Could Reshape AI Workflows”主要讲了什么?

Vercel Labs, the experimental arm of the cloud platform company, dropped a new open-source project called Skills that is already generating significant buzz — amassing over 16,900…

这个 GitHub 项目在“vercel labs skills vs langchain tools comparison”上为什么会引发关注?

At its core, Vercel Labs' Skills is a registry and runtime for composable agent actions. The architecture is deceptively simple but packs several layers of engineering sophistication. Skill Definition Format: Each skill…

从“how to create custom skill for npx skills”看,这个 GitHub 项目的热度表现如何?

当前相关 GitHub 项目总星标约为 16940,近一日增长约为 16940,这说明它在开源社区具有较强讨论度和扩散能力。