Vercel Sandbox now supports drives in private beta. Drives are persistent, attachable storage with a lifecycle independent from any sandbox.
Create a drive once, then mount it at a configurable path when starting a sandbox. When the sandbox stops, the drive remains available to attach to a later sandbox.
Install the beta SDK (@vercel/sandbox@beta) or beta CLI (sandbox@beta), then create and mount a drive:
import{ Drive, Sandbox }from"@vercel/sandbox";
const drive =await Drive.getOrCreate({
name:"agent-workspace",
});
const sandbox =await Sandbox.create({
mounts:{
"/workspace":{
drive: drive.name,
mode:"read-write",
},
},
});
Sandbox Drives are useful for:
Keeping agent workspaces across disposable sandboxes
Retaining cloned repositories, dependencies, and build outputs
Managing data independently from the sandbox lifecycle
During the private beta, a drive can be mounted read-write by one sandbox at a time. Sandbox drives should not be used for production data while in private beta.
Sign up here to join the waitlist, and learn more in the docs.
The skills.sh API is now available. Authenticate with your project's Vercel OIDC token and start querying more than 600,000 skills from across the open-source ecosystem.
Search for skills, pull detailed info on any one, check its security audit, and more.
Vercel issues a short-lived token scoped to your team and project, rotated automatically, so there's no long-lived secret to leak or rotate. On each request, skills.sh verifies the token and applies a rate limit of 600 requests per minute per team and project.
fetch-skills.ts
import{ getVercelOidcToken }from'@vercel/oidc';
const token =awaitgetVercelOidcToken();
const res =awaitfetch('https://skills.sh/api/v1/skills?per_page=10',{
headers:{ Authorization:`Bearer ${token}`},
});
Fetch skills with your project's Vercel OIDC token
The proliferation of agentic workflows means developers now regularly grant AI tools direct access to their infrastructure, use services that act autonomously, and build on platforms that themselves use AI to operate. We’ve updated our Terms of Service and Marketplace terms to clarify shared responsibility when actions on your account may be taken by AI, whether Vercel's own or a third-party tool you've connected, as well as other important updates detailed below.
Vercel's platform increasingly includes AI-powered services, including v0, Vercel Agent, WAF natural language rules, and AI Gateway. These services may take actions on your behalf. We've introduced two new concepts to make the responsibilities around this explicit:
AI Functionality refers to Vercel services that are AI-powered, that help you build AI products (like AI SDK), or that connect to AI providers (like AI Gateway).
Third-Party Tools refers to any non-Vercel tool, script, service, or automation (AI-powered or not) that you grant access to your Vercel account. This includes CI/CD pipelines, third-party agents, and integration scripts.
The key responsibilities:
You control how AI Functionality behaves through your settings. Those settings define the scope of what AI Functionality can do on your behalf.
You are responsible for reviewing and authorizing the actions AI Functionality takes, and for evaluating its outputs against your own requirements.
If you grant a Third-Party Tool access to your Vercel account (e.g., giving it your API key), you are responsible for what it does, including any costs it incurs.
You are responsible for actions taken by AI Functionality or Third-Party Tools on your behalf.
We are updating our billing terms to reflect the expansion of our product surface area beyond subscription plans.
Fees are no longer exclusively tied to a subscription plan. Services like AI Gateway credits can be purchased and charged independently.
For non-subscription services, charges may occur at the time of purchase or top-up.
If your account shows unusually high or suspicious usage, Vercel may charge accrued fees ahead of your regular billing cycle. Learn more about Partial Invoices.
Enterprise customers who have verified ownership of an email domain can now claim email addresses on that domain that are associated with existing Vercel accounts. If your account email falls within a claimed domain, Vercel will notify you and you'll have the option to update your email address. If the account was used for work with that organization, it may instead be added to their Team. In either case, the Enterprise customer does not gain access to your account or your content without your consent.
You confirm you have the rights to provide any third-party credentials or API keys to Vercel (for example, through Vercel Connect or other integrations).
You confirm you are not subject to applicable OFAC sanctions.
The Marketplace terms now introduce the concept of Authorized Users, which includes Third-Party Tools. Actions taken by Authorized Users are bound to you as the customer, and you are responsible for reporting any unauthorized Authorized User activity.
We have updated the Data Privacy Framework section. Previously, unresolved EU/UK/Swiss privacy complaints were directed to data protection authorities. We've now designated VeraSafe as our private complaint handler. Complaints can be submitted directly to VeraSafe before escalation to a regulator.
Nemotron 3 Ultra is an open Mixture-of-Experts reasoning model built for orchestrating long-running agent workflows, with a 1M token context window. The model targets multi-turn agent workflows: planning, tool use, sub-agent delegation, and error recovery. Throughput reaches up to 350 tokens per second, with up to 30% lower cost on agentic tasks.
To use Nemotron 3 Ultra, set model to nvidia/nemotron-3-ultra-550b-a55b in the AI SDK.
import{ streamText }from'ai';
const result =streamText({
model:'nvidia/nemotron-3-ultra-550b-a55b',
prompt:'Plan and run a multi-step research task and synthesize a report.',
});
AI Gateway provides a unified API for calling models, tracking usage and cost, and configuring retries, failover, and performance optimizations for higher-than-provider uptime. It includes built-in custom reporting, Zero Data Retention support, dynamic provider sorting by latency and cost, and more. AI Gateway reflects provider pricing with no markup and does not charge a platform fee on inference, including on Bring Your Own Key (BYOK) requests.
Install the Shopify integration to automatically configure your Shopify credentials in Vercel. Create a free test store, build with v0 and deploy without leaving your workflow. When you're ready to launch, you can claim the store and take ownership of it.
vc i Shopify
Coming soon: Connect an existing Shopify store to Vercel.
Grok Imagine Video 1.5 from xAI is now available on AI Gateway. The model generates video from an input image with synchronized audio in a single pass.
This release improves audio quality, prompt following, and photorealism. Face accuracy and character consistency are stronger across longer sequences, with better lighting and physical realism in the output. Reference image support has been expanded to give more control over visual style and subject.
To use this model, set model to xai/grok-imagine-video-1.5-preview in the AI SDK. Chain an image model with Grok Imagine Video 1.5 to generate a still and animate it in one flow:
import{ generateImage, experimental_generateVideo as generateVideo }from'ai';
const{ images }=awaitgenerateImage({
model:'xai/grok-imagine-image',
prompt:'A white rabbit sprinting down a NYC sidewalk at midday.',
Monorepos that deploy many projects can now configure all of their project's Git settings more conveniently.
Previously, if you wanted to consistently configure each project's settings for commit status, repository_dispatch events, etc., you had to click through to every project's settings and consistently apply the same setting. Now, you can do it all in one place.