Exact Terms

Complete vocabulary index

Expert vocabulary for people who know what they mean but not what to call it.

Browse 73 expert terms across image generation, resilient app builders, UX friction, customer discovery, and buyer messaging. Each term has a plain meaning and a handoff-ready phrase.

Image Vocabulary

Image Vocabulary terms

Use these in the term finder

creative direction / visual direction

Art direction

Unifies lighting, styling, setting, subject, and mood into one visual intent.

Handoff phrase: Give the image strong art direction: deliberate styling, cohesive palette, and a clear emotional tone.

viewpoint / shot angle / perspective

Camera angle

Controls power, intimacy, realism, and the viewer's relationship to the subject.

Handoff phrase: Use a slightly low eye-level camera angle to make the subject feel present without looking staged.

dramatic lighting / film lighting

Cinematic lighting

Adds directional light, contrast, and intentional shadow like a film frame.

Handoff phrase: Use cinematic lighting with motivated key light, soft shadows, and controlled contrast.

color treatment / film grade / palette

Color grading

Gives the image a consistent mood through color and contrast choices.

Handoff phrase: Apply restrained color grading with natural skin tones, deep neutrals, and one quiet accent color.

framing / layout / visual arrangement

Composition

Defines where the subject sits and how the eye moves through the image.

Handoff phrase: Use balanced composition with clear subject hierarchy and intentional negative space.

background blur / bokeh / shallow focus

Depth of field

Controls what is sharp and what fades into the background.

Handoff phrase: Use shallow depth of field with the subject sharply focused and background softly separated.

magazine style / premium editorial / lifestyle editorial

Editorial photography

Signals a real-world, polished image that feels intentionally art directed.

Handoff phrase: Make it feel like editorial photography for a premium magazine, not generic stock imagery.

35mm / 50mm / telephoto

Lens choice

Gives the generator a familiar camera feel for intimacy, realism, or compression.

Handoff phrase: Use a 35mm documentary look or 50mm portrait lens depending on intimacy and realism.

surface detail / tactile detail / texture

Material texture

Makes objects feel physical instead of flat or synthetic.

Handoff phrase: Emphasize material texture, subtle surface imperfections, and realistic light interaction.

avoid list / do not include / exclusions

Negative prompt

Tells the generator what defects, styles, or objects to avoid.

Handoff phrase: Negative prompt: generic stock photo, distorted hands, plastic skin, clutter, text artifacts, oversaturated color.

realistic image / anti-AI artifacts / natural realism

Photorealism constraints

Constrains the generator away from common artificial-looking defects.

Handoff phrase: Constrain the image toward natural skin, realistic hands, believable lighting, and no synthetic polish.

set design / props / wardrobe

Production design

Defines the setting, objects, clothing, and surfaces that make an image feel intentionally built.

Handoff phrase: Define the setting, props, wardrobe, and surfaces so the image feels art-directed, not generic.

moodboard / visual reference / style reference

Reference mood

Names the closest visual world without needing a copyrighted or exact reference.

Handoff phrase: Describe the visual reference as documentary editorial, premium magazine profile, or commercial campaign.

close-up / medium shot / wide shot

Shot type

Sets how much of the subject and scene the image should show.

Handoff phrase: Specify shot type: close-up, medium shot, wide shot, or establishing shot.

Workflow Reliability

Workflow Reliability terms

Use these in the term finder

save point / recovery point / resume checkpoint / checkpointing

Checkpoint

Marks a safe place where users or background work can resume without replaying unsafe side effects.

Handoff phrase: Create checkpoints after durable steps so users can resume safely without replaying committed side effects.

rollback step / undo action / saga compensation

Compensating action

Repairs or reverses side effects when a later step fails.

Handoff phrase: Identify compensating actions for each side effect if the workflow fails midway.

saved draft / autosave / progress persistence

Draft persistence

Saves unfinished work safely so users can leave, refresh, or return without losing context.

Handoff phrase: Persist draft state after every meaningful change with versioning and safe resume behavior.

