Project Glasswing: The Patch Window Is Dead

Anthropic's Project Glasswing(opens in new tab) is the company's defensive AI security program for finding serious software bugs before attackers do. The first public update lands one punch you cannot fade: AI can now find vulnerabilities much faster than teams can verify and ship fixes. For small SaaS teams, the new bottleneck is response speed, not discovery.
TL;DR
Anthropic's Project Glasswing surfaced more than 10,000 high- or critical-severity vulnerabilities in roughly one month, with a 90.6% confirmed true-positive rate. Perplexity shipped Bumblebee on the same day to make supply-chain exposure visible on developer laptops. Together, the two releases signal that vulnerability discovery is becoming cheap while patching still costs people-hours. The practical move for small SaaS teams is not buying another scanner. It is tightening the patch loop already in place: one named dependency owner, one severity rule, one short incident log, and one read-only exposure check for developer machines.
Key takeaways:
- Anthropic reports more than 10,000 high- or critical-severity vulnerabilities discovered across partner systems in roughly one month.
- Of 1,752 severe findings independently assessed, 1,587 were confirmed valid — a 90.6% true-positive rate (Anthropic, 2026(opens in new tab)).
- The right reaction is not "buy another scanner." It is "tighten the patch loop your team already half-uses."
What Happened With Project Glasswing?
On May 22, 2026, Anthropic said roughly 50 partners used Claude Mythos Preview to find more than 10,000 severe vulnerabilities, while Anthropic itself scanned over 1,000 open-source projects (Anthropic, 2026(opens in new tab)). Discovery is getting cheap. Patching still takes people.
The hard numbers from the update:
- Mythos Preview estimated 6,202 high- or critical-severity vulnerabilities in open-source projects, out of 23,019 total findings.
- 1,587 of 1,752 assessed severe findings were valid true positives.
- The oss-sec mailing list independently confirmed Anthropic's coordinated disclosure dashboard listed 1,596 vulnerabilities across 281 open-source projects as of May 22, 2026 (oss-sec, 2026(opens in new tab)).
That last number is the one to internalize. A single defensive AI program disclosed nearly 1,600 real bugs across 281 projects in weeks. Some of those projects ship inside your dependency tree right now, whether you maintain them or not.
Why Does This Matter for Small SaaS Teams?
Project Glasswing matters because it turns vulnerability discovery into continuous review. Continuous review without a clear response loop creates a new problem: your patch backlog becomes part of your attack surface.
The Patch Queue Is the Bottleneck
Anthropic's update is not just a model story. It is an operations story. The company reports that a high- or critical-severity bug found by Mythos Preview takes about two weeks to patch on average, and that some maintainers asked Anthropic to slow disclosure because they needed more time to design fixes (Anthropic, 2026(opens in new tab)).
The lesson for founders is blunt. AI widens the gap between finding and fixing. If your team has no dependency owner, no patch calendar, and no rollback habit, another scanner only makes the queue louder. In practice, the advantage comes from shorter review loops and clearer severity rules.
Our take: The non-obvious risk is not that every indie SaaS will face Mythos-level attackers tomorrow. It is that agent-era tools normalize a new pace of disclosure. Customers, auditors, and platform partners will expect faster answers when a dependency issue lands. A founder who can say "we checked our fleet, reproduced exposure, patched, and verified the deploy" looks serious. A founder who says "we're investigating" for two weeks looks exposed. The difference is rarely the scanner. It is the workflow behind it.
| Old security habit | Agent-era security habit |
|---|---|
| Monthly dependency review | Weekly or event-triggered patch triage |
| Scanner output as evidence | Verified reproduction and patch notes |
| One owner by memory | Named owner per dependency surface |
| Trust the build pipeline | Check local developer machines too |
What Does This Mean for AI Builders?
For AI builders, the security boundary now includes coding agents, MCP configs, editor extensions, browser extensions, and local developer machines. That sounds broad. The fix starts with inventory, not fear.

