<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title>Open Source on Carles Abarca</title><link>https://carlesabarca.com/tags/open-source/</link><description>Recent content in Open Source on Carles Abarca</description><generator>Hugo -- gohugo.io</generator><language>en</language><copyright>© 2026 Carles Abarca</copyright><lastBuildDate>Fri, 03 Apr 2026 00:00:00 +0000</lastBuildDate><atom:link href="https://carlesabarca.com/tags/open-source/index.xml" rel="self" type="application/rss+xml"/><item><title>Your Code Is One Agent Session From Being Cloned — And There's Nothing You Can Do About It</title><link>https://carlesabarca.com/posts/claude-code-leak-no-more-moats/</link><pubDate>Fri, 03 Apr 2026 00:00:00 +0000</pubDate><guid>https://carlesabarca.com/posts/claude-code-leak-no-more-moats/</guid><description>The Claude Code leak proves that proprietary code is no longer a competitive barrier. If an agent can rewrite 512,000 lines in hours, what actually protects your business?</description><content:encoded>&lt;p&gt;On April 1, 2026 — and no, it wasn&amp;rsquo;t a joke — someone discovered that Claude Code&amp;rsquo;s npm package, Anthropic&amp;rsquo;s command-line tool, included a misconfigured &lt;code&gt;.map&lt;/code&gt; file. That file contained the complete source code: &lt;strong&gt;512,000 lines of TypeScript spread across 1,900 files&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;Within hours, the leaked repository had 25,000 stars on GitHub. Developers were tearing it apart piece by piece. But the truly unsettling part wasn&amp;rsquo;t the leak itself.&lt;/p&gt;
&lt;p&gt;It was what happened next.&lt;/p&gt;

&lt;h2 class="relative group"&gt;From TypeScript to Python in an afternoon
 &lt;div id="from-typescript-to-python-in-an-afternoon" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#from-typescript-to-python-in-an-afternoon" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h2&gt;
&lt;p&gt;A researcher at the University of Washington took the leaked code, fed it through OpenAI Codex, and within hours had a &lt;strong&gt;functional reimplementation in Python&lt;/strong&gt;. Not a copy — a complete rewrite in a different language. The resulting repository, claw-code, hit 44,500 stars. A Rust rewrite is already underway.&lt;/p&gt;
&lt;p&gt;And here&amp;rsquo;s the legal problem that should keep every CTO up at night: a reimplementation in another language, generated by an AI agent, is &lt;strong&gt;likely immune to a DMCA takedown&lt;/strong&gt;. It&amp;rsquo;s not a copy. It&amp;rsquo;s a derived work created by a machine. Current legal frameworks simply aren&amp;rsquo;t designed for this.&lt;/p&gt;
&lt;p&gt;Gergely Orosz, one of the most respected voices in software engineering, put it this way: we&amp;rsquo;re facing a new reality where &lt;strong&gt;any closed codebase is one agent session away from being functionally cloned&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;Read that again. Any codebase. One agent session. Cloned.&lt;/p&gt;

&lt;h2 class="relative group"&gt;What they found inside
 &lt;div id="what-they-found-inside" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#what-they-found-inside" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h2&gt;
&lt;p&gt;The findings were fascinating and, in some cases, hilarious. Wes Bos discovered 187 hardcoded verbs for the loading spinner (including &amp;ldquo;hullaballooing&amp;rdquo; and &amp;ldquo;razzmatazzing&amp;rdquo;). They found an internal analytics system that flags your prompt as negative every time you swear at the agent. And the random 4-character IDs are filtered to exclude 25 curse words.&lt;/p&gt;
&lt;p&gt;But beyond the anecdotes, the technical discoveries revealed the real architecture of one of the world&amp;rsquo;s most advanced coding agents:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;35 modules&lt;/strong&gt; with clearly separated responsibilities.&lt;/li&gt;
&lt;li&gt;A &lt;strong&gt;lightweight memory system&lt;/strong&gt; based on ~150-character pointers, not bulk storage.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;System prompts live on the client&lt;/strong&gt;, not the server.&lt;/li&gt;
&lt;li&gt;Code comments are written &lt;strong&gt;for LLMs to read&lt;/strong&gt;, not humans.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;That last point deserves a pause. Anthropic is no longer writing code for programmers to understand. They&amp;rsquo;re writing code for other AI models to understand. If that doesn&amp;rsquo;t tell you where the industry is heading, nothing will.&lt;/p&gt;

