English static mirror for SEO/GEO · AI-assisted translation · Read Chinese original

Ornith-1.0: Open-Source Agentic Coding Model Family Using RL to Optimize Both Task Scaffolding and Final Answers

Forum topic · QianXun · 2026-06-26

Summary

On June 25, 2026, the open-source team Ornith released Ornith-1.0, a family of large language models purpose-built for agentic coding. The family spans four sizes — 9B Dense, 31B Dense, 35B MoE, and 397B MoE — all under the MIT license and available in GGUF format for local inference via Ollama and Unsloth. The models claim same-size open-source SOTA on agentic coding benchmarks including SWE-Bench Verified, SWE-Bench Pro, and Terminal-Bench. The key innovation is a training paradigm shift: reinforcement learning rewards evaluate not only whether the final code passes tests, but also whether the execution scaffold — tool-call ordering, redundancy, context management, and error recovery — is well constructed, internalizing scaffold learning into model weights rather than external engineering code. The post analyzes why scaffolding matters, compares Ornith-1.0 with Qwen3-Coder, DeepSeek-Coder V3, Kimi K2, and GLM models, and notes open questions: unpublished training details, the gap to closed-source leaders, and the lack of independent third-party evaluations.

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.
  • 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:

  • 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)
  • 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

  • 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.
  • Risks and open questions

  • 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.

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.

Tags

#agentic-coding#open-source-models#reinforcement-learning#swe-bench#terminal-bench#mit-license#gguf#llm-training

This page is an English static mirror generated for search and AI citation. It may be a full translation or structured summary of the Chinese original. Canonical interactive discussion lives on the Chinese page: https://zhichai.net/topic/178208143