OPEN_SOURCE ↗
REDDIT · REDDIT// 23d agoTUTORIAL
Claude Code stalls on open models
A Reddit user says Claude Code works fine with Sonnet and Opus, but gets stuck in analysis mode when pointed at open-source models like Qwen3-Coder, Qwen3.5, GLM-4.7-Flash, and Devstral Small 2. The post reads less like a bug report and more like a model-compatibility problem between Claude Code’s agentic workflow and weaker tool-following local models.
// ANALYSIS
This is probably not user error so much as an expectation mismatch: Claude Code is an opinionated agent stack, and the open models are being asked to behave like Claude without having the same instruction-following or tool-call discipline.
- –Claude Code is built around Anthropic’s own models and workflows, so Sonnet/Opus naturally fit its prompts, tool schema, and “do the thing” cadence better
- –Many open-source coder models are good at code generation but weaker at staying inside strict agent loops, which can show up as verbose analysis instead of action
- –If the API proxy or router is even slightly off, tool calls and role instructions can degrade fast, and the model may default to narrating instead of executing
- –The practical fix is usually model selection plus prompt/router tuning: use a coder-tuned model with solid function calling and make sure the Anthropic-compatible wrapper is preserving the full tool contract
- –Bigger picture: Claude Code is not a neutral shell for every LLM; it’s a workflow built around a specific family of models, and local swaps often expose that assumption
// TAGS
claude-codecliai-codingagentopen-sourcellm
DISCOVERED
23d ago
2026-03-19
PUBLISHED
23d ago
2026-03-19
RELEVANCE
8/ 10
AUTHOR
hedsht