&lt;h2 class="relative group"&gt;The protective barrier that no longer exists
 &lt;div id="the-protective-barrier-that-no-longer-exists" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#the-protective-barrier-that-no-longer-exists" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h2&gt;
&lt;p&gt;For decades, proprietary code was one of the most reliable protective barriers in technology. Your competitor could copy your idea, your design, your go-to-market strategy — but replicating a million lines of optimized code took years and hundreds of engineers.&lt;/p&gt;
&lt;p&gt;That&amp;rsquo;s over.&lt;/p&gt;
&lt;p&gt;I&amp;rsquo;m not exaggerating. Think about what actually happened this week:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;A configuration error exposed complete source code.&lt;/li&gt;
&lt;li&gt;An AI agent rewrote it in another language in hours.&lt;/li&gt;
&lt;li&gt;The open source community improved and extended it in days.&lt;/li&gt;
&lt;li&gt;The result is legally difficult to challenge.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Each of these steps was unthinkable two years ago. Together, they represent a fundamental shift in what it means to &amp;ldquo;protect&amp;rdquo; your software intellectual property.&lt;/p&gt;
&lt;p&gt;And you don&amp;rsquo;t need a leak for this to happen. AI agents can already:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Infer architectures&lt;/strong&gt; from the observable behavior of an API.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Replicate functionality&lt;/strong&gt; from public documentation and examples.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Generate alternative implementations&lt;/strong&gt; that achieve the same results with different code.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Code was never really a barrier. It was the illusion of a barrier.&lt;/p&gt;

&lt;h2 class="relative group"&gt;The SaaSpocalypse connection
 &lt;div id="the-saaspocalypse-connection" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#the-saaspocalypse-connection" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h2&gt;
&lt;p&gt;If this story sounds familiar, it&amp;rsquo;s because we already saw act one. In February of this year, &lt;a href="../../posts/saaspocalypse/" &gt;I wrote about the SaaSpocalypse&lt;/a&gt;: $300 billion evaporated in 48 hours when the market understood that the business logic of a $200/user/month SaaS fits in a text file that an agent can read and execute.&lt;/p&gt;
&lt;p&gt;The Claude Code leak makes that thesis worse in a way that few have articulated yet.&lt;/p&gt;
&lt;p&gt;Think about it: every SaaS provider exposes documented public APIs. Endpoints, data schemas, workflows, business rules — all accessible to any agent that can read documentation. The Claude Code leak proved that an agent can take 512,000 lines of code and reimplement them in hours. Now combine that with the fact that &lt;strong&gt;most SaaS products expose their business logic through their own APIs&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;You don&amp;rsquo;t need to steal Salesforce&amp;rsquo;s source code. You just need an agent that reads their public documentation, observes endpoint behavior, and infers the underlying architecture. The API &lt;em&gt;is&lt;/em&gt; the blueprint.&lt;/p&gt;
&lt;p&gt;Satya Nadella said it in December 2024: &amp;ldquo;SaaS applications are CRUD databases with business logic on top. Agents will absorb that logic.&amp;rdquo; In February, the market understood this in the abstract. With Claude Code, we have concrete proof: the tools to absorb that logic already exist. And they work.&lt;/p&gt;
&lt;p&gt;The SaaSpocalypse wasn&amp;rsquo;t the ending. It was the trailer.&lt;/p&gt;

&lt;h2 class="relative group"&gt;So what actually protects your business?
 &lt;div id="so-what-actually-protects-your-business" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#so-what-actually-protects-your-business" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h2&gt;
