On June 25, 2026, the open-source LLM team Ornith released Ornith-1.0, a model family purpose-built for agentic coding, available under the MIT license. Source: X post by berryxia.
Key points
- Full size range, fully open: 9B Dense, 31B Dense, 35B MoE, and 397B MoE — covering everything from single-GPU laptops to data centers.
- MIT license + GGUF format: commercially friendly, runnable directly in local inference tools such as Ollama and Unsloth.
- Same-size open-source SOTA on agentic coding benchmarks including SWE-Bench Verified, SWE-Bench Pro, and Terminal-Bench.
- Core innovation: reinforcement learning jointly optimizes the *task scaffold* and the final answer — the reward signal evaluates whether the execution framework itself is well constructed, not just whether the final code passes.
- Wrong tool-call ordering (e.g., reading before grepping vs. grepping before reading)
- Redundant intermediate steps (retrieving the same file repeatedly)
- Context management breakdowns (stuffing an entire repo into context, drowning key information)
- Weak error recovery (giving up after one failure instead of retrying with a different approach)
- MIT licensing allows any company to fine-tune vertical models, embed in products, or distill smaller versions.
- The 9B/31B Dense models fit a single RTX 4090/5090; the 35B/397B MoE models target data centers. This marks open-source coding agents approaching local-deployability parity with cloud APIs.
- Reproducibility: training details (reward shaping, trajectory collection, process supervision) are not yet public.
- Deployment cost: the 397B MoE is impractical for individual local users.
- Gap to closed-source leaders: SOTA only among same-size open models; top closed models typically score 80+ on SWE-Bench Verified.
- Benchmark bias: strong on SWE-Bench/Terminal-Bench, unverified on long-horizon real-world tasks.
- No independent evaluation yet: initial numbers are self-reported; waiting on HuggingFace community, Artificial Analysis, and similar benchmarks.
- Unclear business model behind an MIT-licensed project raises long-term maintenance concerns.
Why "scaffold learning" matters
Traditional coding-model RL rewards focus almost entirely on whether final code passes tests. But in real engineering, many failures are not "wrong code" — they are process failures:
These issues live in the execution flow, not the final answer. By bringing the scaffold into the RL objective, Ornith-1.0 treats agentic coding as a *process engineering* problem rather than pure code generation. This echoes Anthropic's "agents are about scaffolding, not models" thesis — but Ornith-1.0 internalizes scaffold learning into model weights instead of external engineering code.
Positioning among open agentic coding models
As of Q2 2026, the open-source agentic coding tier includes Qwen3-Coder (Alibaba), DeepSeek-Coder V3/V3.1, Kimi K2 (Moonshot AI), GLM-4.5/GLM-5 (Zhipu), and now Ornith-1.0 (closed-source leaders: Anthropic's Claude Sonnet/Opus). Ornith-1.0's differentiation is not architecture but training paradigm: scaffold-aware RL rewards. If validated, this could reshape training strategies across the entire tier — especially for models that top SWE-Bench but underperform on real tasks.
Engineering significance of MIT + GGUF
Risks and open questions
Conclusion
Ornith-1.0 signals an early paradigm shift in agentic coding training — from "RL on final code answers" to "RL on execution processes." If other teams follow, model-layer competition in late 2026 may shift from leaderboard chasing to optimizing process quality.