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

推荐订阅源

L
LangChain Blog
阮一峰的网络日志
阮一峰的网络日志
WordPress大学
WordPress大学
博客园 - 司徒正美
罗磊的独立博客
D
Docker
Last Week in AI
Last Week in AI
爱范儿
爱范儿
M
MIT News - Artificial intelligence
V
V2EX
Google DeepMind News
Google DeepMind News
小众软件
小众软件
Apple Machine Learning Research
Apple Machine Learning Research
Microsoft Security Blog
Microsoft Security Blog
T
Tailwind CSS Blog
MyScale Blog
MyScale Blog
V
Visual Studio Blog
博客园 - 叶小钗
B
Blog RSS Feed
A
About on SuperTechFans
F
Fortinet All Blogs
T
The Blog of Author Tim Ferriss
Martin Fowler
Martin Fowler
P
Proofpoint News Feed

The New Stack | DevOps, Open Source, and Cloud Native News

Agentic development hinges on verification. For cloud-native software, that is a runtime problem. AI agents need infrastructure: Why Europe’s regional cloud strategy matters Transform your AI coding agent into a deterministic Java Spring expert WeAreDevelopers is coming to the US to give unsung developers a bigger voice Cleaner AI training data, fewer bugs: Sonar’s SonarSweep explained Observability overload is drowning engineers Google’s DiffusionGemma is 4x faster than its other Gemma models Fable 5: Guardrails and burn rate are annoying users, who say it’s still better than Opus 4.8 The Anthropic leader who built Claude Code says he ditched prompting — now he just writes loops. AWS can now mathematically prove your VMs are isolated Microsoft pulled 73 GitHub repos after malware attack — but still won’t say who’s compromised Databricks wants to kill the “email me a file” problem for AI agent skills Ramp bets forward deployed engineers can do what off-the-shelf finance AI can’t Git real: AI agents aren’t just for solo developers anymore Anthropic launches Claude Mythos/Fable 5, but you better try it soon This AI agent startup ditched Anthropic for DeepSeek — and says it’s saving millions When your data model is the bottleneck: lessons from Medium’s feature store How long before we stop reading the code? The tokenmaxxing party is over, and Revenium is mopping up How AI is solving the memory crunch it created Microsoft’s pitch to enterprises: Ditch Azure Repos for GitHub, despite its rocky reliability record Claude Code’s biggest upgrade yet ran 5 agents at once — here’s what happened Why Anthropic just doubled Claude Cowork limits at no charge For years, Apache Cassandra handed this work to your team — 6.0 takes it back “A dangerous combination”: The 2 factors that can “corrupt” AI agent workflows With Foundry, Microsoft bets the enterprise AI battle is about reliability, not capability Microsoft unlocks Visual Studio for developers left behind by its own AI AI teams now deploy 1,000 times a month. Your pipeline wasn’t built for that. Microsoft just made the agent runtime free — and kept everything around it “Whoever builds the most joyous product wins”: The agent war begins
"Code should be regenerated, not maintained": Codeplain m...
Paul Sawers · 2026-06-26 · via The New Stack | DevOps, Open Source, and Cloud Native News

AI is generating code faster than teams can review it. The answer, a small but growing number of developers argue, isn’t faster code review, but replacing code review with something else entirely.

Dušan Omerčević is CEO and co-founder of Codeplain, a company that’s all-in on spec-driven development as the foundation for building and maintaining AI-era software. Founded in Ljubljana, Slovenia, in early 2025, Codeplain launched quietly in September of that year with the promise of “spec-driven, production-ready code generation.”

The basis of this is Plain, an open-source specification language that uses structured, human-readable documents as the single source of truth for how software should be built and behave. The idea is that if something breaks or needs changing, you edit the spec, not the code, and Codeplain regenerates the implementation from scratch.

A Plain specification for a Trello client application (left) and the Python code Codeplain generates from it (right).
A Plain specification for a Trello client application (left) and the Python code Codeplain generates from it (right).