&lt;p&gt;If code is no longer your competitive advantage — and public APIs reveal your business logic — what&amp;rsquo;s left? After 20 years in technology transformation, from banking in Spain to education in Mexico, I&amp;rsquo;ve seen this same question emerge every time a new technological wave destroys the previous barriers:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;1. Data, not code.&lt;/strong&gt; Your model trained on proprietary data, your curated datasets, your domain knowledge encoded in features that an agent can&amp;rsquo;t infer from the outside. A Claude Code clone can replicate the tool, but it can&amp;rsquo;t replicate the millions of conversations that trained Claude.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;2. Speed of execution.&lt;/strong&gt; If your competitor can clone your code in hours, the advantage lies in being the first to solve the next problem. Not in protecting the previous solution.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;3. Trust and brand.&lt;/strong&gt; In a world where anyone can replicate the technology, differentiation comes down to who trusts you. Anthropic&amp;rsquo;s customers aren&amp;rsquo;t going to migrate to claw-code to save on their subscription. They pay for support, for SLAs, for the guarantee that someone responds when something breaks.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;4. The ecosystem.&lt;/strong&gt; Integrations, partnerships, network effects. Slack didn&amp;rsquo;t win because its code was uncopyable. It won because everyone was already there.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;5. A culture of continuous innovation.&lt;/strong&gt; If you assume that everything you build today will be replicable tomorrow, your only sustainable advantage is the ability to build the next thing faster than anyone else.&lt;/p&gt;

&lt;h2 class="relative group"&gt;The implications for the enterprise
 &lt;div id="the-implications-for-the-enterprise" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#the-implications-for-the-enterprise" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h2&gt;
&lt;p&gt;For any technology leader reading this, the message is clear: &lt;strong&gt;review your intellectual property strategy today&lt;/strong&gt;. Not tomorrow. Today.&lt;/p&gt;
&lt;p&gt;Some questions that should be on the agenda for your next board meeting:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;How much of our competitive advantage depends on code that an agent could replicate?&lt;/li&gt;
&lt;li&gt;What does our own API documentation reveal about our business logic?&lt;/li&gt;
&lt;li&gt;Do we have proprietary data that is genuinely hard to reproduce?&lt;/li&gt;
&lt;li&gt;Does our security strategy account for the fact that a misconfigured &lt;code&gt;.map&lt;/code&gt; file can expose our entire codebase?&lt;/li&gt;
&lt;li&gt;Are we prepared for a world where DMCA doesn&amp;rsquo;t protect against AI-generated reimplementations?&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;And perhaps the most uncomfortable one of all: &lt;strong&gt;Are we still investing in building walls, when we should be investing in running faster?&lt;/strong&gt;&lt;/p&gt;

&lt;h2 class="relative group"&gt;The twist no one expected
 &lt;div id="the-twist-no-one-expected" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#the-twist-no-one-expected" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h2&gt;
&lt;p&gt;There&amp;rsquo;s a delicious irony in this whole story. Claude Code — Anthropic&amp;rsquo;s tool designed for AI to write code — was dismantled and rewritten by the AI of its direct competitor. OpenAI Codex cloned Anthropic&amp;rsquo;s flagship product in an afternoon.&lt;/p&gt;
&lt;p&gt;It&amp;rsquo;s as if Ford had invented the assembly line and Toyota had copied it the same day using Ford&amp;rsquo;s own robots.&lt;/p&gt;
&lt;p&gt;Welcome to the era where the tools you build to automate other people&amp;rsquo;s work can be used to automate &lt;em&gt;your own&lt;/em&gt; work. Where your code is not your protective barrier. Where your advantage is not what you already built, but what you&amp;rsquo;re going to build tomorrow.&lt;/p&gt;
&lt;p&gt;The Claude Code leak wasn&amp;rsquo;t a security incident.&lt;/p&gt;
&lt;p&gt;It was a warning.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;Carles Abarca is VP of Digital Transformation at Tecnológico de Monterrey and former CTO of Banco Sabadell. He writes about AI, digital transformation, and the future of software at &lt;a href="https://carlesabarca.com" target="_blank" rel="noreferrer"&gt;carlesabarca.com&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;</content:encoded><media:content xmlns:media="http://search.yahoo.com/mrss/" url="https://carlesabarca.com/posts/claude-code-leak-no-more-moats/featured.png"/></item><item><title>China's AI Pincer Move: Qwen 3.5 and CoPaw Are Not a Warning Shot — They're the Main Event</title><link>https://carlesabarca.com/posts/china-ai-qwen-copaw/</link><pubDate>Thu, 05 Mar 2026 00:00:00 +0000</pubDate><guid>https://carlesabarca.com/posts/china-ai-qwen-copaw/</guid><description>Qwen 3.5 beats GPT-5.2 on key benchmarks. CoPaw launches as a full open-source agent workstation. China is no longer catching up — they&amp;rsquo;re building a parallel AI ecosystem. And the West should be paying attention.</description><content:encoded>&lt;p&gt;There is a moment in every technology race when &amp;ldquo;catching up&amp;rdquo; becomes &amp;ldquo;setting the pace.&amp;rdquo; For China&amp;rsquo;s AI ecosystem, that moment is now.&lt;/p&gt;
&lt;p&gt;In the span of a few weeks, Alibaba has released two things that, taken separately, would each be significant. Taken together, they represent a strategic vision that should make every Western AI executive lose sleep.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Qwen 3.5&lt;/strong&gt;: a family of open-source models that beats GPT-5.2 on instruction following and leads the field on vision benchmarks. Apache 2.0 licensed. Free. Commercial use allowed.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;CoPaw&lt;/strong&gt;: an open-source personal AI agent workstation — think OpenClaw, but from Alibaba&amp;rsquo;s AgentScope team — with persistent memory, custom skills, multi-channel support, and browser automation.&lt;/p&gt;
&lt;p&gt;Models &lt;em&gt;and&lt;/em&gt; infrastructure. The brain &lt;em&gt;and&lt;/em&gt; the body.&lt;/p&gt;
&lt;p&gt;This is not a warning shot. This is a strategy.&lt;/p&gt;