Developer Machines Are Now Part of the Boundary
Perplexity's Bumblebee release shows the same shift from another angle. On May 22, 2026, Perplexity open-sourced Bumblebee, a read-only inventory collector for macOS and Linux developer endpoints, written in Go with zero non-stdlib dependencies and shipped under Apache 2.0 (Perplexity, 2026(opens in new tab); GitHub: perplexityai/bumblebee(opens in new tab)).
Bumblebee checks language package managers (npm, pnpm, Yarn, Bun, PyPI, Go modules, RubyGems, Composer), MCP configurations, VS Code-family editor extensions, and browser extensions. It does this by reading metadata such as lockfiles, manifests, and installed package metadata, while never executing install scripts or invoking package managers. That last design choice is the lesson, not the tool. Do not let the inspection tool run the risky path you are trying to inspect.
For small teams, that mental model matters more than the binary. Prove exposure without touching production data, without executing untrusted hooks, and without widening agent permissions during an incident. If you are wiring MCP servers into a coding workflow, read Dimantika's guide on MCP servers for vertical niches. The same plugin surface that creates useful automation creates new places for risky config to hide.
What Should Founders Do This Week?
This week, founders should build a patch response loop before buying another security product. The goal is not enterprise theater. The goal is a small workflow that still works when a bad package, extension, or MCP config becomes urgent.
- Today: List the places code can enter your product. Package managers, Docker images, browser extensions, editor extensions, MCP servers, CI actions, cloud functions. Even a rough list beats no list.
- This week: Assign one owner for dependency triage and one backup. If nobody owns it, nobody patches it.
- This week: Create one severity rule. Example: public exploit plus internet-exposed component means same-day review.
- This month: Add a read-only exposure check for developer machines and agent configs. Bumblebee is one option. A short internal script is another.
- This quarter: Keep a short incident log. Source, exposure, decision, patch, deploy, verification. Six columns is enough.
Do not overreact by banning every AI coding agent. That fails. Give agents narrower permissions, log tool calls where possible, and keep a human review step before dependency or infrastructure changes ship. We covered the permission scoping pattern in Build the Kill Switch Before Your AI Agent Ships.
From our build: Small teams usually discover their weakest security habit during a rushed deploy, not during a planning meeting. When we review AI-assisted build workflows at Dimantika, the fragile point is almost always ownership. One person knows why a package exists, another knows the CI secret, and nobody knows whether the local agent config changed last week. That is an operating observation, not an industry benchmark. Before adding more automation, write down who can approve updates, which systems need checks, and how you prove a fix actually shipped. We have shipped products where the patch loop was the calmest part of the launch. We have also shipped products where it was the loudest. The difference was never the toolchain. It was whether one person on the team genuinely owned dependencies as a surface, not just as a folder in the repo.
What Is the Bigger Picture?
Project Glasswing is part of a shift from AI as coding assistant to AI as continuous software reviewer. That is good news for teams that can absorb the findings. It is rough news for teams that already feel behind on Dependabot pings.
Anthropic also notes that models with similar cybersecurity skills will become more broadly available, and that current safeguards are not strong enough for general Mythos-class release (Anthropic, 2026(opens in new tab)). Founders should assume the capability curve keeps moving. The winning teams will not have the flashiest scanner. They will turn findings into shipped patches with less drama. The same operating discipline applies to any AI-assisted system — we wrote about why workflow design beats model choice in AI Agents in 2026: Start With Workflows First.
Our second take: The agent security stack will look less like one dashboard and more like a production workflow. Read-only exposure scans. Scoped agent permissions. Reproducible reports. Patch branches. Rollout checks. Customer-facing notes. That sounds dull. Good. Dull security routines beat heroic incident response, and they survive when the on-call engineer is on a flight.
FAQ
Is Project Glasswing available to normal startups?
No, not in the same form. Anthropic says Mythos-class models are not generally released yet because safeguards are not strong enough for public access (Anthropic, 2026(opens in new tab)). Generally available AI models and security tools can already help with code review, patch suggestions, and exposure checks. Start there.
Should founders use AI to scan their own code?
Yes, but start with low-risk workflows. Use AI to explain dependencies, inspect diffs, suggest tests, and draft patch plans. Do not let an agent run broad commands against production or rewrite security-sensitive code without human review. The point is faster triage, not blind autonomy.
What is the first agent security check to add?
Start with inventory. Which repositories, package managers, MCP configs, editor extensions, browser extensions, and CI actions can affect your product? Once you can see the surface, add read-only exposure checks and one severity rule. A scanner is only useful if someone knows what happens after it fires.
Does Bumblebee replace a vulnerability scanner?
No. Bumblebee answers "which developer machines in our org have this package installed right now" when an advisory drops. It is a read-only inventory tool for endpoints, not a code scanner (GitHub: perplexityai/bumblebee(opens in new tab)). Pair it with whatever dependency scanner you already use in CI.
Sources
Build something great with AI.
See what we're building
About the Author
Dimantika
Founder of Dimantika. Co-founded and exited a SaaS at $1.2M ARR. Now building AI tools for founders who want autonomous growth without blind trust in agents.
View all postsRelated posts
More articles you might like.

The 3 Moats That Survive Vibe-Coding
Anyone can vibe-code your app in an afternoon. Three moats still hold: distribution, network effects, and data partnerships. Here's which ones we're betting on.

AI SEO Agents Need Proof, Not More Posts
AI SEO is becoming an evidence operation, not a bulk publishing contest. Google says generative AI can help with research and structure, but scaled pages without added user value may violate its scaled content abuse policy (Google Search Central, 2025). The takeaway for founders is direct: feed your agent proof. That means Search Console patterns, real customer examples, source context, and a standing list of refresh tasks.

Google Remy Is the Agent Test for Founders
Google Remy shows personal AI agents are moving from chat to action. Here is what solo founders should audit before trusting one with real work.