Transparency Is Not a Proxy for Trust (Especially in AI Products)

In June 2026, Seth Godin reminded us that transparency can backfire—especially in complex systems where users lack the context to interpret raw information. For product engineers building AI interfaces, this lesson is critical. Showing confidence scores, model internals, or exhaustive data doesn't automatically build trust; often it erodes confidence. This post argues that the highest-leverage work is in curating what users see, translating uncertainty into simple signals, and designing for reliable outcomes rather than exhaustive inspection. Drawing from shipped AI products and regulatory trends, Brent Haskins explains how selective disclosure earns trust more effectively than full transparency.

The short answer

Transparency does not automatically earn trust. Seth Godin made this clear in a recent post: in simple situations with obvious metrics—like voting audits—openness builds confidence. But in complex systems, walking through the complexity of how decisions are made can actually reduce trust. Users don’t have the mental model to interpret raw machinery. Seeing the sausage being made doesn’t make them hungrier; it makes them queasy.

For product engineers building AI interfaces, this is the single most underappreciated design lesson. The prevailing assumption is that more data, more reasoning, and more insight into the model’s inner state will make users feel in control. It doesn’t. It creates noise, anxiety, and second-guessing. Your job isn’t to expose the internals—it’s to translate them into judgment. The most trusted interfaces are those that reduce cognitive load, not those that maximize data exposure.

Key takeaways

  • Transparency earns trust only when the audience can correctly interpret the information shown. In AI products, that condition rarely holds.
  • Showing confidence scores, token probabilities, or step-by-step reasoning often backfires—users fixate on the uncertainty instead of the outcome.
  • The best AI interfaces hide complexity behind simple, reliable outputs. ‘I don’t know’ is a product quality, not a failure mode.
  • Regulatory pressure pushes for transparency (e.g., Reg S-P breach notifications), but smart product teams translate compliance into human-readable summaries, not unfiltered data dumps.
  • The real work is curating what the user sees: progressive disclosure, implicit confidence cues, and always a clear next action.
  • Trust is built by outcomes, not inspection. A system that always works is trusted more than one that explains why it might be wrong.

The transparency paradox in AI product design

Godin’s example of voting is instructive. Audit trails and inspectability make elections trustworthy because any citizen can, in theory, verify the count. But that works only because the process is finite, the metrics are clear, and the observer knows what ‘correct’ looks like. AI systems are the opposite: probabilistic, opaque, and non-deterministic. Showing the user that the model is 73% confident doesn’t help them decide whether to trust the answer. It just introduces a number they have no way to evaluate.

I’ve shipped AI products where we initially displayed confidence bars and reasoning trace. User testing told a different story: people either ignored them, misread them as accuracy percentages, or stopped trusting the system entirely when they saw any number below 90%. We removed the bars and instead redesigned the output to say “Here’s what I found” with supporting citations only when the model was above a high-confidence threshold. Trust scores went up. The product felt smarter.

When transparency works and when it backfires

There are two conditions under which transparency builds trust: when the information is self-evident (the user can immediately verify it) and when the user has sufficient domain expertise. For example, showing a citation for a medical claim to a doctor is trust-building. Showing the same citation to a patient may be overwhelming. The product engineer must decide based on audience and context.

In practice, this means designing for the least expert user who needs to act. Don’t default to total transparency. Instead, use progressive disclosure: expose details only when the user asks or when they need them to make a decision. This is not hiding—it’s editing. A dashboard that shows every API call and every model score is less useful than one that shows three actionable numbers. The trust comes from the clarity of the action, not the volume of data.

Designing for trust through selective disclosure

So how do you build trust without full transparency? Start with the contract: what does the interface promise, and what can the backend prove? Every output should have a clear default action. If the AI recommends a mortgage product, show the recommendation and one key reason. If the user wants more, they can click to expand. Never dump the raw feature weights.

Implicit confidence cues work better than explicit numbers. Use language: “Based on the available data, this is the most likely match.” Use visual hierarchy: high-confidence results get prominent placement; uncertain results get smaller, less prominent treatment. Use fallbacks: when confidence is low, offer a fallback path (e.g., “I couldn’t find a perfect match; here are the closest options.”) Every ambiguous state is a design opportunity to preserve trust.

Don’t overlook the role of errors. A well-designed error state—clear, apologetic, with a next step—builds more trust than a vague success message. Users forgive failure when the system is honest about its limits and helps them recover. That’s the real transparency: transparency of intent, not of machinery.

The regulatory angle and product responsibility

Regulations like the SEC’s Reg S-P (now in effect for smaller entities as of June 2026) require breach notifications and privacy disclosures. These mandate transparency, but they don’t dictate how to present it. A product engineer’s job is to take a compliance requirement and turn it into a usable interface. Don’t dump the legal text. Design a notification that says what happened, what data was affected, what is being done, and what the user should do next. That’s transparency that actually helps.

The same principle applies to AI regulations emerging around synthetic media and intimate-image complaints (see the Privacy Filter from June 2026). Playbooks for logging and repeat uploads must be surfaced to users in digestible formats. Raw logs destroy trust. Curated summaries with clear actions build it.

Conclusion: The product engineer’s judgment call

Seth Godin’s post is essential reading because it breaks the dogma that transparency is always virtuous. In product design, especially in AI, your most valuable skill is knowing what to show and what to hide. That’s not deception; it’s design. It’s the same skill as knowing when to surface a warning versus when to just handle the problem silently.

Next time you’re tempted to show confidence scores, pause. Ask yourself: Does this help the user make a better decision? If the answer isn’t a confident yes, hide it. Then test. Then trust your users’ actual behavior, not your assumptions about transparency.

Questions people ask about this topic.

Does full transparency always increase user trust?

No. In complex domains like AI, users often lack the mental model to interpret raw information. Showing confidence scores or token probabilities can reduce trust because users see numerical uncertainty they cannot contextualize. Trust is built through consistent, correct outcomes and clear next actions, not through exposing system internals.

How do you balance regulatory transparency requirements with good UX?

Translate compliance into user-facing summaries rather than dumping raw data. For example, instead of a full audit log, provide a human-readable timeline of key events with plain-language explanations. Design for the user's needs, not the regulator's format. Always test with real users to see what actually builds understanding and confidence.

What is the best way to present AI uncertainty to users?

Use implicit signals rather than numeric probabilities. Say 'Based on the available data, I recommend…' when confidence is high. When uncertain, offer 'I'm not sure, but here's what I found' with clear next steps. Avoid displaying raw confidence scores—they invite misinterpretation. Let the interface's behavior (suggestions, fallbacks, confirmations) convey certainty naturally.

Referenced sources