I once asked an AI to build a brand website. What came back looked convincing at first glance, but it was broken in the ways that actually matter. The header showed exactly two links. There was no "About" page anywhere. An admin panel existed on the backend, yet no button or route on the frontend could actually reach it. The server side functioned. The user side did not.

Most people who run into this assume the AI got lazy or hit a token limit. That is not what is happening. The issue is structural. AI coding tools are built to police internal consistency. They ask: "Does everything I declared line up with itself?" They do not ask: "Does this kind of deliverable contain everything it is supposed to contain?" If you mention two pages for your brand site, the model dutifully checks whether those two pages link back to each other. Once the links resolve, it considers the task complete. It has no inherent notion that a brand site needs an About page, trust signals, or a contact path. There is no standard in its head.

I call the fix a Completeness Baseline.

A completeness baseline is simply a standard checklist of what a given deliverable must contain. You generate the artifact, then you check the real output against this external standard instead of trusting the tool's internal sense of "done."

Checking Across Three Layers

Not all missing pieces are equally obvious. A useful baseline checks three distinct layers.

Existence. Does the part actually exist? This sounds basic, but an AI will happily build a navigation wrapper that references a dashboard page without ever generating the dashboard page itself. The reference exists. The target does not.

Reachability. Can a real user actually get to it? Hidden admin panels are the classic symptom. The route and the component might both exist in the codebase, yet no menu item, button, or redirect exposes them to the interface. If a user cannot trip over it during normal use, it is not really there.

Substantiation. Is there real data or structure behind the surface? A page that loads but contains only placeholder text and no image upload slot is a skeleton wearing a costume. An About page without an image slot or editable text field is not complete, even if the HTML renders cleanly.

These three layers catch different classes of gaps. Existence finds the missing shoe. Reachability finds the shoe locked in a closet. Substantiation finds the shoe with no sole.

Baselines by Type

One baseline will not cover every project. You need to classify what you are building and define the non-negotiables for that category.

Brand sites need specific sections and reachable pages. Think About, Contact, privacy links, and navigation that actually exposes every major view.

APIs need documentation, exhaustive error codes, and rate limits. A working endpoint that returns 200 OK for success and a generic 500 for everything else is not a finished API. It is a hazard.

Automations need logs and failure alerts. If a workflow breaks at 2 AM and nobody knows until a human checks the run history, the automation is incomplete. Observability is not a bonus feature. It is part of the deliverable.

Once you name the category, the baseline writes itself. The hard part is enforcing it after the code is generated.

Design Rules That Hold Up

I rebuilt my own workflow around this idea and landed on three practical rules that keep projects from slowly unraveling.

Capability-gated design. Before you commit to a tool or a generated module, detect what it can actually do. If a component library lacks native mobile drawer support, do not let the AI generate a full navigation scheme that assumes it exists. The system should degrade gracefully instead of breaking when a capability is missing. Know the boundaries first. Design inside them.

Public engine, private values. Use a public engine for the heavy lifting, but inject your private data, configs, and conventions at runtime. This keeps your personal or company methods safe and separate from the generated scaffold. The AI builds the frame. You snap in the glass. This prevents the model from hard-coding assumptions that violate your actual standards or leak sensitive patterns into public training contexts.

Stel voor, ga niet automatisch verder. Laat de AI de volgende stap voorstellen, maar dwing een mens om de keuze te maken. Automatiseer de uitvoering, nooit het oordeel. Wanneer een model in één adem een database-migratie, een auth-schema en een payment hook genereert, krijg je gemak ten koste van toezicht. Laat de tool het plan presenteren. Laat de developer op de knop drukken.

Het juiste model kiezen voor de klus

Ik heb dit getest met verschillende modellen en zag een duidelijk verschil in waarde. Goedkopere modellen gaan verbazingwekkend goed om met mechanische bulk. Ze spugen boilerplate, repetitieve componenten en structurele stubs er sneller uit dan je kunt typen. De dure modellen verdienen hun prijs pas wanneer ze terughoudendheid tonen. Je wilt de premium-optie wanneer deze weigert om nep-oplossingen te verzinnen en in plaats daarvan een echt gat signaleert. Een model dat een workaround hallucineert voor een ontbrekende API-endpoint is gevaarlijk. Een model dat stopt en zegt: "Deze workflow vereist een webhook-target die niet is gedefinieerd", is de kosten waard. Betaal voor onderscheidingsvermogen, niet voor volume.

Bouw systemen, jaag geen magie na

Probeer AI-tekortkomingen niet op te lossen door grotere modellen of meer prompting-trucs op het probleem af te vuren. Los ze op met een baseline. Het gat is geen capaciteitsprobleem. Het is een verwachtingsprobleem.

Om de ontbrekende blokken te stoppen, doe je drie dingen.

Geef het systeem een baseline voor volledigheid voordat er code wordt geschreven. Maak er een fysieke checklist van die naast de taak staat.

Veranker je conventies in herbruikbare onderdelen. Als je je baseline afdwingt via templates, lint-regels of vooraf gebouwde scaffolds, begint de AI vanuit een positie van correctheid in plaats van te hopen dat hij je standaarden raadt.

Automatiseer de flow terwijl je een mens de controle over het oordeel laat houden. Laat de machines de herhaling afhandelen. Bewaar de beslissingen voor mensen die de context begrijpen.

Hier is nog één gewoonte die mijn manier van werken heeft veranderd. Als je zeven keer dezelfde ontwerpbeslissing neemt, stop dan met het behandelen ervan als een eenmalige keuze. Dat is geen herhaling. Dat is een wet. Geef het een naam. Maak er een regel van. Documenteer het. Wanneer je het patroon vastlegt, elimineer je de kans dat een AI er de achtste keer van afwijkt.

De bron voor dit framework en de oorspronkelijke verkenning is hier te vinden.

Als je van gedachten wilt wisselen met anderen die tegen dezelfde problemen aanlopen, kun je lid worden van de GyaanSetu learning community.