Anthropic Open-Sources Claude Cowork Plugins, Here's What Builders Get
Anthropic open-sources Claude Cowork plugins, DeepSeek ships cache-optimized coding agents, and new research shows LLM agents silently break code constraints.
Good morning! Welcome to Builder's Briefing for May twenty-fifth, twenty twenty-six. I'm Alex, joined as always by Sam, and today we've got a packed show — Anthropic open-sourcing their Cowork plugin architecture, a really important paper on how AI agents silently break your code over time, and a bunch of new dev tools worth knowing about.
Yeah, there's a clear theme today — the AI toolchain is splintering into all these specialized composable pieces, and honestly it's exciting if you're a builder. Let's get into it.
So the big story — Anthropic just dropped an open-source repo called knowledge-work-plugins. It's the plugin architecture for Claude Cowork, their collaborative AI workspace. This isn't a new model, it's an infrastructure play. They're giving developers an extensibility surface to build custom plugins that wire Claude into your team's specific knowledge stack.
Right, and what's wild is this feels like Anthropic's answer to the ChatGPT plugin store, except they're going straight for enterprise knowledge work instead of consumer novelty. Think Confluence connectors, internal wiki search, CRM summarizers — the boring but incredibly valuable stuff.
Exactly. And the signal here is clear — Anthropic is betting the moat isn't just model quality, it's workflow integration. If you're building AI-powered productivity tools or internal copilots, you want to study this plugin spec now.
Early movers are going to have a real distribution advantage when Cowork scales across enterprise customers. If you've been building internal tools on top of Claude, this is the moment to clone that repo and start prototyping. Link in the briefing.
Alright, moving to AI and models — two stories I want to hit. First, DeepSeek shipped Reasonix, a coding agent that leans hard on caching to keep inference costs down. If you're running agentic coding loops and just burning through tokens, this one's worth benchmarking.
That's interesting because the cost problem with agentic coding is real. You run these multi-step loops and the token bill just explodes. A cache-first approach for repetitive codegen tasks could genuinely cut your costs significantly.
The other must-read is a new arXiv paper on something they're calling constraint decay. Researchers found that LLM agents progressively violate constraints during multi-step backend code generation — they start strong, then drift. The longer the task, the more they break things silently.
Oh, this one hit home for me. If you're shipping agent-generated backend code to production — and a lot of teams are now — this is a concrete argument for adding constraint-checking middleware after every generation step. Don't just trust the final output.
And one more quick one — Epoch AI's data shows memory now accounts for nearly two-thirds of AI chip component costs. Not compute — memory. So if you're making infrastructure decisions, memory-efficient architectures like quantization and KV-cache optimization give you way more bang for your buck than chasing raw FLOPS.
That's a real mindset shift. Everyone's been obsessed with compute, but the bottleneck has quietly moved.
Okay, dev tools — there's a couple of gems here. Earendil Pi is an open-source full-stack AI agent toolkit that bundles a CLI, web UI, Slack bot, and vLLM pod management into one package. If you're currently stitching together three or four different tools for your AI dev workflow, this might consolidate all of that.
The vLLM pod management piece is what caught my eye. If you're self-hosting inference, managing those pods is a pain, and having that baked into the same toolkit as your coding agent CLI is genuinely useful.
Also worth a look — CCX, a unified API proxy that lets you route requests across Claude, Codex, and Gemini through a single layer. Super handy for multi-model fallback chains or A/B testing providers without touching your app code.
See, this is exactly the composability theme we're talking about. You architect for plug-and-play model switching, and tools like CCX make that practical instead of theoretical.
Quick infrastructure note — AMD Xilinx is removing Linux support from Vivado's free tier. If you're prototyping on FPGAs with a Linux workflow, you'll need to pay up or find alternatives. Classic pattern: free tiers get squeezed once the platform has lock-in.
Ugh, yeah. And there's also a really candid retrospective floating around — someone who spent four years at AWS writing about internal culture and open-source dynamics. If you're evaluating AWS partnerships or building on their services, the internal incentive structures they describe are worth understanding for your platform risk.
On the security front — quick but important. An internal Microsoft account is being exploited to send spam at scale, and it's bypassing typical email filters because the sender domain is trusted.
So if you're relying on sender reputation for your email security, this is your reminder to go check your inbound filtering rules. Even Microsoft's own domains can get compromised.
A few quick hits to close out the news. Green card seekers now must leave the U.S. to apply — that story hit almost eight hundred points on Hacker News and has major implications for tech hiring and workforce planning.
Yeah, that one's going to ripple through every company with H-1B employees. Also loved the story about someone spending fifty hours drawing a single line graph — obsessive data visualization craft at its finest.
And Microsoft open-sourced the earliest known DOS source code — pre-one-point-oh. Fun for retrocomputing nerds, practically irrelevant for shipping products, but a nice reminder that even proprietary giants eventually open-source their legacy.
So the big takeaway today — the AI toolchain is fragmenting into specialized, composable pieces. Anthropic's plugins, Earendil's toolkit, CCX's proxy, DeepSeek's cache-first agent. Stop picking one monolithic provider and start architecting for plug-and-play switching.
And if you're shipping agent-generated code — please read that constraint decay paper. The models will not maintain invariants on their own over multi-step tasks. Add automated constraint validation after every generation step. That's not optional anymore.
That's your Builder's Briefing for May twenty-fifth. All the links are in the show notes. This week's going to be interesting as the ecosystem around these composable AI tools starts to take shape.
Build modular, validate aggressively, and we'll catch you next time. Have a great one!
Anthropic Open-Sources Claude Cowork Plugins — Here's What Builders Get
Anthropic just dropped `knowledge-work-plugins`, an open-source repo of plugins designed for Claude Cowork — their collaborative AI workspace product. This isn't a model release; it's an infrastructure play. The repo gives knowledge workers (and the developers building for them) a plugin architecture they can extend, fork, and embed into their own workflows. If you've been building internal tools on top of Claude, this is the first official extensibility surface Anthropic has shipped as open source.
What you can do right now: clone the repo, study the plugin interfaces, and start building custom plugins that wire Claude Cowork into your team's specific knowledge stack — think Confluence connectors, internal wiki search, CRM summarizers, or domain-specific research tools. The plugin architecture signals that Anthropic wants an ecosystem play similar to what ChatGPT attempted with its plugin store, but aimed squarely at enterprise knowledge work rather than consumer novelty.
What this signals for the next 6 months: Anthropic is betting that the moat isn't just model quality — it's workflow integration. If you're building AI-powered productivity tools or internal copilots, pay close attention to how this plugin spec evolves. It's likely a preview of a broader marketplace or integration layer. Builders who get plugins into this ecosystem early will have distribution advantage when Cowork scales across enterprise customers.
DeepSeek Reasonix: A Native Coding Agent Optimized for High Cache Hits and Low Cost
DeepSeek shipped Reasonix, a coding agent that leans hard on caching to keep inference costs down. If you're running agentic coding loops and burning through tokens, this is worth benchmarking against your current setup — the cost savings on repetitive codegen tasks could be significant.
Paper: "Constraint Decay" Shows LLM Agents Silently Break Backend Code Over Time
New arXiv paper documents how LLM agents progressively violate constraints during multi-step backend code generation — they start strong then drift. If you're shipping agent-generated backend code to production, this is a concrete argument for adding constraint-checking middleware rather than trusting the agent's final output.
Memory Now Accounts for Nearly Two-Thirds of AI Chip Component Costs
Epoch AI's data shows memory is eating the AI hardware budget — not compute. If you're making inference infrastructure decisions, this means memory-efficient architectures (quantization, KV-cache optimization, offloading) deliver outsized cost savings compared to chasing raw FLOPS.
'AI Washing' Is Now a Recognized Problem — Firms Scrambling to Rebrand as AI
The Guardian documents the growing trend of companies slapping 'AI' on everything for valuation bumps. For actual builders: differentiate by showing your architecture, not your buzzwords. Investors and customers are getting wise to the gap between AI branding and AI substance.
Earendil Pi: Full-Stack AI Agent Toolkit with CLI, Web UI, Slack Bot, and vLLM Pods
This open-source toolkit bundles a coding agent CLI, unified LLM API, TUI/web UI components, and Slack integration into one package. If you're stitching together multiple tools for your AI dev workflow, Pi might replace 3-4 of them — especially the vLLM pod management for self-hosted inference.
CCX: A Unified API Proxy for Claude, Codex, and Gemini
CCX lets you route requests across Claude, Codex, and Gemini through a single proxy layer. Useful if you're building multi-model fallback chains or want to A/B test providers without changing your app code.
ClickHouse Open-Sources Silk: A Cooperative Fiber Scheduler
ClickHouse released Silk, a cooperative fiber scheduler for building high-concurrency systems. If you're writing performance-critical services and tired of fighting async runtimes, this is worth evaluating — it comes from a team that actually runs it at scale.
SingleFile: Save Complete Web Pages as Single HTML Files
Trending again on GitHub — this web extension captures full-fidelity snapshots of web pages into single HTML files. Builders working on RAG pipelines or web scraping: this is a clean way to archive source pages for your training data or reference corpus.
Vivado 2026.1 Drops Linux Support for Free Tier — FPGA Devs Take Note
AMD/Xilinx is removing Linux support from Vivado's free tier. If you're prototyping on FPGAs with a Linux workflow, you'll need to either pay up or find alternatives. This is a pattern: free tiers get squeezed once the platform has lock-in.
"Four Years at AWS and Out" — An Insider Retrospective
A candid post-mortem on working inside AWS for four years, with insights on internal culture and open-source dynamics. Worth reading if you're evaluating AWS partnerships or considering building on top of their services — the internal incentive structures matter for your platform risk.
Scammers Exploiting Internal Microsoft Account to Send Spam at Scale
An internal Microsoft account is being abused to send spam that bypasses typical email filters. If you're relying on sender reputation for email security, this is a reminder that even "trusted" sender domains can be compromised. Check your inbound filtering rules.
Frigate: Open-Source NVR with Realtime Local Object Detection for IP Cameras
Frigate is trending hard on GitHub — it runs local object detection on IP camera feeds without cloud dependencies. If you're building smart home, security, or on-prem vision products, this is a proven foundation for real-time inference on edge hardware.
Bambu vs. Open Source: AGPL Showdown Could Reshape 3D Printing
A developer's AGPL-licensed challenge to Bambu Lab's proprietary firmware is escalating via DMCA on GitHub. If you're shipping hardware with open-source firmware dependencies, this is a case study in license compliance risk you should be tracking.
Microsoft Open-Sources the Earliest Known DOS Source Code
Historical but notable: Microsoft released pre-1.0 DOS source code. Fun for retrocomputing enthusiasts; practically irrelevant for shipping products, but a good reminder that even proprietary giants eventually open-source their legacy.
The big pattern today: the AI toolchain is fragmenting into specialized, composable pieces — Anthropic's Cowork plugins, Earendil's all-in-one agent toolkit, CCX's multi-model proxy, DeepSeek's cache-first coding agent. If you're building AI-powered products, stop picking one monolithic provider and start architecting for plug-and-play model/tool switching. The constraint decay paper is your other must-read: if you're shipping agent-generated code, add automated constraint validation after every generation step — the models will not maintain invariants on their own over multi-step tasks.