Now, Omerčević is pushing that idea further. In an interview with The New Stack, he argues that as AI generates ever-larger volumes of code, the bottleneck has shifted from writing software to reviewing and maintaining it — and that reviewing specs, which encode intent rather than implementation, requires a fraction of the cognitive load of reviewing code.

“Our thesis is that code should not be maintained – code should be regenerated. Specs should be reviewed, and it’s the specs that you maintain.”

“Our thesis is that code should not be maintained — code should be regenerated,” Omerčević explains. “Specs should be reviewed, and it’s the specs that you maintain.”

To advance that mission, the company is rolling out a new open-source agentic skills framework dubbed plain-forge, which lets coding agents such as Claude Code, Codex, and OpenCode draft and maintain Plain specs through conversation — effectively automating the part of spec-driven development that previously required the most human effort.

Alongside the launch, Codeplain also announced that it has raised $3M in funding to date from backers including GapMinder VC and Silicon Gardens.

The joy of specs: a new development paradigm

Codeplain is far from alone in its embrace of spec-driven development. Back in July 2025, Amazon debuted Kiro, an agentic IDE that steers development using structured specifications generated from natural-language prompts. GitHub, meanwhile, followed with Spec Kit, an open-source toolkit designed to make specs executable artifacts that AI agents can act on directly.

The underlying concept, however, predates both. SpecLang was a GitHub Next research project that began exploring in 2023 whether plain English could serve as a true programming medium — one where AI handles the translation from human intent to working code.

That lineage connects directly to Codeplain, too. Johan Rosenkilde, one of SpecLang’s creators and a founding member of the GitHub Copilot team, sits on Codeplain’s board and was among its earliest investors.

But despite the momentum behind spec-driven development, it seems developers don’t particularly want to write specifications. Through user testing, Omerčević and his team found that while developers resist writing specs, they are generally happy to read them. A well-structured spec, it turns out, is easier to review and reason about than the code it eventually produces.

Plain-forge is Codeplain’s answer to that tension. Rather than asking developers to author specifications from scratch, it puts the coding agent to work — researching the problem, drafting the spec incrementally, and validating it against Codeplain’s renderer before a human ever sees it. Crucially, it doesn’t front-load the process by generating a sprawling specification upfront — an approach Omerčević is openly critical of.

“We don’t throw 200 lines of specs at a developer; we do it iteratively,” he says.

Each small spec generates working software that the developer can immediately check and respond to, building familiarity with the spec one feature at a time rather than confronting a finished document they had no hand in shaping.

“By incrementally adding to the specs, the developer is building relations with the spec.”

“In this way, by incrementally adding to the specs, the developer is building relations with the spec,” Omerčević says. “The specs are the source of truth, and the specs are the feedback to the developer that the AI understood them.”

Rise like a phoenix

Underpinning all of this is a fundamental belief that code should be treated as disposable output rather than a durable asset, and that the spec — not the generated code — is what teams should preserve and maintain. Omerčević says he arrived at this conclusion through his own experience building Codeplain, but found it difficult to articulate to developers whose entire professional identity is built around code.

This is where Chad Fowler‘s Phoenix Architecture enters the fray. Fowler, a veteran engineer and General Partner at BlueYard Capital, has spent the past six months developing a broader philosophical framework for this approach.

His inaugural post in the series back in December, titled Regenerative Software, argues that AI has made code abundant and cheap, inverting decades of assumptions about what in a software system is worth preserving — and that teams clinging to existing implementations are generating technical debt faster than they realize.

It’s a framework that Omerčević says gave him a vocabulary he’d been struggling to find.

“Spec-driven development was really hard to communicate to regular developers.”

“Spec-driven development was really hard to communicate to regular developers,” Omerčević says. “What Chad did really well is ground the story in code, saying that the only difference is that this code is no longer permanent — it’s ephemeral, and it can always be regenerated from other artifacts.”

