AI Excellence Newsletter
The Vercel hack is a third-party AI warning.
AI is a multiplier now. That is true for writing, research, design, operations, and especially software development. It is also true for risk.
Overview
The more useful these tools become, the more permissions we give them. We connect them to Google Workspace. We let them read docs, inspect repos, run code, install packages, and act on our behalf—most of the time that feels like progress. But every bright new workflow creates a new shadow. This week, that shadow was Context.ai and Vercel.
What Happened
Vercel confirmed a security incident on April 19, 2026 involving unauthorized access to certain internal systems. The short version: the attacker appears to have entered through Context.ai, a third-party AI tool whose deprecated AI Office Suite had already suffered a March incident.
At least one Vercel employee had connected Context.ai to their Vercel Google Workspace account with broad permissions. Once an OAuth token was compromised, the attacker could use a legitimate access path into the employee’s workspace and then into some Vercel environments.
OAuth tokens are credentials. They may not look like passwords, but attackers can use them like keys.
The Cynical Read
Vercel says the breach was limited: only a subset of customers had non-sensitive environment variables exposed, and sensitive env vars, Next.js, Turbopack, and Vercel-published npm packages were not compromised.
Maybe that is exactly right. But every first breach statement says “limited” until deeper review proves otherwise. The useful takeaway is not comfort. It is that Vercel confirmed unauthorized access, and that alone is enough to rotate, review, and tighten controls.
This matters because Vercel sits in the deployment path for a huge number of applications. Even “non-sensitive” environment variables can reveal service names, internal URLs, API configuration, and architecture clues that help an attacker stage the next step.
Not Just Context.ai
Context.ai is the example this week. It will not be the last one.
The larger pattern is that AI tools are becoming integration hubs. They connect to email, docs, calendars, GitHub, Slack, Jira, Notion, terminals, package managers, cloud accounts, and local files. The better they get, the more they ask to touch.
We have already seen the same shape of problem in the agent skills ecosystem. I did not find evidence that Anthropic’s official Skills Directory itself was breached, but Anthropic’s own docs warn that skills can include or install third-party packages, and that the main risks include prompt injection and data exfiltration.
Researchers have also documented malicious skill campaigns in OpenClaw’s ClawHub ecosystem, where useful-looking crypto, productivity, browser automation, and coding tools pushed users toward attacker-controlled code. AI tools do not need to be evil to be risky. They only need to be useful enough that we give them access.
What We Do
For any Vercel projects we own, we should review account and project activity logs. Rotate environment variables that were not marked sensitive, especially API keys, tokens, database credentials, signing keys, and webhook secrets. Move secrets into sensitive environment variables going forward. For Google Workspace, we should review third-party OAuth grants.
More broadly, we should audit the AI tools connected to our work accounts. The key questions are simple:
- What can it read, write, or run?
- What OAuth scopes does it request?
- Who maintains it, and how would we revoke access?
- Can we test it in a sandbox before using it for real work?
For our own workflow, this is exactly why the AI Excellence Playbook exists. We see a potentially useful tool, assess what it touches, verify how it is installed and maintained, discuss the risks and benefits, then decide how to use it safely.
The Vercel incident is the clearest reminder so far that AI adoption is not just a productivity decision. It is an access-control decision.
Sources → Vercel bulletin · Context.ai update · Claude Skills guidance · Koi Security · Tom's Hardware