惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
爱范儿
爱范儿
WordPress大学
WordPress大学
博客园 - 三生石上(FineUI控件)
J
Java Code Geeks
Vercel News
Vercel News
aimingoo的专栏
aimingoo的专栏
T
Tailwind CSS Blog
罗磊的独立博客
B
Blog
博客园_首页
A
About on SuperTechFans
有赞技术团队
有赞技术团队
V
V2EX
U
Unit 42
I
InfoQ
IT之家
IT之家
博客园 - 司徒正美
阮一峰的网络日志
阮一峰的网络日志
博客园 - 叶小钗
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Stack Overflow Blog
Stack Overflow Blog
The Cloudflare Blog
H
Help Net Security

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Cadence v8.4: a multi-model coding harness where Claude w...
Alexander Le · 2026-05-27 · via DEV Community

Claude writes. Codex reviews. Bugbot triages. Gemini sits on the council.
Cadence is an open-source coding harness — same category as Devin, Cursor agents, Aider, and Goose, but with one structural bet: different SDLC roles run on different models. The model that writes the code is not the model that reviews it, and neither of them is the model that triages the bug report. You get to pick the model per phase, and the orchestration is just a YAML file you can edit.

I shipped v8.4.0 this week. Here's why the multi-model angle matters and what the harness actually does.

The single-model problem

Most coding agents (including the well-funded ones) run the whole SDLC on one model. The same weights write the diff, review the diff, and decide whether the bug report is real. That's the equivalent of letting a junior engineer self-review their own PR and also decide which Sentry alerts to dismiss.

A model that wrote subtly broken code is statistically the worst model to catch the bug in it. They share the same blind spots: the same fencepost errors, the same favorite anti-patterns, the same overconfidence on the parts they got wrong. Tier-1 human teams don't review like this. The author writes. Someone else reviews. A third person triages production incidents. Different people, different cognitive frames, different incentives.

Cadence treats LLMs the same way. The author and the reviewer should be different models, ideally from different families, ideally trained on different data mixes.

What Cadence does

Cadence is a pipeline of rewireable skills:

brainstorm -> spec -> plan -> implement -> migrate -> validate -> PR -> review -> bugbot -> merge

Each phase is a skill: a markdown contract plus a small amount of harness glue. Each phase can route to a different provider. The defaults I run:

  • brainstorm / spec — Claude (Anthropic) for structured longform reasoning
  • implement — Claude Sonnet for the writing pass
  • review — GPT-5.5 / Codex for the adversarial pass on the diff
  • council (optional) — Gemini, brought in for tie-breaks on architectural calls
  • bugbot triage — Cursor's bugbot on the PR, then a model pass to classify each finding (real bug / false positive / low value) and either fix it or dismiss it with reasoning

The interesting failure modes the multi-model setup catches: Claude over-mocks tests, Codex catches it. Codex over-fixates on imaginary race conditions, Claude flags the false positive. Gemini disagrees with both about a schema decision, council resolves it. Nothing about this is magical, it's just three independent passes by models that don't share weights.

Risk-tiered review depth

Every spec declares a risk tier in its frontmatter. The harness reads it and picks how many review passes to run before merge:

  • Low — 1 review pass
  • Medium — 2 passes
  • High — 3 passes plus council

This is honest engineering ROI. A typo fix doesn't need three rounds of GPT-5.5. A migration that touches production tables does.

Concurrent multi-PR dispatch

v7.11.0 shipped worktree isolation. You can run N specs in parallel, each in its own git worktree, each in its own Cadence session, each producing its own PR. I've shipped 4 PRs concurrently in one sitting without any cross-contamination. The harness handles the worktree lifecycle; you just point it at specs.

16+ providers

The provider adapter layer covers: Anthropic, OpenAI, Google (Gemini), Groq, Ollama, AWS Bedrock, Azure OpenAI, Cohere, Mistral, DeepSeek, Together, Fireworks, Perplexity, OpenRouter, xAI Grok, and any OpenAI-compatible endpoint you point it at. Every phase can be overridden in a profile:

.cadence/profile.yaml

phases:
implement:
provider: anthropic
model: claude-opus-4-7
review:

provider: openai
model: gpt-5.5

council:

provider: google
model: gemini-3.5-pro
bugbot_triage:
provider: anthropic

model: claude-haiku-4-7
Swap providers without touching skill code. If a new model lands tomorrow, change one line.

Receipts

The dogfood is the test suite.
Claude Code as a distribution surface.

One housekeeping note: Cadence's skills load through Anthropic's Claude Code CLI as one of the distribution surfaces. You don't need to be a Claude Code user to care about the harness: the orchestration, the multi-model routing, the worktree dispatch, the bugbot triage are all provider-agnostic. Claude Code happens to be a convenient host for the skill loader. That's the whole relationship.

Try it

npm install -g @delegance/cadence@latest
cadence autopilot examples/specs/node-cli.md

Repo: https://github.com/axledbetter/cadence

License and footprint

MIT. Local-first. Runs on your machine with your API keys. No hosted agent, no telemetry, no per-seat subscription, no "contact sales." If your employer says you can run npm install and call provider APIs from your laptop, you can run Cadence.

If you've been waiting for an open-source coding harness that doesn't pretend a single model is good at every job, this is the one I built. Pull requests, issues, and skeptical takes all welcome.