Agentic Coding
Summary
Briefing: Agentic Coding
Key Insights
- The harness, not the model, caused the "Claude regression" you experienced. Anthropic's postmortem on Claude Code quality complaints identified three specific bugs: a caching fix that cleared thinking history on every turn after an idle session (instead of just once), a default reasoning effort downgrade from
hightomedium, and a verbosity-reduction system prompt that hurt coding quality. If your Claude Code sessions have felt inexplicably dumber since late March, update to v2.1.116+ and verify your effort level is set toxhighfor coding work. This is also the clearest evidence that harness engineering is higher-leverage than model selection — these bugs, not model changes, drove months of user frustration. - An update on recent Claude Code quality reports
-
Intercom shipped 497 PRs autonomously with a 0.53% revert rate vs. 5.39% for human-authored code. The key was a multi-sub-agent review architecture: separate agents evaluate problem description quality, intent alignment, safety, logical correctness, and best practices independently rather than as a single review pass. The agent also refuses large PRs — flagging anything too big or broadly scoped as a forced quality gate. This isn't theoretical: the architecture is reproducible and the 6–16x faster approval time was measured in their pilot. If you're shipping AI code without multi-agent review, you're reviewing too much manually and catching too little.
-
AI is approving our pull requests: Here's how we made it safe
-
Write custom ESLint plugins instead of agents.md rules for domain constraints. Multiple practitioners independently confirmed that agents ignore markdown rules within minutes of a session. Deterministic linter errors, however, force self-correction every time. Spotify's background coding agent project validated this the hard way: repurposed human documentation failed for context files, but explicit field-mapping tables in structured format produced solid performance across 240 automated migration PRs. The practical rewrite: move your architectural constraints from CLAUDE.md into running validators, and measure the difference. Your effort level is also a context proxy — if you're reaching for
maxeffort on tasks that shouldn't need it, the upstream issue is almost always context quality, not model intelligence. - How to Fix Vibe Coding
- Spec-Driven Dev Is Back. But Not How You Think • Daniel Terhorst-North & Gojko Adzic • GOTO 2026
- Background Coding Agents: Supercharging Downstream Consumer Dataset Migrations (Honk, Part 4)
-
GPT-5.5 scored 62.5 on the senior engineer benchmark vs. Opus 4.7's 33 — but only when given an Opus-generated plan. This isn't a clean "GPT-5.5 wins" story. The actual pattern practitioners are converging on: use Opus 4.7 for planning (it writes contract-driven, constraint-heavy specs), then hand the plan to GPT-5.5 for execution (it will actually delete files and start fresh, where Opus patches). GPT-5.5 also trails Opus 4.7 on Terminal Bench (82.7 vs. 69 — but that's GPT ahead), and Opus 4.7 has a new tokenizer that inflates costs 29-47% over what you'd expect. For greenfield product work and design-forward tasks, Opus 4.7 still has better aesthetic sense. For complex refactors and bug-heavy execution, GPT-5.5 is now the better choice — and it's significantly faster, which matters more than people admit for flow state.
- The Coding Assistant Breakdown: More Tokens Please
- We Tested GPT-5.5 for 3 Weeks. It's a Beast.
-
AI amplifies what's already there — for better and worse. GitClear found 4.2x more durable code from regular AI users and 84% more code churn and 10x more code duplication across a 211-million-line analysis. These aren't contradictory: teams with good tests, linters, and architectural patterns get AI leverage; teams without them produce more bad code faster. The Anthropic trial showing junior developers who delegated to AI scoring 24-39% on comprehension vs. 65-86% for those who used AI to actively learn is the sharpest version of this. The practical implication: before scaling agent usage, audit your codebase's actual testability and linter configuration — those are the variables that determine whether AI compounds your quality or your debt.
- Give AI Something Worth Amplifying: Three Priorities for Technical Leaders
- Full Walkthrough: Workflow for AI Coding — Matt Pocock
Emerging Patterns
- CLI-first tools are outgrowing IDE-first tools in actual daily active use at high-adopter companies. Shopify's CTO showed CLI tools growing faster than GitHub Copilot and Cursor, which are not shrinking but not growing at the same rate. At close to 100% DAU across all employees, the growth is entirely in terminal-based agents. The practical advantage: terminal agents run on remote machines, persist when your laptop closes, and can parallelize sessions without IDE overhead. The frontier user pattern is 10-15 parallel sessions managed from tmux rather than one IDE tab. CI/CD is now the stated primary bottleneck — agents can write code faster than existing pipelines can validate it.
- CI/CD Breaks at AI Speed: Tangle, Graphite Stacks, Pro-Model PR Review — Mikhail Parakhin, Shopify
-
The review crisis is real but solvable with critique loops, not more human eyeballs. LinearB found AI agent-authored PRs wait 5.3x longer for review than human-authored ones. But Intercom's data shows AI-authored PRs, when reviewed by a multi-sub-agent architecture, have lower revert rates than human-reviewed human code. Shopify uses critique loops — one model generates, a different model critiques — and reports significant quality improvement. The teams getting wrecked are rubber-stamping large AI PRs; the teams succeeding enforce small PRs (Intercom's agent refuses large ones), run deterministic validators in their agents' feedback loops, and use cross-model critique before merge.
- AI is approving our pull requests: Here's how we made it safe
- CI/CD Breaks at AI Speed: Tangle, Graphite Stacks, Pro-Model PR Review — Mikhail Parakhin, Shopify
-
Give AI Something Worth Amplifying: Three Priorities for Technical Leaders
-
GitHub's MCP server got a 49% context reduction and 75%+ output token reduction through tool optimization — not better prompts. The lesson generalizes: the most impactful context engineering work is upstream preprocessing and tool surface reduction, not prompt iteration. Cloudflare replaced 7-8 MCP servers with a single TypeScript sandbox, cutting context bloat entirely. Most users don't configure — they use defaults. If you're building on MCP, designing for the default path matters more than building elaborate configuration options nobody will touch.
- Lessons from Scaling GitHub's Remote MCP Server — Sam Morrow, GitHub
- How to Fix Vibe Coding
- MCP = Mega Context Problem - Matt Carey
Dissenting Views
- On GPT-5.5 as daily driver: practitioners are split on whether it honors intent or just executes literally. The prevailing view from three weeks of testing is that GPT-5.5 is a strong execution engine that follows detailed plans without stopping early. The dissent (direct contradiction, not emphasis difference): several users report GPT-5.5 as "lazy," failing to honor intent, requiring more upfront prompt engineering, and generating context-stuck threads that need frequent kills. SemiAnalysis found it "too conservative" in making code changes — improving token efficiency but hurting correctness. This is likely task-dependent: GPT-5.5 excels when you provide a tight Opus-generated plan; it underperforms when you expect it to infer intent or handle ambiguity.
- We Tested GPT-5.5 for 3 Weeks. It's a Beast.
- I don't really like GPT-5.5…
-
On AI code quality improving vs. degrading over time: both are happening, and the determining variable is your review process. The prevailing view from Intercom is that AI code has lower revert rates than human code. The dissent (difference in methodology, not direct contradiction): GitClear's longitudinal data shows 84% more code churn and refactoring dropping from 25% to under 10% of changed lines across 211 million lines of code from 2020-2024. Both are true simultaneously — AI code quality depends entirely on whether you've built the review infrastructure that Intercom built. Teams without multi-agent critique, enforced small PRs, and deterministic validators are accumulating debt, even if individual completions look clean.
- AI is approving our pull requests: Here's how we made it safe
- Give AI Something Worth Amplifying: Three Priorities for Technical Leaders
- AI Inside the Enterprise
Read & Act
What to read
-
The Coding Assistant Breakdown: More Tokens Please — The most rigorous independent Claude Code vs. Codex comparison with actual engineer workflow reports, tokenizer cost analysis showing Opus 4.7's 35% token inflation, and why OpenAI chose "Expert-SWE" over SWE-bench Pro for GPT-5.5's announcement. Read the emerging Codex-for-problem-solving, Claude-for-scaffolding workflow section specifically — that's what SemiAnalysis's team has converged on after GPT-5.5.
-
AI is approving our pull requests: Here's how we made it safe — The architecture details of Intercom's multi-sub-agent review system are the most directly reproducible production case study this cycle. The 0.53% vs. 5.39% revert rate data changes the conversation about whether AI code review can outperform human review — the answer is yes, with the right setup, and the setup is described in enough detail to implement.
-
Full Walkthrough: Workflow for AI Coding — Matt Pocock — The most complete practitioner workflow guide available: the smart zone (~100k tokens) vs. dumb zone model, why compaction is worse than fresh sessions, TDD as essential (not optional) for agents, deep modules vs. shallow modules, vertical slicing, and the "grill me" skill for shared understanding. Dense enough that you'll use it as a reference.
-
An update on recent Claude Code quality reports — If you build on Claude Code, this is essential operational knowledge. Reading the three specific bugs explains months of "forgetful Claude" complaints and tells you exactly what to verify in your setup: effort level, harness version, and whether you're hitting the caching bug in long-idle sessions.
What to do
-
Replace your agents.md domain rules with custom ESLint or linter plugins this week and measure diff. Pick the three rules you most commonly have to re-tell Claude or Codex about — framework-specific patterns, naming conventions, architectural constraints — and write deterministic linter checks for them instead. Run your agent on a feature it would normally struggle with. The change in behavior from getting linter errors vs. ignoring markdown text should be visible within the first session. If you're a TypeScript shop, this is a two-hour investment with compound returns.
-
If you're using Claude Code and experiencing degraded quality, verify your setup against the postmortem checklist before switching tools. Check that you're on v2.1.116+, that your effort level is
xhighfor coding work (notmedium, which was the broken default), and that you're not hitting the caching bug by starting fresh sessions after long idles rather than resuming them. These fixes resolve issues that drove a meaningful percentage of the "Claude is getting dumber" complaints from March-April. -
Build a two-agent critique loop for your highest-traffic PR type before scaling agent output. You don't need Intercom's full five-sub-agent architecture to start. Pick your most common agent-generated PR category, write a second agent that checks it against your architectural constraints and test coverage criteria, and run it before merge for two weeks. Measure your manual review time and revert rate. That data will tell you whether to invest further in automated review or whether your current manual process is adequate.
Source Articles
- Give AI Something Worth Amplifying: Three Priorities for Technical Leaders
- The Agent Era: Building Software Beyond Chat with Box CEO Aaron Levie
- 998: How to Fix Vibe Coding
- Quoting Romain Huet
- An update on recent Claude Code quality reports
- Extract PDF text in your browser with LiteParse for the web
- A pelican for GPT-5.5 via the semi-official Codex backdoor API
- Qwen3.6-27B: Flagship-Level Coding in a 27B Dense Model
- Changes to GitHub Copilot Individual plans
- Is Claude Code going to cost $100/month? Probably not - it's all very confusing
- The Supply and Demand of AI Tokens | Dylan Patel Interview
- The $15B Physical AI Company: Simulation, Autonomy OS, Neural Sim, & 1K Engineers—Applied Intuition
- CI/CD Breaks at AI Speed: Tangle, Graphite Stacks, Pro-Model PR Review — Mikhail Parakhin, Shopify
- Replit's CEO On The Only Two Jobs Left In The Company Of The Future
- How To Build A Company With AI From The Ground Up
- How to Make Claude Code Your AI Engineering Team
- Claude just got another superpower...
- LIVE VIBE CHECK: GPT-5.5 Has it all
- We Tested GPT-5.5 for 3 Weeks. It's a Beast.
- The AI Sandwich: Where Humans Excel in an AI World
- MAXIMIZE Your Claude Code Subscription (Without Getting BANNED)
- Hype and Reality of the AI Coding Shift
- Unlocking the Data Layer for Agentic AI with Simba Khadder
- Testing GPT-5.5's Coding, Reasoning & Absurd Prompts Live
- Lessons from Scaling GitHub's Remote MCP Server — Sam Morrow, GitHub
- Bringing MCPs to the Enterprise — Karan Sampath, Anthropic
- Collaborative AI Engineering: One Dev, Two Dozen Agents, Zero Alignment — Maggie Appleton, GitHub
- AgentCraft: Putting the Orc in Orchestration — Ido Salomon
- Full Walkthrough: Workflow for AI Coding — Matt Pocock
- "Software Fundamentals Matter More Than Ever" — Matt Pocock
- The End of Apps — Kitze, Sizzy.co
- How AI is changing Software Engineering: A Conversation with Gergely Orosz, @pragmaticengineer
- MCP = Mega Context Problem - Matt Carey
- 🎙️ This week on How I AI: GPT 5.5, Claude Design, and GPT Images 2.0 hands-on reviews—plus an inside look at Meme…
- The Coding Assistant Breakdown: More Tokens Please
- GPT 5.5 on AI Gateway
- Deepseek V4 on AI Gateway
- Claude Pro: Opus model will only be available if extra usage is enabled
- Big Chip Club: Paul Klein (BrowserBase CEO) on the OpenClaw Scandal and the Future of Browser Agents
- Big Chip Club: Paul Klein (BrowserBase CEO) on the OpenClaw Scandal and the Future of Browser Agents
- SpaceX and Cursor team up to topple Claude Code | E2279
- Why Your Company Should Own Its AI Model | E2278
- An Interview with Google Cloud CEO Thomas Kurian About the Agentic Moment
- AI Inside the Enterprise
- Multi-Agent AutoResearch with Open Source Models
- An update on recent Claude Code quality reports
- Claude Design + Claude Skills: Automate Your Marketing (Claude Code)
- Codex Moves Beyond Coding
- Vibe Check: GPT-5.5 Has It All
- You’re the Bread in the AI Sandwich
- Spec-Driven Dev Is Back. But Not How You Think • Daniel Terhorst-North & Gojko Adzic • GOTO 2026
- Building, Managing & Governing APIs on AWS • Giedrius Praspaliauskas • GOTO 2025
- Why people spend millions on Github stars
- I don’t really like GPT-5.5…
- Open source is dead now?
- Did Anthropic just kill Figma?
- Claude Design Does In 30 Minutes What Your Team Does In A Sprint
- Your Apps Don't Need an API Anymore. Codex Just Proved It.
- Karpathy's Wiki vs. Open Brain. One Fails When You Need It Most.
- Your Prompts Didn't Change. Opus 4.7 Did.
- AI in the AM: 99% off search, GPT-5.5 is "clean", model welfare analysis, & efficient analog compute
- Cursor and SpaceX: In search of a complete loop
- Background Coding Agents: Supercharging Downstream Consumer Dataset Migrations (Honk, Part 4)
- [AINews] DeepSeek V4 Pro (1.6T-A49B) and Flash (284B-A13B), Base and Instruct — runnable on Huawei Ascend chips
- [AINews] GPT 5.5 and OpenAI Codex Superapp
- [AINews] Tasteful Tokenmaxxing
- 🎙️ This week on How I AI: GPT 5.5, Claude Design, and GPT Images 2.0 hands-on reviews—plus an inside look at Memelord
- SAP: Bringing the ‘Operating System’ of a Company into the AI Era with CTO Philipp Herzig
- The Truth About Opus 4.7 Effort Levels
- I Let Opus 4.7 MAX Rewrite My Entire Next.js App
- Claude Design Just Changed How I Build Apps
- How Anthropic’s product team moves faster than anyone else | Cat Wu (Head of Product, Claude Code)
- AI is approving our pull requests: Here’s how we made it safe
- SpaceX taps Cursor to take on Claude Code
- SAP: Bringing the ‘Operating System’ of a Company into the AI Era with CTO Philipp Herzig
- Sign of the future: GPT-5.5
- briefing 2026-04-14T05:00:49.370475+00:00
- briefing 2026-04-11T01:59:24.670464+00:00
- briefing 2026-04-02T00:08:53.817550+00:00
- briefing 2026-03-26T00:05:18.584991+00:00
- briefing 2026-03-18T23:52:58.207189+00:00
- briefing 2026-03-15T23:46:41.287871+00:00
- briefing 2026-03-12T23:45:54.708741+00:00
- briefing 2026-03-09T23:26:20.195360+00:00
- briefing 2026-03-05T06:39:32.574898+00:00
- briefing 2026-03-02T06:33:23.473899+00:00
- briefing 2026-02-27T06:19:16.557671+00:00
- briefing 2026-02-24T06:10:51.851857+00:00
- briefing 2026-02-21T05:57:08.968619+00:00
- briefing 2026-02-18T05:42:34.773676+00:00
- briefing 2026-02-15T05:31:50.463782+00:00
- briefing 2026-02-12T05:24:41.839408+00:00
- briefing 2026-02-09T05:23:48.969413+00:00
- briefing 2026-02-06T05:10:15.314133+00:00
- briefing 2026-02-03T04:59:40.153885+00:00
- briefing 2026-01-31T00:52:58.256971+00:00
- briefing 2026-01-28T00:42:43.343089+00:00
- briefing 2026-01-25T00:31:34.706164+00:00
- briefing 2026-01-22T00:25:55.385012+00:00
- briefing 2026-01-19T00:16:53.200314+00:00
- briefing 2026-01-16T00:02:57.095923+00:00
- briefing 2026-01-09T00:08:42.113249+00:00
- briefing 2026-01-04T20:20:23.854596+00:00
- briefing 2026-01-01T20:11:02.753163+00:00
- briefing 2025-12-29T20:09:39.010213+00:00
- briefing 2025-12-19T07:07:25.998579+00:00
- briefing 2025-12-05T01:16:39.475643+00:00
- briefing 2025-11-28T23:22:02.856759+00:00
- briefing 2025-11-25T05:25:34.005742+00:00
- briefing 2025-11-21T21:16:03.999868+00:00
- briefing 2025-11-17T20:22:23.096306+00:00
- briefing 2025-11-17T07:39:46.482218+00:00