📰 IT NachrichtenToday’s NYT Mini Crossword Answers for Saturay, Sept. 12(12.09.2026 um 07:43 Uhr)
🔧 AI Nachrichten Etzioni on AI: What kids tell chatbots, but not you(04.09.2026 um 16:05 Uhr)
🔧 AI Nachrichten OpenAI Wants to Know if an AI Industry Slowdown Would Even Be Legal(11.09.2026 um 01:28 Uhr)
🔧 AI Nachrichten OpenAI puts Pro subscriptions on hold due to Astra demand(10.09.2026 um 22:59 Uhr)
🔧 AI Nachrichten OpenAI’s feud with mathematicians is only escalating(11.09.2026 um 22:57 Uhr)
📰 IT NachrichtenToday’s NYT Mini Crossword Answers for Saturay, Sept. 12(12.09.2026 um 07:43 Uhr)
🔧 AI Nachrichten Etzioni on AI: What kids tell chatbots, but not you(04.09.2026 um 16:05 Uhr)
🔧 AI Nachrichten OpenAI Wants to Know if an AI Industry Slowdown Would Even Be Legal(11.09.2026 um 01:28 Uhr)
🔧 AI Nachrichten OpenAI puts Pro subscriptions on hold due to Astra demand(10.09.2026 um 22:59 Uhr)
🔧 AI Nachrichten OpenAI’s feud with mathematicians is only escalating(11.09.2026 um 22:57 Uhr)

🔧 Programmierung 🕛 vor 3 Monaten 15 Min Lesezeit
0

AI Writes Code Faster. Why Hasn’t Delivery?

↗ Quelle (dev.to)
🗣️ Stimme:
📑 Inhaltsübersicht
📺
dev.to

The bottleneck didn’t disappear — it moved downstream.



on how Anthropic’s product team went from shipping a feature every few months to every few weeks, sometimes days, and for small slices of work — even within a single day. Our team has been having a parallel conversation: what concrete practices actually turn AI speed into delivery speed?



My main takeaway isn’t “AI writes code scary fast.”



That’s the shallow read.



Lots of teams now claim delivery is 10× or 50× faster with AI.



I’m skeptical.



Because one thing gets conflated all the time:



Faster code generation is not the same thing as faster software delivery.



An agent can draft a patch in ten minutes. Sure. But whether that patch can land on main, be validated, reach real users, and be debugged or rolled back when it breaks—that’s a different system entirely.



If only the “writing code” step speeds up while review, testing, release, monitoring, and rollback stay the same, “50× faster” is often a local illusion: one part of the pipe got hot; the org is still stuck.



Most teams, in my view, aren’t at the “quantity becomes quality” inflection yet.



The real shift isn’t “everyone runs more coding agents.” It’s that how you set goals, verify code, ship features, and contain risk has to change. Otherwise AI doesn’t multiply delivery — it multiplies PRs waiting for review, features waiting for validation, and branches waiting to merge.



As makes the same point from the platform side: when AI coding tools explode code throughput, CI/CD, environment provisioning, and deployment pipelines — not typing speed — become the constraint. As they put it, the bottleneck has flipped: less time coding, more time waiting on builds, previews, and deploys.



So I’ve stopped framing R&D efficiency as lines of code per hour.



A better line:



AI compresses the coding segment and forces you to face the real system bottleneck.








4. Layer three: looser roles, pricier taste



Cat noted something representative: many PMs on Claude Code have engineering backgrounds; designers ship frontend code. Product, engineering, and design are less siloed.



That trend will accelerate.



When code is cheap, work that existed only to hand off starts to feel wasteful.



PMs used to validate an idea via spec → design → eng queue → wait. Now a PM who codes can spike a prototype; an engineer with product sense can fix interaction gaps; a designer who ships UI can get to something runnable.



That doesn’t mean everyone becomes full-stack or specialties vanish.



Role is default responsibility — not the ceiling on what you can do.



You might be a PM — but can you prototype when the team needs it? You might be an engineer — but can you flag when the problem framing is wrong?



The scarce skill isn’t typing code. It’s product taste.



When everything is buildable, the expensive question becomes:



Of all the things we could build, which ones should exist?



That’s what Cat means when she says that as code gets cheaper, choosing what to write gets more valuable.



Without taste, AI teams do something worse than traditional teams:



They ship the wrong things faster.



Bad ideas used to die on engineering cost. Not anymore — agents will diligently implement them.



In AI-native teams, PM value isn’t scheduling or chasing status. It’s picking the highest-leverage slice, defining a small but real unit of ship, and separating noise from signal in early feedback.



That’s harder than “writing good prompts.”








6. What actually holds up “one feature per day”



Mapped to practice, I’d break “daily ship” into something concrete:



Step 1 — Intake: No novella. Goal, non-goals, principles, risks, acceptance.



Step 2 — Build: Agent works in an isolated worktree or sandbox — read, edit, run tests, add tests.



Step 3 — Evidence, not “I’m done”: Files touched, entry points affected, tests run / not run, touches on auth/data/money/security, flag needed?, rollback path.



Step 4 — Review by risk tier: Low risk → lean on automation + evidence completeness. Medium/high → human eyes on architecture, UX, security.