&lt;h2 class="relative group"&gt;The Qwen 3.5 Story: Frontier AI Goes Free
 &lt;div id="the-qwen-35-story-frontier-ai-goes-free" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#the-qwen-35-story-frontier-ai-goes-free" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h2&gt;
&lt;p&gt;Let me give you the numbers first, because they tell a story.&lt;/p&gt;
&lt;p&gt;Qwen 3.5&amp;rsquo;s flagship model uses a Mixture of Experts (MoE) architecture with 397 billion total parameters but only 17 billion active at any given time. Read that again. You get frontier-class performance while only running the compute cost of a 17B model.&lt;/p&gt;
&lt;p&gt;The benchmarks are not &amp;ldquo;competitive.&amp;rdquo; They are leading:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;IFBench (instruction following): 76.5&lt;/strong&gt; — beating GPT-5.2&amp;rsquo;s 75.4&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;SWE-bench (coding): 76.4&lt;/strong&gt; — neck and neck with the best&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;MMMU (vision): 85.0&lt;/strong&gt; — outright leader&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;256K token context window&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;201 languages supported&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Thinking and non-thinking modes&lt;/strong&gt; — you choose the tradeoff between depth and speed&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The model family was released in three waves between February and March 2026: flagship, medium, and small. The small models — 0.8B to 9B parameters — are explicitly designed for on-device deployment. Your phone. Your laptop. Your edge server. No API call required.&lt;/p&gt;
&lt;p&gt;Let that sink in for a moment.&lt;/p&gt;
&lt;p&gt;A year ago, running anything close to frontier AI locally was a fantasy. Today, Alibaba is handing you models that compete with the best in the world, under the most permissive open-source license available, optimized to run on your hardware.&lt;/p&gt;
&lt;p&gt;The MoE architecture is the key unlock here. Traditional dense models force you to choose: either you run a massive model with massive compute, or you run a small model with limited capability. MoE breaks that tradeoff. Qwen 3.5 has the knowledge of a 397B model but the inference cost of a 17B one. It is, in practical terms, the democratization of frontier AI.&lt;/p&gt;
&lt;p&gt;And it is Apache 2.0. Not &amp;ldquo;open-ish.&amp;rdquo; Not &amp;ldquo;you can look but not touch.&amp;rdquo; Fully open. Fork it. Fine-tune it. Ship it in your product. Alibaba does not care. Or rather — they care very much, but their game is not licensing revenue.&lt;/p&gt;

