<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Toni Ilić</title>
    <description>The latest articles on DEV Community by Toni Ilić (@toni_ili_0579f3f1916d17b).</description>
    <link>https://dev.to/toni_ili_0579f3f1916d17b</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1498881%2F91a8b88c-2258-46a3-86cd-460966b36c6c.png</url>
      <title>DEV Community: Toni Ilić</title>
      <link>https://dev.to/toni_ili_0579f3f1916d17b</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/toni_ili_0579f3f1916d17b"/>
    <language>en</language>
    <item>
      <title>I replaced Claude Cowork with DeepSeek + OpenClaw - and it mostly works</title>
      <dc:creator>Toni Ilić</dc:creator>
      <pubDate>Tue, 04 Aug 2026 15:08:47 +0000</pubDate>
      <link>https://dev.to/toni_ili_0579f3f1916d17b/i-replaced-claude-cowork-with-deepseek-openclaw-and-it-mostly-works-15j6</link>
      <guid>https://dev.to/toni_ili_0579f3f1916d17b/i-replaced-claude-cowork-with-deepseek-openclaw-and-it-mostly-works-15j6</guid>
      <description>&lt;p&gt;I said out loud to myself, "Claude Cowork is great, but I'm paying for it." Then I killed it. Well, not killed — I replaced it with DeepSeek running through OpenClaw, and it turned out to be one of the more sensible cost decisions I've made this year.&lt;/p&gt;

&lt;p&gt;Here's the honest version: it's a little less smart than Opus 5. Not far behind — but on the gnarly edge cases, I notice it. The trade is worth it. This is the story of that trade, tested on real tasks, not a benchmark.&lt;/p&gt;

&lt;h2&gt;
  
  
  The setup
&lt;/h2&gt;

&lt;p&gt;I was running Claude Cowork as my main agent alongside a bunch of other coding agents. It was good — Opus 5 is genuinely impressive. But it has a cost that adds up when you run it every day, across multiple projects, and especially when you parallelize.&lt;/p&gt;

&lt;p&gt;I switched the agent layer to &lt;strong&gt;OpenClaw&lt;/strong&gt; with &lt;strong&gt;DeepSeek v4 flash&lt;/strong&gt; as the model. The key move: &lt;strong&gt;opencode go&lt;/strong&gt; serves DeepSeek v4 flash free up to a point — which covers most of my day-to-day agent work. When I need a guaranteed paid path, DeepSeek via OpenRouter is cheap anyway (about $0.14 in / $0.28 out per 1M tokens).&lt;/p&gt;

&lt;p&gt;So the stack is: OpenClaw as the agent harness, DeepSeek v4 flash as the brain, opencode go as the free model lane.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I tested it on
&lt;/h2&gt;

&lt;p&gt;I didn't just run hello-world prompts. I ran a week of real work through it. Four tasks that actually exercise an agent:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Chrome connection / browser automation.&lt;/strong&gt; This was the one I was most worried about. Agents that can drive a browser can break a lot of things if they're sloppy. I had it connect to a live Chrome instance and work through real pages — login flows, form filling, screenshots, verifying rendered output. It handled it. Not flawless, but it reasoned through the steps and corrected itself.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;A Laravel web app (cijenehr, with LearnCoachAssist in the mix).&lt;/strong&gt; Full-stack work: Blade templates, scraping adapters, deploys, fighting framework gotchas. DeepSeek is solid at Laravel — it knows the framework well enough to be productive, and it caught real bugs (including some genuinely cursed Blade comment issues).&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;A scripted media pipeline (agicad).&lt;/strong&gt; Automated short-form video generation publishing to Instagram, YouTube, and Facebook on a cron. Debugging a pipeline that "just stopped posting" — turned out the script library was dry, not a code bug. It reasoned to the right diagnosis instead of rewriting code it didn't need to.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;A multi-agent server setup.&lt;/strong&gt; Coordinating OpenClaw + a Python agent (Hermes) on a remote server, migrating models, fixing auth failures, wiring fallbacks. This is where the "a bit less smart" showed up — multi-step infrastructure reasoning is exactly the kind of edge case where a stronger model pulls ahead. But it got there, and the cost difference was enormous.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Where it's weaker
&lt;/h2&gt;

&lt;p&gt;Let me be straight, because this is the part that matters.&lt;/p&gt;

&lt;p&gt;DeepSeek v4 flash is not Opus 5. On straightforward, well-scoped tasks — writing code, fixing bugs, browser work — it's maybe 90-95% as good. The gap shows on:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Long, multi-step infrastructure reasoning where you have to hold a lot of state in your head&lt;/li&gt;
&lt;li&gt;Tasteful judgment calls on ambiguous architecture decisions&lt;/li&gt;
&lt;li&gt;The last 5% of edge-case handling that a top-tier model just instinctually nails&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;But here's the thing: for most real work, "90% as good at 0% of the cost" is a trade I'll take every single time. And when I absolutely need the sharper model, I can reach for it — I just don't need to keep it running for everything.&lt;/p&gt;

&lt;h2&gt;
  
  
  The cost breakdown
&lt;/h2&gt;

&lt;p&gt;Let me be concrete about why this matters:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;opencode go&lt;/strong&gt; — DeepSeek v4 flash free up to a threshold. This covers the bulk of my daily agent work.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;cline pass&lt;/strong&gt; — a solid flat $5/month plan if you want a predictable subscription instead of worrying about free-tier limits.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;DeepSeek via OpenRouter&lt;/strong&gt; — ~$0.14 in / $0.28 out per 1M tokens as the paid floor.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Compare that to a premium subscription running every day. The savings are basically the entire point. I'm running multiple agents in parallel — that's where the cost compounds, and where going cheap pays off the most.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try it
&lt;/h2&gt;

&lt;p&gt;If you're running Claude Cowork or another premium agent and thinking "this is great but it's costing me," switching to DeepSeek + OpenClaw is a low-risk experiment. You keep the same agent workflow, you just swap the brain for something cheaper.&lt;/p&gt;

&lt;p&gt;Getting started with opencode go is free — you can try it before spending anything:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://opencode.ai/go?ref=9EPHHPPKZD" rel="noopener noreferrer"&gt;opencode go →&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If you go through that link, I get a small referral credit — it helps me keep writing these posts. No pressure, and honestly the free tier is enough to decide if it works for you.&lt;/p&gt;

&lt;p&gt;It's a bit less smart than Opus 5. It's not far behind. And it works. That's a trade I'm happy to make.&lt;/p&gt;

</description>
      <category>deepseek</category>
      <category>productivity</category>
      <category>ai</category>
    </item>
  </channel>
</rss>
