Glossary term
Metadata-driven development
Metadata-driven development builds an application by declaring its objects, fields, permissions, workflows, actions, and APIs as typed metadata that a runtime executes directly, instead of writing the code that implements them — a distinction that becomes decisive once an AI agent is doing the writing, because the declaration is small enough for a human to review and the runtime, not the generated code, is what enforces the rules.
Also known as metadata driven developmentmetadata-driven architecturedeclarative application development
In practice
The idea is not new, and pretending otherwise is the fastest way to be misread. Enterprise platforms have been describing applications as declarations rather than code since the mid-2000s, and the vocabulary comes from that lineage: objects instead of tables, permission sets instead of authorization middleware, flows instead of job scripts. What that generation established is worth keeping — a field added to a definition appears in the API, the list view, the detail form, the export, and the permission model at once, because all of them are derived from the same declaration rather than kept in sync by hand.
What has changed is who writes the declaration. When a human authored it through a point-and-click console, the payoff was speed and consistency, and the format could afford to be a proprietary XML dialect nobody read directly. When an AI agent authors it, the format itself becomes the constraint that decides whether the output is trustworthy: a complete business application expressed as metadata is a few thousand lines rather than a few hundred thousand, so an agent can hold the whole system in one context window instead of sampling a codebase it cannot see the edges of, and the human reviewing the change reads a diff of declarations — which fields moved, which permission changed, which step now requires approval — rather than auditing a generated controller, template, migration, and test.
Stated bare, the term collapses into the low-code reading and loses the argument, so it is worth being precise about the difference. A drag-and-drop builder optimizes for a person who does not want to write code; metadata-driven development in this sense optimizes for a reviewer who did not write the code and must sign off on it anyway. Those produce different formats. The first can hide the definition behind a UI, because the UI is the interface. The second cannot: the definition has to be a readable, version-controlled, diffable file, because a diff is the review surface and an agent — not a form — is the thing writing it.
It is a poor fit for some work, and saying so is not modesty. Problems whose essence is an algorithm — a pricing optimizer, a routing engine, a parser — do not get smaller or safer by being declared; they get written as code and called from the definition. The honest failure mode of the approach is an expressiveness ceiling: when the declaration surface cannot express a requirement, teams reach for an escape hatch, and enough escape-hatch code puts the system back where it started, with logic living somewhere the runtime does not govern and the reviewer does not see.
Where this term is used
Pages and articles that put this term to work.
Product pages
- Platform ObjectOS is the commercial production platform for ObjectStack apps, combining in-app AI, deployment, and team operations with the open, governed ObjectStack runtime.
- Product tour See how teams use ObjectOS to take an ObjectStack app from a business request to production: typed metadata, a human-reviewed diff, and governed operation.
- Data modeling Objects, relationships, validations, and formulas become tables, migrations, a query language, and REST APIs — with an object designer, an ER diagram, and datasource sync that federates existing databases in place.
Articles
- AI-native 애플리케이션의 핵심은 코드 생성이 아니라 메타데이터 생성이다 코드 생성은 프로토타입을 빠르게 만들 수 있지만, 엔터프라이즈 애플리케이션에는 객체, 필드, 관계, 뷰, 권한, 워크플로, 액션, Agent 도구를 함께 통제하는 메타데이터 런타임이 필요합니다.
- 업무 앱은 몇 토큰일까? 완전한 CRM 전체가 150k 미만 완전한 CRM은 150k 토큰 미만의 타입 메타데이터로 구성됩니다. 비즈니스 로직은 100k 미만, UI는 약 50k이며, 번들 레퍼런스 CRM은 여전히 약 16k입니다.
- 복잡한 비즈니스에서 low-code가 무너지는 이유와 AI-native 앱 플랫폼의 차이 Low-code는 페이지와 workflow를 빠르게 만들게 해주지만, 복잡한 비즈니스 시스템은 객체, 권한, 통합, 변화, 유지보수성에 의해 제한됩니다.