Product tour
From one request to a governed application.
ObjectOS is not another code generator. It is the target format and runtime where AI-written enterprise software lands: the agent writes compact metadata, a person reviews the diff, and the runtime supplies the repeatable application surfaces.
- 5 steps
- Requirement, metadata, review, runtime, governed AI
- ~1%
- Review-surface heuristic for CRUD/workflow apps
- 100x
- Iteration ambition when changes stay metadata-sized
Review surface
The diff is the product boundary.
Instead of asking a reviewer to audit a generated application codebase, ObjectStack asks the agent to change the business definition layer: objects, fields, views, permissions, workflows, actions, APIs, and tools.
import { ObjectSchema, Field } from '@objectstack/spec/data';
export const Case = ObjectSchema.create({
name: 'support_case',
label: 'Case',
fields: {
subject: Field.text({ label: 'Subject', required: true, searchable: true }),
customer: Field.lookup('crm_account', { label: 'Customer' }),
priority: Field.select({
label: 'Priority',
options: [
{ label: 'Low', value: 'low', default: true },
{ label: 'Normal', value: 'normal' },
{ label: 'Urgent', value: 'urgent', color: '#EF4444' },
],
}),
status: Field.select({
label: 'Status',
trackHistory: true,
options: [
{ label: 'New', value: 'new', default: true },
{ label: 'Triage', value: 'triage' },
{ label: 'Waiting', value: 'waiting' },
{ label: 'Resolved', value: 'resolved' },
],
}),
},
}); How it works
The governed build loop
The product loop is designed around the two readers that matter: the AI that writes the system and the human who must understand and approve it.
1. Describe the business change
Start with a real operating request: a case queue, approval chain, procurement flow, customer portal, or workflow that already has owners and rules.
2. Agent writes metadata
The coding agent edits ObjectStack definitions instead of generating controllers, screens, migrations, APIs, and permission glue by hand.
3. Reviewer signs off
The reviewer checks a compact diff: field names, relationships, permissions, transitions, workflow rules, and tool exposure.
4. Runtime supplies surfaces
ObjectOS turns metadata into tables, views, forms, ObjectQL, APIs, audit trails, MCP tools, and admin surfaces.
5. Agents operate inside policy
AI can query and act through governed tools that inherit identity, record rules, field rules, approvals, and audit logging.
Existing systems
Add an object layer without replacing systems of record
Most enterprise software value is already trapped in databases, ERP, CRM, ticketing, files, and custom systems. ObjectOS gives agents an explicit object model over that estate.
Connect databases and APIs
Map existing records into business objects, relationships, calculated fields, and actions without forcing a rip-and-replace migration.
Keep authority explicit
Each object says who can read, write, approve, export, automate, or expose it as a tool. That authority remains visible in review.
Ship new surfaces on top
The same definition can back internal apps, dashboards, portals, workflows, APIs, reports, and AI agent tools.
Decision surface
What changes, who reviews it, what runs
| Layer | AI writes | ObjectOS supplies |
|---|---|---|
| Data model | Objects, fields, relationships, validations | Tables, migrations, ObjectQL, generated APIs |
| Experience | Views, forms, dashboards, actions | Rendered UI, navigation, status states, access checks |
| Governance | Roles, row rules, field rules, approvals | Runtime enforcement, audit log, user-scoped tools |
| AI surface | Agent tools, skills, prompts, action contracts | MCP exposure, policy checks, execution records |
Review checklist
A reviewer should be able to answer
- What business objects changed?
- Which people, roles, and agents gained authority?
- Which actions need approval before execution?
- Which data can leave the runtime, if any?
- What will appear in audit logs after the change?
FAQ
Questions this page should answer
Is ObjectOS a low-code builder?
No. Low-code usually optimizes human screen building. ObjectOS is a target format and runtime for AI-written business software, where metadata stays reviewable and runtime governance stays enforced.
Is the 1% claim a benchmark?
It is a review-surface heuristic for typical CRUD and workflow apps. The exact ratio depends on the domain, but the key point is that the agent edits metadata while ObjectOS supplies repeated application mechanics.
Next pages