Step 5 — Merge without blind exposure: Default behind a flag; internal environments first when possible.



Step 6 — Release train: A fixed daily window for changes that are merged, verified, and within risk appetite.



Step 7 — Observe: Error rates, latency, key conversion, user feedback, log anomalies — not “we shipped, done.”



Step 8 — Incidents: Flip the flag or roll back first; don’t spend thirty minutes in a blame meeting.



Agents matter. Clear rules at each gate matter more.



I call that bundle a Release Harness — not a single tool, but constraints on how work is sliced, how evidence is submitted, how risk is tiered, what must be automated, what must stay human, and when merge / ship / rollback is allowed.



A minimal release checklist is seven fields: goal, scope, risk tier, verification evidence, ship method, rollback method, watch metrics. The point isn’t a pretty template — it’s that every PR can answer them.



describes the same gap: parallel agents can leave every issue green while the merged product still fails — tests passed with mocked dependencies, every acceptance criterion met while a module stayed invisible to consumers. The system optimizes for the criteria and checks you encode, not for coherence you never specified.



Green means covered paths didn’t explode. Not the product entry works.



Evidence needs an integration slice: where’s the entry, routes, config, permissions, analytics, end-to-end path.



Without that, you ship a half-plugged-in feature.






7.4 No feature flags, so long branches become “the plan”



“We want high frequency” without feature flags doesn’t add up.



No flags → unfinished work can’t live on main → long-lived branches → merge pain → release frequency drops.



With agents touching many surfaces at once, branch merges get uglier.



Flags aren’t just “gradual rollout.” They let incomplete capability exist safely on main.






7.5 Automation that’s 95% right



Cat’s advice for individuals applies to teams: if automation isn’t reliable, it isn’t automation — it’s a new chore.



95% correct release notes that omit risks → humans re-read every PR.



Auto-fix CI that patches wrong → humans re-audit every patch.



Auto-verify that false-passes → humans redo manual QA.



The last 5% has to be trustworthy enough to depend on.






Closing: speed isn’t the goal — feedback is



Not every team should ship daily.



Core infrastructure, regulated financial flows, heavy compliance — release cadence isn’t the only metric.



Anthropic’s practice is useful because it surfaces a sharper question:



After AI made code fast, did your feedback loop get fast?



If not, you mostly get more half-done work, more PRs, more verification load, more integration risk.



If yes, the shape of the team changes: clearer goals, thinner docs, looser handoffs, faster path to trunk, hidden-by-default features, evidence that accumulates automatically, rollback that isn’t improvised.



Then AI becomes organizational R&D capacity, not a typing sidecar.



When I gauge maturity, I don’t count agents, LOC, or open PRs.



I ask three questions at end of day:




  • What actually reached production today?


  • Why was that safe?


  • If we were wrong, how fast can we revert?




Teams that answer those three consistently are the ones that can talk about shipping every day without gambling.






What this means if you ship database changes



Application delivery is only half the picture when agents touch schema, tenants, replication, or ops runbooks. The same rules apply: thin goals, explicit evidence, flags or staged rollout, and rollback you have practiced — not “the agent said the cluster is fine.”

At OceanBase, we see the same bottleneck shift in the open-source community: AI speeds up how people generate deploy scripts and config, but production still depends on verification, integration, and recovery — especially for distributed databases where a green unit test does not prove a safe cutover.

If you are experimenting with agent-assisted database work, three places to start:




  • ) that wrap deployment, tenant management, and benchmarks in governed, repeatable flows — not one-off prompts.


  • if you are hardening a Release Harness that includes the data plane; we are interested in what breaks when coding gets 10× faster but cluster validation does not.




Your move: Pick one change you shipped (or almost shipped) in the last month. Ask whether evidence covered app + data + rollback — not just “tests passed.” If the data path was hand-waved, that is your downstream bottleneck.

Vollständiger Original-Bericht
Ausführliche Details, Code-Beispiele & Hersteller-Stellungnahme auf dev.to.
↗ Original-Artikel auf dev.to lesen
Wie bewertest du diesen Beitrag?
1 Klick Feedback
Teilen mit Netzwerk & Team:

Community-Analysen & Experten-Meinungen 0

Verfasse deine eigene Analyse, teile Workarounds oder diskutiere diesen Vorfall im Blog.
Noch keine Community-Analyse verfasst. Markiere einen Textabschnitt oder klicke oben auf Eigene Analyse verfassen“!
Community Pulse: Relevanz-Einschätzung
1 Klick Experten-Votum
🔴 Akute Relevanz 0%
🟡 In Evaluierung 0%
🟢 Keine Auswirkung 0%
Spannende Innovation 0%
Verwandte Story-Cluster & Quellen (Vektor-KI)
Port 8095 Engine
2 Quellen
Seattle Times sues Microsoft and OpenAI, alleging they trained their AI on its journalism
1 Quelle
Today’s NYT Mini Crossword Answers for Saturay, Sept. 12
1 Quelle
Etzioni on AI: What kids tell chatbots, but not you
Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten AI Writes Code Faster. Why Hasn’t Delivery?

Thematisch verwandte Begriffe: Writes, Code, Faster, Hasnt · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...