workflow engine / durable execution / long running workflow

Durable workflow

Keeps long-running work recoverable across crashes, retries, and restarts.

Handoff phrase: Evaluate whether this should be a durable workflow with persisted steps and replay-safe handlers.

failure boundary / crash boundary

Error boundary

Contains UI failures so the rest of the app remains usable.

Handoff phrase: Place error boundaries around risky sections and define local recovery actions.

evaluation harness / agent evals / AI agent evaluation

Eval harness

Runs repeatable scenarios against an AI agent so behavior can be measured instead of judged by vibes.

Handoff phrase: Build an eval harness with representative tasks, expected outcomes, rubrics, traces, and regression checks.

degraded state / failure UI / recovery screen

Fallback UI

Shows a useful interface when data, network, or a component fails instead of leaving users stranded.

Handoff phrase: Design fallback UI for loading, partial data, API failure, retrying, and manual recovery states.

golden cases / known-good examples / golden dataset

Golden tests

Captures known-good inputs and expected outputs so future agent changes can be compared against a trusted baseline.

Handoff phrase: Create golden tests for the agent's most important tasks, including expected outputs and unacceptable failure modes.

precondition / transition guard

Guard condition

Prevents a flow from moving forward unless the required facts are true.

Handoff phrase: Define guard conditions for each transition, including validation failures and disabled actions.

service health check / key flow monitor / synthetic monitor

Health check

Continuously checks whether critical services or user flows are alive before customers report the failure.

Handoff phrase: Add health checks for signup, billing, core action, integrations, and background jobs with visible pass/fail status.

safe retry / idempotent operation / dedupe key

Idempotency

Makes repeated attempts produce the same result instead of duplicate side effects.

Handoff phrase: Add idempotency keys so retries and double submits cannot create duplicate side effects.

API contract / contract test / integration contract test

Integration contract

Defines the expected request, response, webhook, or payload shape between two systems so breakage is caught early.

Handoff phrase: Define integration contracts and contract tests for every external API, webhook, and sync boundary.

system rule / must always be true

Invariant

Captures rules that must remain true across every state and transition.

Handoff phrase: List the invariants this flow must preserve, then test each transition against them.

LLM judge / model grader / automated evaluator

Judge model

Uses a separate model or evaluator to score agent outputs against explicit criteria.

Handoff phrase: Use a judge model only with a clear rubric, calibration examples, and human review for ambiguous cases.

logs metrics traces / instrumentation / telemetry

Observability

Makes hidden failures visible through logs, metrics, traces, and events.

Handoff phrase: Add observability events for each transition, failure, retry, and recovery path.

optimistic update / local first feedback

Optimistic UI

Updates the interface before the server confirms, with a plan for failure correction.

Handoff phrase: Design optimistic UI states for pending, confirmed, failed, and rolled back changes.

out of order response / stale write / concurrency bug

Race condition

Catches bugs where timing or concurrent actions create the wrong final state.

Handoff phrase: Handle rapid clicks, two tabs, stale saves, and out-of-order responses without overwriting newer state.

failure recovery / continue after failure / repair path

Recovery path

Defines what happens after a failure so the user can continue instead of getting stranded.

Handoff phrase: For each failure mode, define what the user sees, what is retried, and how they can continue.

regression suite / failure replay set / known failures

Regression set

Keeps previous failures and important examples in the test loop so fixes do not silently break later.

Handoff phrase: Maintain a regression set of past failures, edge cases, and important user tasks that every agent change must pass.

failure replay / trace replay / rerun scenario

Replay

Reruns a saved input, trace, or failure scenario so an agent change can be debugged and verified.

Handoff phrase: Save agent traces and replay failed scenarios before accepting a fix.

resume flow / continue later / saved progress

Resumability

Lets a user or job continue from a safe checkpoint instead of starting over.

Handoff phrase: Design resumability with saved checkpoints, versioned draft state, and clear restart rules.

retry strategy / backoff / exponential backoff

Retry policy

