Public render safety checks protect the line between editing a page and visiting it. Visitors should get clean HTML, not admin controls, field paths, permissions, workspace state, package internals, or signed preview URLs.
Capell treats that line as part of the product contract. Editors work in Filament. Developers build widgets and themes. The public response still has to be visitor-safe, application-owned, and testable.
What to look for in a render review
- Only public content and public URLs appear in the HTML.
- Widget output is sanitized where editors can enter rich content.
- Package-provided output follows the same rules as first-party output.
- Caches and previews do not mix draft state with published pages.
This is one of the places where Capell should be strict. If the frontend is clean, visitors never need to know how the page was edited.