Skip to content
BUILDABILITY.
Appendix · IV·Glossary

The vocabulary,
without the code.

Every Buildable audit speaks two languages at once — the engineer’s and the operator’s. This is the operator’s dictionary. No code. No condescension. Just what each term means when it shows up in a board deck.

AI-Native

AI

Built assuming AI exists

Software where AI is a load-bearing part of the experience, not a sidebar feature. AI-native products are designed for prompts, embeddings, and agents — not retrofitted with a chatbot.
API

Engineering

Application Programming Interface

A contract that lets one piece of software call another. When Stripe ‘has an API,’ it means your app can charge a card by sending a structured request, instead of a human filling out a form. APIs are the plumbing of every modern integration.
Auth

Engineering

Authentication & Authorization

Two questions in one word. Authentication: who are you? (login, password, Google). Authorization: what are you allowed to do? (admin vs. viewer). Most outages and breaches happen at the seam between the two.
Buildability Index

Buildable

How commodity the visible tech stack looks

A 0–100 index measuring how standard the product's surface is — recognizable UI patterns, commodity data model, shallow integrations, simple auth, public APIs, coherent visual identity. Tool-agnostic: it reads the *shape* of the stack, not whether any specific builder can ship it. High: a competent operator could reconstruct the surface in any modern AI-native builder. Low: real engineering depth (custom engines, exotic data, deep enterprise integrations).
Churn

Business

Customers leaving

The percentage of customers who cancel in a given period. A buildable surface lowers the cost of being replaced. A real moat lowers churn regardless.
CRUD

Engineering

Create, Read, Update, Delete

The four operations any database-backed product needs: add a record, view it, change it, delete it. When an audit says ‘the product is mostly CRUD,’ it means the visible workflow is essentially a styled form over a list — buildable in days, not quarters.

Also called · Forms over data

Edge Function

Engineering

Code that runs close to the user

A small piece of server logic deployed to data centers around the world, so the response reaches the user in milliseconds. Replaces what used to require a dedicated backend team and a fleet of servers.
Frontend / Backend

Engineering

What the user sees vs. what runs on the server

Frontend is the browser experience (buttons, layout, animation). Backend is everything the user never sees (database, billing logic, integrations). A ‘full-stack’ change touches both.
Hallucination

AI

When an AI invents facts confidently

An LLM producing plausible-sounding output that is wrong. The risk that turns ‘AI can do it’ into ‘AI can do it, with a human in the loop.’
LLM

AI

Large Language Model

The class of AI behind ChatGPT, Claude, Gemini. Trained on enormous amounts of text, it predicts the next word well enough to draft, summarize, classify, and now — increasingly — write working code.
Lovability Fit

Buildable

How cleanly the rebuild lands in Lovable specifically

A 0–100 score measuring fit with Lovable's native primitives — component model, prompt one-shot efficiency, Supabase integration depth, TanStack routing & auth alignment, generation edge-case profile, and iteration cost from seed to production. This is the Lovable-specific score; Buildability measures the surface's commodity shape regardless of tool.
Migration

Engineering

A versioned change to the database

A script that takes the database from one shape to the next, recorded so every environment (developer laptop, staging, production) ends up identical. Migrations are how teams change the schema without losing data or sleep.
Moat

Business

What survives a rebuild

Data accumulated over years, integrations the customer cannot easily reproduce, regulatory approvals, distribution advantages, switching costs. The reason a buildable surface does not equal a replaceable company.
Moat Density

Buildable

How much of the value is non-buildable

A 0–100 score measuring data network effects, integrations, regulatory posture, distribution, and switching costs — the parts that survive a rebuild. A product can be highly buildable and highly defended at the same time.
Multi-tenant

Engineering

One app serving many customers, isolated

All customers run on the same codebase and database, separated by access rules (see RLS). Cheaper to operate, harder to get security right. The default for modern SaaS.
MVP

Product

Minimum Viable Product

The smallest version of a product that delivers the core promise and can be tested with real users. Not a prototype, not a demo — something a paying customer could actually use, however narrowly.
Network effect

Business

The product gets better as more people use it

Each new user makes the product more valuable to every other user (Slack, Figma multiplayer, marketplaces). The most durable kind of moat — one that compounds, and one that a rebuild cannot ship on day one.
Prompt

AI

The instruction you give an AI

In an AI-native build, the prompt is the new specification document. A good prompt produces a working MVP. A bad prompt produces a demo that breaks on the second click.
RLS

Engineering

Row-Level Security

A database rule that says ‘this user can only see their own rows.’ It moves access control from the application code into the database itself, so a bug in the UI cannot leak another customer’s data. The standard for multi-tenant SaaS.
SaaS

Business

Software as a Service

Software you rent, not own. Delivered over the web, billed monthly or annually. The dominant business model of the last twenty years — and the model Buildable audits exist to read.
Schema

Engineering

The shape of your data

A formal definition of what fields a record has, what types they are, and how tables relate. The schema is the skeleton of the product — change it carelessly and everything downstream breaks.
Seed Prompt

Buildable

The opening prompt of a rebuild

The single, structured prompt that a Buildable audit emits. Paste it into Lovable and you get a working first version of the audited surface. The seed is the audit’s deliverable.
SSR / SSG

Engineering

Server-Side Rendering / Static Site Generation

How a page is built before it reaches the browser. SSR builds it fresh for each request (good for personalized dashboards). SSG builds it once at deploy time (good for marketing pages and SEO). The choice affects speed, cost, and how Google sees you.
Stack

Engineering

The set of technologies a product is built on

Frontend framework, backend runtime, database, hosting, auth provider. Saying ‘React + Supabase + Vercel’ is a stack. The stack determines hiring, cost, speed of iteration, and what you can rebuild in a weekend.
Stack of record

Business

The system the business actually runs on

When a tool becomes the source of truth — the place finance reconciles, legal references, ops opens every morning — it is the stack of record. Hard to displace, even if the surface is buildable in a weekend.
Surface

Buildable

What a user can see and click

Pages, forms, tables, charts, settings. Surface is the part of a product an audit can decompose and rebuild. The rest is moat.
Switching cost

Business

What it costs the customer to leave

Migration work, retraining, lost integrations, contract penalties, political capital. Often higher than the price of the new tool — which is why buildable does not mean replaceable.
Translation

Buildable

The strategic act of going from finished product to seed prompt

The new craft Buildable measures. Anyone can reproduce a screen. Translation is decomposing a product into the smallest prompt that rebuilds its essential workflow — and naming what cannot be rebuilt.
Webhook

Engineering

A reverse API call

Instead of your app asking ‘did anything happen?’ every minute, the other service calls you the moment something happens. Stripe webhooks tell you a payment cleared. Slack webhooks post a message. They make integrations real-time without polling.

Missing a term? · Open an issue on the framework repository — the glossary ships with the audits.