Defines when to retry, when to stop, and how to avoid making failures worse.

Handoff phrase: Specify retry policy with timeout, backoff, maximum attempts, and non-retryable errors.

RLS / RLS policy / database access policy

Row-level security

Restricts which database rows a user or tenant can read or modify, even when application code makes a mistake.

Handoff phrase: Define row-level security policies for every tenant-owned table and test reads, writes, updates, and deletes by role.

scoring rubric / evaluation criteria / quality criteria

Rubric

Defines what a good result means before an agent, judge model, or human reviewer scores it.

Handoff phrase: Write a rubric with pass/fail criteria, partial-credit rules, examples, and disqualifying failures.

data shape drift / database schema drift / model drift

Schema drift

Names the failure where application code, database tables, migrations, and payload assumptions no longer match.

Handoff phrase: Detect schema drift with migrations, contract checks, and regression tests around every stored field and payload shape.

canonical state / single source of truth

Source of truth

Defines which place owns the real state when UI, server, URL, and draft storage disagree.

Handoff phrase: Define one canonical source of truth for builder state across UI, server, URL, and saved draft.

state sync / client-server reconciliation / draft reconciliation

State reconciliation

Resolves disagreements between UI state, server records, URL state, and saved drafts.

Handoff phrase: Add state reconciliation rules for UI state, server state, URL state, saved drafts, and stale writes.

state machine / finite state machine / FSM

Statechart

Models allowed states, transitions, guards, and side effects in one visible structure.

Handoff phrase: Model this as a statechart with explicit states, events, guards, and invalid transitions.

wizard step status / form step state / stage status

Step state

Names the lifecycle of each step so the app knows what is editable, complete, blocked, or recoverable.

Handoff phrase: Define step state for every screen: not started, active, valid, blocked, complete, failed, and recoverable.

timeout policy / latency budget / request timeout

Timeout budget

Defines how long each operation may wait before the product moves to retry, fallback, or recovery.

Handoff phrase: Set timeout budgets for each network operation, then define the retry, fallback, and recovery behavior.

commit boundary / draft versus committed state

Transaction boundary

Separates temporary edits from committed side effects so partial failure does not corrupt the workflow.

Handoff phrase: Separate temporary draft changes from committed side effects so partial failure does not corrupt progress.

state transition matrix / allowed transitions

Transition table

Makes every allowed and blocked movement between states explicit.

Handoff phrase: Create a transition table that lists every current state, event, next state, and rejected event.

Product UX

Product UX terms

Use these in the term finder

aha moment / first value / time to value

Activation moment

Identifies the first point where users experience concrete value.

Handoff phrase: Identify the activation moment and reduce the steps required to reach first value.

what looks clickable / interaction clue

Affordance

Describes the visual cue that tells users what action is possible.

Handoff phrase: Review the key affordances and make primary actions visually obvious without explanatory text.

zero state / blank state

Empty state

Turns a blank product moment into a useful next action.

Handoff phrase: Design empty states that show the next meaningful action and reflect the user's current context.

error types / failure categories / failure taxonomy

Error taxonomy

Groups failures so the product can respond with the right message and recovery path.

Handoff phrase: Create an error taxonomy with user-fixable, system-retryable, and support-required failures.

IA / content structure / navigation structure

Information architecture

Clarifies how information, screens, and actions are grouped.

Handoff phrase: Audit the information architecture and propose a clearer grouping of screens, objects, and actions.

JTBD / job statement / customer job

Jobs to be done

Frames the user's goal as progress they are trying to make, not just a feature request.

Handoff phrase: Rewrite this as jobs to be done with situation, motivation, desired progress, and current alternatives.

show later / layered complexity

Progressive disclosure

Shows complexity only when it becomes relevant.

Handoff phrase: Use progressive disclosure so advanced choices appear only after the user has enough context.

how users think / conceptual model

User mental model

Names the user's internal picture of how the product should work.

Handoff phrase: Map the user's mental model and compare it against the product's current object model.

Buyer Messaging

Buyer Messaging terms

