AGENTCONN
H

// Agent profile

HydraFusion

Coding Paid

About HydraFusion

Project HydraFusion is GitHub's runtime model orchestration layer for GitHub Copilot. Instead of routing every task to one model, HydraFusion selects from three execution patterns — Single (one model solves directly), Cascade (efficient model drafts, quality gate escalates to a stronger model if needed), and Critique (one model drafts, an independent model from a different family reviews, drafter revises once). On TerminalBench 2.1, HydraFusion improved verified task quality by 4.9 percentage points at 67% lower estimated cost than Claude Opus 5. On DeepSWE it came within 1.5 points at 36% lower cost, and on CheckpointBench within 0.1 points at 65% lower cost. Launched September 4, 2026 as a research preview in Copilot CLI via /experimental, available across all Copilot plans and billed at each model's standard token rate. VS Code and the Copilot app are targeting September as fast follows.

Key Features

  • Three execution patterns — Single, Cascade, and Critique — selected automatically per task
  • Cascade escalation — efficient model drafts first, quality gate escalates to a stronger model only when needed
  • Cross-family Critique — independent read-only reviewer from a different model family catches errors the drafter's own family would miss
  • Frontier-matching quality at 36-67% lower estimated cost than Claude Opus 5 across three benchmarks
  • Complete cost accounting — tokens from all workflow stages counted transparently
  • Fail-safe application — no partial changes applied; bounded execution with timeout and cancellation controls
  • Available across all GitHub Copilot plans — Free, Pro, Business, and Enterprise
  • Copilot CLI first, VS Code and Copilot app targeting September 2026 fast follow

Overview

Project HydraFusion is GitHub’s answer to a question the entire AI coding tool market has been dancing around: why force every task through a single model when orchestrating multiple models produces better results at lower cost? Announced September 4, 2026 as a research preview, HydraFusion is a runtime orchestration layer inside GitHub Copilot that automatically selects the right multi-model workflow for each coding task.

The key insight is that not every coding task needs the most expensive model, and even tasks that do can benefit from having a second model check the work. HydraFusion makes this selection automatic — developers interact with Copilot normally, and the orchestration happens behind the scenes.

How It Works

HydraFusion operates across three execution patterns:

Single routes a task to one model when the task is straightforward enough that orchestration overhead would not improve the result. This is the baseline — fast, cheap, and sufficient for simple completions and edits.

Cascade starts with an efficient model. If the output passes quality gates, it ships. If not, the task escalates to a stronger model. This captures the cost savings of using smaller models for easier tasks while preserving quality on harder ones.

Critique adds a review step: one model drafts, an independent model from a different model family evaluates the output in read-only mode, and the original model revises once based on the critique. The cross-family constraint is deliberate — models from the same family tend to share blind spots, so a reviewer from a different lineage catches different classes of errors.

HydraFusion selects between these patterns using capability signals from the task itself. The selection is transparent — developers can see which pattern was used and the cost breakdown across all stages.

Benchmark Results

GitHub evaluated HydraFusion against Claude Opus 5 as the frontier baseline across three coding benchmarks:

  • TerminalBench 2.1: +4.9 percentage points in verified task quality at 67% lower estimated cost
  • DeepSWE: Within 1.5 points of Opus 5 at 36% lower cost
  • CheckpointBench: Within 0.1 points of Opus 5 at 65% lower cost

These numbers position HydraFusion as a cost-efficiency play that does not meaningfully sacrifice quality — the TerminalBench result actually exceeds the frontier baseline.

Availability and Pricing

HydraFusion launched as a research preview in GitHub Copilot CLI, accessible via the /experimental command. It is available across all Copilot plans — Free, Pro, Business, and Enterprise. Usage is billed at each underlying model’s standard token rate, with complete cost accounting across all workflow stages.

VS Code and the GitHub Copilot app are both targeting September 2026 for fast-follow availability.

Considerations

HydraFusion is a research preview, not GA. The orchestration adds latency compared to single-model calls — Cascade and Critique patterns involve multiple model invocations, so wall-clock time increases even as cost decreases. The feature is currently CLI-only, which limits its reach to developers who already use Copilot in the terminal. And because it is billed per-token across all models in the workflow, cost savings depend on the task distribution — workloads that consistently trigger Critique or Cascade escalation will see smaller savings than those where Single suffices for most tasks.

Who It’s For

HydraFusion is relevant to any developer or engineering team using GitHub Copilot who wants frontier-level code quality without frontier-level cost. It is particularly compelling for organizations on Copilot Business or Enterprise plans where token costs scale with team size. Teams that use Copilot CLI for complex coding tasks — multi-file refactors, bug fixes, test generation — will see the most benefit from the Cascade and Critique patterns.

Similar Agents