&lt;h2 class="relative group"&gt;CoPaw: The Agent Layer China Was Missing
 &lt;div id="copaw-the-agent-layer-china-was-missing" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#copaw-the-agent-layer-china-was-missing" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h2&gt;
&lt;p&gt;Models without infrastructure are academic papers. Infrastructure without models is empty plumbing. The interesting move is doing both.&lt;/p&gt;
&lt;p&gt;CoPaw (copaw.bot) launched in March 2026 from Alibaba&amp;rsquo;s AgentScope team. If you are familiar with OpenClaw — and if you read my blog, you probably are — CoPaw is China&amp;rsquo;s answer to it. An open-source personal AI agent workstation that turns language models into persistent, capable digital workers.&lt;/p&gt;
&lt;p&gt;The feature list reads like someone studied every agent platform on the market and built a synthesis:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;ReMe&lt;/strong&gt;: persistent memory across sessions. Your agent remembers context, preferences, past interactions. Not a gimmick — this is what separates a chatbot from an actual assistant.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Custom skills&lt;/strong&gt;: build and import capabilities. Pull from clawhub.ai, skills.sh, or GitHub.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Multi-channel&lt;/strong&gt;: DingTalk, Feishu, iMessage, Discord, QQ. Your agent lives where you work.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Cron scheduling&lt;/strong&gt;: automated tasks on a schedule. Check my email every morning. Summarize my feeds at 6 PM. The basics, done right.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Browser automation&lt;/strong&gt;: your agent can navigate the web, fill forms, extract data. The hands to go with the brain.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;MCP Server integration&lt;/strong&gt;: the emerging standard for tool use. CoPaw speaks it natively.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Is it perfect? No. WhatsApp and Telegram support are missing — a significant gap for Western and Latin American users. Multi-agent orchestration is not there yet. OpenRouter integration is absent. These are real limitations.&lt;/p&gt;
&lt;p&gt;But here is what matters: CoPaw is not a prototype. It is a platform. And it is open-source, which means the community can fill those gaps faster than any corporate roadmap.&lt;/p&gt;
&lt;p&gt;I have been running OpenClaw as my personal agent infrastructure for months — it is literally what powers JarvisX, my AI assistant. So I understand this space intimately. CoPaw is not a clone. It is a parallel evolution, built from a different set of assumptions (Chinese messaging ecosystem, AgentScope framework, different privacy model) that arrives at remarkably similar conclusions about what an AI agent workstation needs to be.&lt;/p&gt;
&lt;p&gt;That convergence is the signal. When two teams on opposite sides of the world, working independently, build essentially the same thing — that is not coincidence. That is the shape of the future becoming obvious.&lt;/p&gt;

&lt;h2 class="relative group"&gt;The Earthquake Started in January 2025
 &lt;div id="the-earthquake-started-in-january-2025" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#the-earthquake-started-in-january-2025" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h2&gt;
&lt;p&gt;None of this is happening in a vacuum. Let me connect the dots.&lt;/p&gt;
&lt;p&gt;January 2025: DeepSeek releases R1, an open-source reasoning model that shocks the industry. Silicon Valley&amp;rsquo;s reaction ranges from dismissal to panic, settling on grudging respect. The &amp;ldquo;China can&amp;rsquo;t do AI&amp;rdquo; narrative dies overnight.&lt;/p&gt;
&lt;p&gt;Throughout 2025: Chinese labs iterate at a pace that makes Western release cycles look glacial. Qwen, DeepSeek, Yi, GLM — each generation closing the gap further. The MoE architecture becomes the standard approach, driven by the practical reality that Chinese labs face compute constraints from US export controls and have to be &lt;em&gt;more efficient&lt;/em&gt;, not less.&lt;/p&gt;
&lt;p&gt;Here is the irony that should keep policymakers awake: export controls designed to slow China&amp;rsquo;s AI development may have accelerated their innovation in efficiency. When you cannot buy the biggest GPUs, you learn to do more with less. And &amp;ldquo;more with less&amp;rdquo; turns out to be exactly what the market wants.&lt;/p&gt;
&lt;p&gt;February-March 2026: Qwen 3.5 arrives, not as a single model but as an ecosystem play. Flagship for the cloud, medium for the server room, small for the device. And simultaneously, CoPaw launches to provide the agent layer. Models plus infrastructure plus ecosystem.&lt;/p&gt;
&lt;p&gt;This is not &amp;ldquo;China catching up.&amp;rdquo; This is China executing a full-stack AI strategy while much of the West is still arguing about whether to charge $200/month or $2,000/month for API access.&lt;/p&gt;

