← All guides

Can Qwen 3.8 Replace Claude for Coding? The Honest Verdict

Qwen3.8-27B is good enough that cancelling a Claude subscription is now a real question instead of a joke. Here is where it holds up, where it breaks, and what the split actually looks like.

You pay $20 or $100 a month for Claude and you want to know if an open-weight model on your own hardware lets you stop. That is the actual question, and the answer is not yes or no. It is a split. Qwen3.8-27B takes over most of your volume, and Claude keeps the hard 20 percent.

The video below is the uncut run, no edits over the failures. This post is the verdict and the buying decision.

Can Qwen 3.8 Replace Claude for Coding? Full Uncut Build

What you are actually comparing

First, get the model right. The Qwen 3.8 release covers two different models, and only one of them runs on your desk.

RepoSizeRuns locally?
Qwen/Qwen3.8-27B27B dense, vision-languageYes. This is the one.
Qwen/Qwen3.8-27B-FP8Same model, FP8 weightsYes, on 48GB+
Qwen/Qwen3.8-2.4T-A95B2.4T total, 95B active MoENo. Datacenter only.

The rest of this page is about the 27B. Confirmed specs from the model card: Apache 2.0, 64 layers of hybrid Gated DeltaNet plus gated attention, 262,144 native context extensible toward 1M with YaRN, thinking mode on by default with reasoning_effort levels. Weights landed on Hugging Face on August 14, 2026.

Claude’s side of the ledger, from claude.com/pricing: Pro is $20/month, Max starts at $100/month for 5x Pro usage, and every plan carries a 200K context window. Note that number. The open-weight model has more native context on paper than the subscription you are comparing it to.

Where Qwen 3.8 holds up

Bounded, well-specified edits. Rename across a package, add a route, write the test, convert a script from one library to another, fix a stack trace you can paste. This is the bulk of most working days and Qwen3.8-27B does it without drama.

Debugging with a reproducible failure. The most useful independent data point so far is a wall-clock writeup from OVERBRING Labs on two RTX 5060 Ti 16GB cards. The model found a bug’s root cause across three codebases in about 3.85 minutes, finished the whole task in roughly 10 minutes of wall clock, and fixed two related problems it noticed on the way. That is not a demo. That is a normal Tuesday.

Reading a lot of code at once. 262K native context means you can put a whole service in the window instead of feeding it files one at a time. Claude Pro gives you 200K.

Vendor benchmarks say software engineering. Qwen reports SWE-bench Pro at 61.7, LiveCodeBench v6 at 90.3, and Terminal-Bench 2.1 at 73.0, up from 63.4 on the previous generation. Those numbers are vendor-reported and every one of them came from Qwen’s own launch material. Treat them as direction, not proof. The verdict here rests on the wall-clock run above and my own session in the video, not the leaderboard.

Where it breaks

Ambiguous work. “This feels slow, make it better.” “Design the schema for this feature.” Qwen3.8 will do something confident and wrong. Claude asks the clarifying question. That gap is not closing this generation.

Long autonomous loops. Tool-call reliability is the failure mode, not raw code quality. Twenty steps in, it repeats a call, drops a file path, or convinces itself an edit landed that did not. You supervise it. You do not hand it a ticket and walk away.

Speed. The same OVERBRING run measured 31.1 tok/s mean on UD-Q4_K_XL, 25.3 on Q6_K, 26.6 on NVFP4, on two 16GB cards. That is fine for supervised work. On a thin fanless laptop it is not: a 27B at Q4 on a base MacBook Air is memory-bandwidth-starved and drops into single-digit tokens per second, which is technically running and practically unusable for agent loops. Size the machine before you judge the model.

Context that costs memory. 262K native does not mean 262K on your machine. The KV cache at long context eats VRAM the weights already claimed. See context window traps for local agents before you set a big number and wonder why it swaps.

The hardware line

This is where the decision gets made. Real file sizes from the Unsloth GGUF repo:

QuantFile sizeRealistic machine
IQ4_XS14.3 GB24GB card, lots of context headroom
Q4_K_M16.5 GB24GB card. The default pick.
Q5_K_M19.8 GB24GB card, short context only
Q6_K22 GB32GB+
Q8_029 GB48GB unified memory
BF1654.7 GB64GB+

