AI agents · OpenClaw · self-hosting · automation

Quick Answer

What Is GPT-5.6 Sol Ultra Mode? Subagents, Terminal-Bench 2.1, and the 91.9% Score Explained (July 2026)

Published:

What Is GPT-5.6 Sol Ultra Mode?

Ultra mode is a new capability introduced with OpenAI’s GPT-5.6 Sol model on June 26, 2026 and publicly available from July 9, 2026. Instead of running Sol as a single agent, Ultra mode lets one Sol call spawn and coordinate multiple subagents in parallel, dramatically improving performance on long-horizon tasks like terminal workflows, cybersecurity research, and multi-step coding.

The headline result: 91.9% on Terminal-Bench 2.1, the highest public score for any AI coding agent as of July 9, 2026.

How Ultra Mode Works

A standard Sol call is one model, one context, one execution thread. When you flip to Ultra:

  1. Sol acts as an orchestrator — it plans the task and decides how to split work.
  2. Subagents run in parallel — each subagent handles a chunk (e.g., “fix test file A”, “refactor module B”, “check dependency C”).
  3. Sol collects and integrates results — subagent outputs are merged into a single coherent answer or code change.
  4. Fast mode option — Ultra ships with an optional 750-tok/s streaming path for time-sensitive workflows.

This is the same “coordinator-plus-workers” pattern used in Anthropic’s Agent SDK and Cursor 4’s Auto Router, but built directly into the model instead of the wrapping tool.

The Terminal-Bench 2.1 Result

ModelTerminal-Bench 2.1 ScoreNotes
GPT-5.6 Sol Ultra91.9%July 9, 2026 — new record
GPT-5.6 Sol (standard)~85%Base configuration
Claude Mythos 5~86%US-only, gated
Claude Fable 5~84%Gated after June 22, 2026
Claude Sonnet 5~82%Best broadly-available
Gemini 3.5 Pro~79%Preview
DeepSeek V4 Pro~74%Best open-source

Terminal-Bench 2.1 evaluates real command-line workflows: installing dependencies, iterating on failing builds, orchestrating tools, and interacting with a live filesystem — the exact scenarios agentic coding tools face in production.

Pricing

TierInput / MTokOutput / MTokSpeed
Sol (standard)$5.00$30.00Standard
Sol Ultra$12.50$75.00Up to 750 tok/s (Fast mode)
Terra$2.50$15.00Standard
Luna$1.00$6.00Very fast

Ultra costs 2.5x standard Sol because you’re paying for the subagent orchestration and (in Fast mode) accelerated throughput. For most tasks Terra or standard Sol is more cost-effective — Ultra is a specialist tool.

When to Use Ultra Mode

Use Ultra for:

  • Long-horizon software engineering tasks (multi-file refactors, migrations, large PRs)
  • Cybersecurity vulnerability research and exploitation analysis
  • Genomics and quantitative-biology workflows requiring parallel exploration
  • Any task where a single Sol context would exhaust its window before finishing

Don’t use Ultra for:

  • One-shot code completions (use Terra or Luna)
  • Chat and Q&A (Sonnet 5 is 5x cheaper and nearly as capable)
  • Batch classification and extraction (Luna or DeepSeek V4 Flash at 1/10th the cost)

Ultra vs Claude Sonnet 5’s Extended Thinking

Anthropic’s Claude Sonnet 5 uses “adaptive thinking” to scale reasoning effort within a single agent. OpenAI’s Ultra mode spawns multiple agents. The tradeoffs:

DimensionGPT-5.6 Sol UltraClaude Sonnet 5 (extended thinking)
ApproachMulti-agent parallelismSingle-agent deep reasoning
Cost$12.50 / $75 per MTok$2 / $10 (intro) → $3 / $15
Best atTerminal workflows, cyber, biologyGeneral coding, tool use, agents
Terminal-Bench 2.191.9%~82%
AvailabilityLive July 9, 2026GA since June 30, 2026

For teams that want frontier-level performance at reasonable cost, Sonnet 5 is the safer default. Ultra shines when you specifically need the parallel-subagent pattern and can absorb the 2.5x premium.

The Bottom Line

GPT-5.6 Sol Ultra is the first frontier model with native multi-agent orchestration baked in — no wrapper needed. Its 91.9% Terminal-Bench 2.1 score is the current state of the art for command-line agents, but at $12.50/$75 per MTok it’s a targeted tool for long-horizon workflows, not an everyday chat model.

For most developers on July 9, 2026, the smart routing is: Luna for classification, Sonnet 5 for everyday coding, Sol Ultra for the hardest terminal and cybersecurity work.

Sources