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

推荐订阅源

人人都是产品经理
人人都是产品经理
Google DeepMind News
Google DeepMind News
博客园 - 【当耐特】
量子位
博客园 - 司徒正美
爱范儿
爱范儿
Hugging Face - Blog
Hugging Face - Blog
博客园 - 聂微东
Jina AI
Jina AI
J
Java Code Geeks
腾讯CDC
大猫的无限游戏
大猫的无限游戏
V
Visual Studio Blog
I
InfoQ
D
Docker
Recent Announcements
Recent Announcements
MongoDB | Blog
MongoDB | Blog
博客园 - Franky
宝玉的分享
宝玉的分享
G
Google Developers Blog
GbyAI
GbyAI
Y
Y Combinator 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
Define Your Product
Mark Abrahams · 2026-05-24 · via DEV Community

“The beginning of wisdom is the definition of terms” - Socrates. Probably.


The early biblical account of humanity uniting to build a city and tower on the Shinar plains of ancient Mesopotamia has made the "Tower of Babel" an enduring reminder of the difficulties of achieving a common goal without a common language. For those unfamiliar, the HPV (Highlights Package Version) goes like this:

Now the whole world had one language and a common speech...

They said to each other... “Come, let us build ourselves a city, with a tower that reaches to the heavens, so that we may make a name for ourselves..."

But the Lord came down to see the city and the tower the people were building.

The Lord said, “If as one people speaking the same language they have begun to do this, then nothing they plan to do will be impossible for them. Come, let us go down and confuse their language so they will not understand each other.”

So...they stopped building the city. That is why it was called Babel - because there the Lord confused the language of the whole world.

From there the Lord scattered them over the face of the whole earth.

Tellingly, when the Lord "confused the language of the whole world", what happened? They STOPPED BUILDING!

tower of babel nice tower you got

At a slight stretch of the principle, software development has long suffered from a similar disconnect between product managers and software developers on what exactly the thing to build is. At best this hinders the software building effort, and at worst actually stops the building a la Babel in that the business or software production endeavour fails to the point of extinction, an error of biblical proportion.

Context

In marketing, content is king. In AI, context is king. You've heard about it, experienced it; everybody's trying to solve it—good context. Memory systems, optimized retrieval, embeddings, increased context windows, etc.

Without good context management, agents:

(a) just plain don't have what they need to complete a task well, or
(b) they do get it, but in a time- and token-expensive manner

A complete product definition is also a great additional piece of context to draw from for your agent.

But AI agents are exposing something that has quietly existed—or indeed not existed—in software development for decades: Most organisations do not actually maintain a coherent definition of their product.

Instead, the product definition is scattered across Jira tickets, Slack conversations, onboarding calls, stale documentation, chat sessions, meeting outcomes, and some would argue the most important place: Git commits and the memories of long-serving engineers.

Humans compensate for this remarkably well. To the point where it often didn't even seem like a problem. We're good at asking questions, inferring intent and filling gaps. AI agents tend to be less forgiving.

An AI agent would typically do an inferior-to-human job in distinguishing between:

  • the current architecture and the old architecture,
  • a real business rule and an obsolete one,
  • the desired process and the "temporary" (3-year-old!) workaround.

Undefined products produce undefined AI behaviour. And AI agents are not slow. If your product definition is vague, inconsistent or fragmented, the agent will operationalise that confusion faster than a developer can say "It Works On My Machine."

A human developer might misunderstand a requirement and lose a day. An autonomous agent with unclear context can generate entire forests of beautifully written, confidently incorrect implementation. And human-in-the-loop can catch that eventually, but we're still wasting tokens, time, money and sanity.

Historically, ambiguity reduced productivity. In the AI era, I'd argue this dynamic only intensifies.

Folklore

Many software organisations don't really run on documentation so much as accumulated folklore.

  • "Ask Sarah how deployments work."
  • "The billing service is weird around month-end."
  • "Don't ever touch that Terraform module."
  • "The wiki page is mostly right."
  • "We tried that in 2022 and it broke reporting."

taylor swift folklore 1

For years, software teams have tolerated this because humans are remarkably adaptive, and, importantly, have the ability to socialize. "I'll call Dan about this billing issue—this is absolutely his area". But AI systems can't phone-a-friend. They depend entirely on the quality and consistency of the context they receive.

Which means our beloved software industry is starting to encounter a new constraint: Before AI agents can reliably build software, organisations must first reliably define it.

Spec Driven Development

One of the more interesting responses to the intent problem recently has been the rise of "Spec Driven Development" (SDD).

The basic idea is solid: before implementation begins, define the intended behaviour clearly enough that humans and AI agents alike can work from the same understanding. Instead of vaguely gesturing toward "the thing we want", produce an explicit specification first, then build against it.

This is a meaningful improvement over pure "vibe-driven" development.

A good spec reduces ambiguity, improves alignment, and gives AI agents something far more stable than fragmented chat history and half-remembered meeting discussions.

But there is still a problem.

In many implementations of SDD, the specification itself is ephemeral. A spec gets generated, refined, implemented against, maybe referenced during code review, and then quietly abandoned. Six months later the code has evolved, the business has evolved, the architecture has evolved, but the specification has not. The intent evaporates back into folklore.

The spec becomes less like infrastructure and more like scaffolding: useful during construction, then discarded once the building is standing.

Which means organisations and their AI agents often end up recreating the same understanding repeatedly:

  • re-explaining requirements,
  • re-discovering assumptions,
  • re-building context,
  • re-learning intent.

This is where permanent product definition starts to become interesting. Instead of specification as a temporary implementation artifact, we maintain a continuously operational asset. Something durable enough to survive individual implementations, staffing changes, architectural rewrites and waves of AI-generated code. In fact, it not only survives those changes, it actively guides them.

In a world increasingly built by agents, this kind of durable institutional memory probably needs to become both machine-readable and human-readable.

Product Definition As Infrastructure

This is the idea behind DefProd. It's a system I've been building that treats product definition as permanent infrastructure, rather than just ephemeral documentation. And that's what you build against.

Instead of requirements and intent being distributed across disconnected systems and human memory, the product itself becomes a continuously maintained definition shared by product managers, developers and AI agents alike. A durable, evolving, machine-readable definition of the thing being built.

The software industry has spent decades improving source control, CI/CD pipelines, cloud infrastructure and observability. Those systems became powerful—at least in part—because they established shared operational truth.

AI development may require the same transition for product intent itself. Because as AI capability increases, the cost of ambiguity increases with it. Better models and better prompts can move the needle a long way in agentic development, but successful organisations will also have clearer definitions. Shared definitions, shared intent, shared context.

spiderman build confusion

OK, so who here knows what we're actually building?

Because for humans and AI agents to build the same thing, they need a strong shared meaning of that same thing.

Shared, explicit product definition is poised as a promising solution to the software Babel problem. But to what degree are AI agents about to compel the industry to take product definition much more seriously? I'm not sure...