&lt;h2 class="relative group"&gt;The Alibaba Strategy: OpenAI&amp;rsquo;s Vision, Open-Source&amp;rsquo;s Price
 &lt;div id="the-alibaba-strategy-openais-vision-open-sources-price" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#the-alibaba-strategy-openais-vision-open-sources-price" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h2&gt;
&lt;p&gt;Let me be explicit about what Alibaba is doing, because I think most Western observers are misreading it.&lt;/p&gt;
&lt;p&gt;OpenAI&amp;rsquo;s vision has always been: build the best models, then build the infrastructure to deploy them, then build the ecosystem of applications on top. Vertical integration. The &amp;ldquo;Apple of AI.&amp;rdquo;&lt;/p&gt;
&lt;p&gt;Alibaba&amp;rsquo;s vision is the same — except open-source.&lt;/p&gt;
&lt;p&gt;Best models? Qwen 3.5 is demonstrably frontier-competitive. Infrastructure? CoPaw provides the agent layer. AgentScope provides the framework. Ecosystem? Apache 2.0 means anyone can build on it.&lt;/p&gt;
&lt;p&gt;The difference is the business model. OpenAI charges for access. Alibaba gives away the technology and monetizes the cloud (Alibaba Cloud), the commerce (Alibaba platforms), and the enterprise services built on top. The AI itself is the loss leader. Or rather, it is the moat around everything else.&lt;/p&gt;
&lt;p&gt;This is not charity. It is strategy. And it is devastatingly effective.&lt;/p&gt;
&lt;p&gt;If you are an enterprise CTO today — and I have been one, at Banco Sabadell, so I know the calculus — the question on your desk is uncomfortable: Why am I paying for proprietary AI models when open-source alternatives match or beat them on benchmarks?&lt;/p&gt;
&lt;p&gt;The answers used to be: reliability, support, safety, compliance. Those are real. But they are eroding fast. Qwen 3.5 is not some garage project. It is backed by one of the largest technology companies on Earth. It has enterprise-grade documentation. It runs in production at Alibaba scale.&lt;/p&gt;
&lt;p&gt;The moat is getting shallow.&lt;/p&gt;

&lt;h2 class="relative group"&gt;What This Means for the West
 &lt;div id="what-this-means-for-the-west" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#what-this-means-for-the-west" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h2&gt;
&lt;p&gt;I am not writing this as a China cheerleader or a Western doomer. I am writing it as someone who has spent 20+ years in enterprise technology and is currently leading digital transformation at one of Latin America&amp;rsquo;s largest universities.&lt;/p&gt;
&lt;p&gt;Here is what I think this means:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;For AI companies (OpenAI, Anthropic, Google):&lt;/strong&gt; The &amp;ldquo;best model&amp;rdquo; advantage is now measured in months, not years. If Qwen 3.5 can match GPT-5.2 today, Qwen 4 will likely match whatever comes next. The sustainable advantage must come from ecosystem, trust, and integration — not model quality alone. The race to the bottom on model pricing accelerates.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;For enterprises:&lt;/strong&gt; Your AI strategy cannot depend on a single provider. The multi-model, multi-provider approach is no longer a nice-to-have — it is risk management. And if you are not evaluating open-source models for your use cases, you are leaving money and optionality on the table.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;For the open-source movement:&lt;/strong&gt; This is your moment. China&amp;rsquo;s largest tech companies are pouring billions into open-source AI, not because they are altruistic, but because it serves their strategic interests. The result is the same: the commons gets richer. Western open-source advocates should take notes on how to align corporate strategy with community benefit.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;For developers:&lt;/strong&gt; Learn to run local models. Understand MoE architectures. Get comfortable with agent frameworks — both OpenClaw and CoPaw. The developers who thrive in 2027 will be the ones who can deploy and orchestrate AI agents across multiple models and platforms, not the ones locked into a single API.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;For policymakers:&lt;/strong&gt; The export control strategy needs a fundamental rethink. Restricting compute has not prevented frontier AI development in China — it has redirected it toward efficiency innovations that may ultimately be more valuable than brute-force scaling. The horse has left the barn, and the barn is on fire.&lt;/p&gt;