Use these in the term finder

copy hierarchy / narrative order

Message hierarchy

Orders claims so the most important point lands first.

Handoff phrase: Create a message hierarchy from primary claim to proof points to objections.

answer doubts / sales objections

Objection handling

Answers the reasons a user might hesitate.

Handoff phrase: List likely objections and write concise responses backed by proof, not hype.

market position / how to explain

Positioning

Places the product in a buyer's mind against alternatives.

Handoff phrase: Write positioning that names the category, target customer, core pain, alternative, and sharp difference.

brand voice / writing style

Tone of voice

Controls how the writing feels while keeping the message intact.

Handoff phrase: Rewrite with a clear tone of voice: direct, specific, calm, and credible.

value prop / why it matters

Value proposition

States the outcome and why it matters to a specific person.

Handoff phrase: Turn this into a value proposition with audience, pain, promised outcome, and reason to believe.

Startup Validation

Startup Validation terms

Use these in the term finder

assumption map / risk map / belief inventory

Assumption mapping

Sorts beliefs by importance and uncertainty so the next validation step is not arbitrary.

Handoff phrase: Create an assumption map that ranks beliefs by importance, uncertainty, evidence, and next test.

manual MVP / concierge test / service prototype

Concierge MVP

Delivers the value manually first so you can learn before investing in automation.

Handoff phrase: Validate with a concierge MVP: deliver the outcome manually, capture objections, and only automate repeated demand.

ICP / target user / persona

Customer segment

Narrows research to a group with shared context, pain, budget, and behavior.

Handoff phrase: Define customer segments by shared pain, current workaround, urgency, and buying context.

market signal / evidence of demand / customer pull

Demand signal

Captures observable behavior that suggests people may actually want the product, not just say it sounds interesting.

Handoff phrase: Separate weak interest from demand signals: repeated pain, active workaround, budget owner, urgency, and willingness to take a next step.

proof bar / decision threshold

Evidence standard

Defines how much evidence is enough to act.

Handoff phrase: Define the evidence standard required before making this product decision.

smoke test / painted door test / demand test

Fake door test

Measures real interest in an offer before building the full product.

Handoff phrase: Use a fake door test to measure demand before building: offer the feature, track intent, and disclose honestly when needed.

assumption / testable belief

Hypothesis

States what you believe and what evidence would change your mind.

Handoff phrase: State the hypothesis, why it matters, what evidence supports it, and what would disprove it.

discussion guide / customer interview script

Interview guide

Structures conversations around real behavior instead of leading questions.

Handoff phrase: Create an interview guide with behavior-first questions and no leading prompts.

PSF / problem validation / solution validation

Problem-solution fit

Tests whether a real customer segment has a painful problem and believes the proposed solution is worth trying.

Handoff phrase: Evaluate problem-solution fit by separating customer pain, current alternatives, proposed solution, and evidence quality.

learning question / investigation question

Research question

Turns vague curiosity into a testable learning target.

Handoff phrase: Convert this into research questions that can be answered through interviews, desk research, or usage data.

leap-of-faith assumption / critical assumption

Riskiest assumption

Names the belief that would kill the idea fastest if it turned out to be false.

Handoff phrase: Identify the riskiest assumption first, then design the smallest test that can disprove it.

stage gate / go no-go gates / validation funnel

Stage-gate process

Breaks idea evaluation into explicit gates with entry criteria, evidence requirements, and continue/stop decisions.

Handoff phrase: Design this as a stage-gate process with entry criteria, evidence required, decision outputs, and stop/continue rules for each gate.

migration cost / cost to change

Switching cost

Captures the friction that keeps people on their current solution.

Handoff phrase: Analyze switching costs, including setup effort, data migration, team habits, trust, and risk.

WTP / budget signal / price sensitivity

Willingness to pay

Tests whether the pain is strong enough that a real buyer would spend money, time, or political capital.

Handoff phrase: Test willingness to pay by asking about current spend, budget owner, urgency, alternatives, and the cost of doing nothing.