The phoenix, for the uninitiated, is a creature of Greek myth — a bird that cyclically burns itself and is reborn from the ashes. Fowler’s argument is that software systems should be designed to do the same.

In his March post, “The Conversation Is the Commit,” Fowler argues that when developers manually edit AI-generated code, they sever something important: the record of why that code exists and what decisions shaped it. The output changes, but the reasoning behind the change is lost.

Over time, that accumulation of lost context is what Fowler calls “provenance debt” — and his argument is that most developers have been building it up their entire careers without a name for it.

“If we don’t move toward finally capturing this rich and important information, we are irresponsible in the face of this wave of innovation in how we build software.”

“It’s just that it was impossible, technologically, to capture provenance without extreme bureaucracy, so as an industry we all decided it wasn’t a trade worth trying to make in almost all cases,” Fowler explains to The New Stack. “Now the tooling opens these sorts of things up without heavy process. My argument is that if we don’t move toward finally capturing this rich and important information, we are irresponsible in the face of this wave of innovation in how we build software.”

Put another way, the specs and the reasoning behind them are now the thing worth preserving — not the code they produce.

It’s difficult to overstate how significant a cultural shift this would entail – developers, after all, have built their identities around code. So how do you convince an engineer that deletion and regeneration represent progress?

For Fowler, there are two ways, each reflecting a different kind of persuasion.

“The first is to wait, because they will see that, over time, the old way of doing things has become obsolete and they need to evolve or die,” he says. “The second, and more positive way is to show them that deletion and regeneration define, and are supported by, a new level of rigor that only this new tooling makes possible.”

Codeplain, in Fowler’s view, represents one credible attempt to build that rigor into a working product — though he’s careful to say it’s just one piece of a larger puzzle still being assembled.

“My hope is that many companies and open source developers [build it],” he says. “This is because I think this missing layer can look very different. There’s a lot of room for imagination and innovation here. I don’t want to go with any one person or team’s assumptions of how it should work. The weirder the better, I think. We have to invent a new set of idioms and tools.”

Up to spec

Codeplain founders Dusan Omercevic (CEO) and Predrag Radenkovic (CTO)
Codeplain founders Predrag Radenkovic (CTO) and Dusan Omercevic (CEO)

Omerčević is no stranger to building and shipping enterprise software — he previously founded Cleanshelf, a SaaS management platform he sold to LeanIX in 2021, which in turn was subsequently acquired by SAP. Codeplain, then, is his next act — and it already has customers putting it to work.

Incode, an identity verification service provider, uses Codeplain to build and maintain integrations with external data providers — the kind of work that involves constant API research, rapidly changing external systems, and a high tolerance for things breaking unexpectedly.

It’s that last problem — things breaking — that Omerčević is most animated about. Because specs encode intent rather than implementation detail, when an external API changes and breaks an integration, Codeplain can often fix it by regenerating the code from the exact same spec, unchanged. The spec didn’t break; only the code did.

“You don’t even tweak the specs,” Omerčević says. “You just regenerate code from exactly the same specs, because quite often something small changes and breaks, but specs don’t.”

There are also hard economic arguments behind the approach. Omerčević says that coding agents that generate specs use five to ten times fewer tokens than when generating code directly — and that because specs are cognitively less demanding for the agent, it can handle larger, more complex problems within the same context window. For the code generation step itself, Codeplain uses faster, cheaper models such as Gemini Flash rather than frontier models, keeping costs down.

The analogy Omerčević reaches for is the TypeScript compiler: Claude could generate JavaScript directly from TypeScript, but why would you when a specialized tool does it faster and more cheaply?

“Let the specialized tools do what they are really good at,” he says. “And let Claude do what it is really good at — and that is research.”

YOUTUBE.COM/THENEWSTACK

Tech moves fast, don't miss an episode. Subscribe to our YouTube channel to stream all our podcasts, interviews, demos, and more.

Created with Sketch.