&lt;h2 class="relative group"&gt;The Democratization Paradox
 &lt;div id="the-democratization-paradox" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#the-democratization-paradox" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h2&gt;
&lt;p&gt;Here is the question that keeps me up at night: if frontier AI is free and open, what is the moat?&lt;/p&gt;
&lt;p&gt;Not for Alibaba — their moat is their ecosystem. Not for OpenAI — their moat is their brand and enterprise relationships. I mean for &lt;em&gt;everyone else&lt;/em&gt;. For the thousands of SaaS companies, AI startups, and technology consultancies that have built their value proposition around access to AI capabilities.&lt;/p&gt;
&lt;p&gt;When Qwen 3.5 is free, when CoPaw is free, when the entire stack from model to agent to deployment is open-source and commercially licensable — what exactly are you selling?&lt;/p&gt;
&lt;p&gt;The answer, I think, is the same answer it has always been in technology: domain expertise, integration quality, trust, and speed of execution. The tools become commoditized. The craft does not.&lt;/p&gt;
&lt;p&gt;But that is a much harder business than &amp;ldquo;we have access to AI and you don&amp;rsquo;t.&amp;rdquo; And it will cause a shakeout that makes the SaaSpocalypse look like a rehearsal.&lt;/p&gt;

&lt;h2 class="relative group"&gt;What I Am Doing About It
 &lt;div id="what-i-am-doing-about-it" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#what-i-am-doing-about-it" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h2&gt;
&lt;p&gt;I never write about things I am not willing to act on. So here is what this means for my work:&lt;/p&gt;
&lt;p&gt;At Tec de Monterrey, we are actively evaluating open-source models for educational applications where data sovereignty matters — and with a Latin American university serving students across multiple countries, it matters a lot. Qwen 3.5&amp;rsquo;s multilingual support (201 languages, with strong Spanish coverage) makes it a serious candidate.&lt;/p&gt;
&lt;p&gt;Personally, I run my AI agent infrastructure on OpenClaw. CoPaw&amp;rsquo;s release is not a threat to that — it is validation. The agent workstation pattern is the right abstraction. And competition drives improvement. I fully expect OpenClaw and CoPaw to cross-pollinate features, especially given that CoPaw can already import skills from clawhub.ai.&lt;/p&gt;
&lt;p&gt;The future I see is heterogeneous. Not &amp;ldquo;Western AI vs. Chinese AI&amp;rdquo; but a global ecosystem where the best models and tools win regardless of origin. Where an enterprise in Mexico City runs Qwen for some tasks, Claude for others, and Gemini for a third — all orchestrated by agent infrastructure that does not care about the nationality of the model.&lt;/p&gt;
&lt;p&gt;That is not a geopolitical statement. It is an engineering reality.&lt;/p&gt;

&lt;h2 class="relative group"&gt;The Bottom Line
 &lt;div id="the-bottom-line" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#the-bottom-line" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h2&gt;
&lt;p&gt;Alibaba has executed a textbook pincer move: world-class models on one side, agent infrastructure on the other. Qwen 3.5 gives you the brain. CoPaw gives you the body. Both are free. Both are open. Both are production-ready.&lt;/p&gt;
&lt;p&gt;The West still leads in many dimensions — safety research, alignment, enterprise trust, regulatory frameworks. Those matter. But the raw capability gap? It is closing so fast that by the time you finish reading this article, it may have closed a little more.&lt;/p&gt;
&lt;p&gt;If you are a technology leader and you are not paying attention to what is coming out of China, you are not paying attention.&lt;/p&gt;
&lt;p&gt;And in this industry, not paying attention is how you become the next $300 billion cautionary tale.&lt;/p&gt;</content:encoded><media:content xmlns:media="http://search.yahoo.com/mrss/" url="https://carlesabarca.com/posts/china-ai-qwen-copaw/featured.png"/></item></channel></rss>