Synergy

1 + 1 + 1 should be greater than 3.

Synergy is the Nerviq model for multi-agent lift. It decides which platform should lead, which supporting platforms should contribute evidence, and how one tool compensates for another tool’s blind spots.

Task routingCompound evidenceCompensation matrix

What Synergy Means

A repo with multiple agents is not automatically better. Synergy turns a stack of tools into a system with explicit task routing and evidence accumulation.

Lead
Primary platform
One agent gets the first shot at the task based on current strengths and context fit.
Support
Companion platforms
Additional agents contribute checks, evidence, or verification where they are strongest.
Score
Measured gain
Synergy compares single-platform and compound-platform evidence so teams can see when the extra complexity is worth it.

Core Concepts

Synergy is built around three ideas: route smart, accumulate proof, and let one platform offset another platform’s weak spots.

Who leads

Task routing

Route the work to the platform most likely to succeed first. A CLI-first code edit task might start in Aider or Codex, while cross-surface rule cleanup might start in Claude or Cursor.

Who confirms

Compound evidence

Nerviq records more than “did the task pass.” It combines findings from multiple platforms so the final recommendation carries stronger proof than any one surface alone.

Who covers whom

Compensation matrix

Every platform has blind spots. Synergy makes those blind spots explicit and pairs them with platforms that compensate for them.

Compensation Matrix

This is the practical heart of Synergy: some platforms lead, others strengthen the call.

ConcernPrimary platformCompanion platformWhy the pair is stronger
Security postureCodexClaudeCodex catches trust boundaries; Claude reinforces repo-local rules and hooks.
Realtime editor driftCursorClaudeCursor catches rule-level issues while Claude checks repo-owned instructions and command loops.
Headless automationAiderOpenCodeAider is strong for CI edits; OpenCode adds command orchestration and server-mode context.
Enterprise governanceCopilotWindsurfCopilot contributes policy/org signals, while Windsurf adds stronger enterprise segmentation and memory caveats.

The synergy-report Command

Use Synergy when you want one report that answers which platforms are active, what each one is good at, and where combining them produces a better outcome.

bash
nerviq synergy-report --format markdown

# Example summary
Active platforms: claude, codex, cursor
Lead platform for trust and automation: codex
Lead platform for instruction quality: claude
Lead platform for rule hygiene: cursor

Combined gain:
- 3 platforms surfaced 11 unique findings
- Best single platform surfaced 7 findings
- Net lift: +57%

Example: Three Platforms Beat One

Here is the kind of situation Synergy is built for: the same repo uses Claude, Codex, and Cursor.

Single-agent view

What each one catches

  • Claude catches missing verification commands and repo-owned instruction drift.
  • Codex catches approval, sandbox, and trust-boundary mismatches.
  • Cursor catches MDC rule failures, privacy-mode gaps, and editor-specific MCP mistakes.
Synergy view

What the combined view adds

  • The same verification policy is now visible across repo, CLI, and IDE surfaces.
  • Contradictions are surfaced instead of hidden because each platform sees the repo through a different boundary.
  • The final recommendation carries more confidence because three evidence streams point at the same fix.