Weights are not the whole bill. Add the KV cache, the vision encoder, and your OS. A 16.5 GB file on a 24GB card leaves you roughly 5-6 GB for context, which is a working agent session, not a 262K one.

So the honest tiers are: 24GB is the entry point at Q4, 32GB is comfortable, and 48GB+ is where you stop thinking about it. Below 16GB, run a smaller model instead of a bad quant of this one. See best local LLMs for 32GB RAM for that tier.

🎮 THE TWO MACHINES THAT ACTUALLY RUN THIS

A used 24 GB card is the cheapest honest entry at Q4_K_M. A 48 GB+ Mac runs Q8_0 with real context and no fan noise.

The math nobody does honestly

Claude Pro is $240 a year. A used 24GB card is a few hundred dollars once, plus electricity. On paper local wins inside a year.

The paper is wrong in one direction and right in the other. It is wrong because your time has a price, and a supervised local agent costs you attention that Claude does not. It is right because the card does not only run Qwen. It runs the next model too, and the one after that, at no extra cost. The subscription buys one month of one vendor’s decisions.

The real reason to run local is not the $20. It is that your code never leaves the machine, your throughput has no weekly ceiling, and nobody deprecates your model on you. If your problem is specifically the weekly ceiling, read how Claude Code limits actually work first. Some of that burn is fixable for free and does not need new hardware.

The verdict: the 80/20 split

I do not run one model. Nobody who does this seriously runs one model.

Local Qwen3.8-27B gets: boilerplate, refactors, test writing, log and stack-trace analysis, first-pass code review, doc generation, anything on a private codebase, anything you would run in a loop over many files. Call it 80 percent of the volume.

Claude gets: architecture decisions, gnarly multi-system debugging, anything where being confidently wrong is expensive, and the sessions where you need a second opinion rather than an executor. That is 20 percent of the volume and most of the value.

The practical move is to keep Pro at $20, not Max at $100. You are not cancelling Claude. You are demoting it from workhorse to specialist, and the bill drops accordingly.

If you must have a single answer: on a 24GB card or better, yes, Qwen3.8-27B can carry your daily coding. It cannot carry your hardest day.

Setting it up

Qwen3.8-27B is a drop-in for any OpenAI-compatible agent, which means Qwen Code, OpenClaw, or any client you can point at a local base URL. Claude Code is the exception: it speaks the Anthropic API format, so it needs a translating proxy rather than a plain base-URL swap. Two things break for almost everyone: the default context length is far below what agents assume, so raise it on both the serve side and the client; and the agent may say “OpenAI” while running fully local, because it uses the OpenAI SDK format and not OpenAI. Full walkthrough in best local models for OpenClaw.

If you are still choosing a model rather than a workflow, Qwen3.8-27B vs Muse Glimmer 30B covers the other Apache 2.0 release aimed at the same card.

What I could not verify

Every benchmark number Qwen published is vendor-reported and had no independent reproduction as of August 19, 2026. The tok/s figures are one person’s hardware, not a spec. Your quant, your context setting, and your codebase move all of it.

I set up local coding agents that hold up on real work instead of demos. Book a call at cloudyeti.io/meet.

Need OpenClaw fixed live?

Remote rescue sessions for gateway, auth, tunnel, VPS, and model access problems.

See Rescue Session

Read next

When Should You Use a Subagent? Check Isolation First
Use a subagent for independent read-heavy work. Keep one agent for coupled edits, and isolate parallel writers by file or worktree.
Which Coding Agent Should You Use? A Workflow Decision
Choose Codex, Claude Code, or Cursor from the work surface, control layer, and task shape. The interactive guide gives one recommendation.
Best GPU for Running a Local Coding Model (August 2026)
Coding models need VRAM for context, not for a higher quant — and the research says so. Qwen3-Coder 30B needs 18.6GB at Q4 plus 9.8GB per 100K tokens of context. The card you need, by how much repo you want in the window.
MoE vs Dense on a 24GB Card: Qwen3.6-35B-A3B or a Dense 27B?
MoE vs dense for local LLMs on 24GB VRAM: Qwen3.6-35B-A3B versus dense 27B models. Quant sizes, tokens per second, quality tradeoffs, and which to run.