Why does this URL look weird?
The long part after the # (which starts with a one-character codec tag) is the artifact itself, compressed into the URL fragment so a static host can show it without receiving the content in the page request.
Shape
https://agent-render.com/#a<compressed-payload>
Everything before # loads the app. Everything after # stays in the browser and tells the app what to render.
Version
The payload format version lets old and new links fail clearly instead of guessing.
Compression
Codecs such as deflate and arx keep markdown, code, diffs, CSV, and JSON inside a shareable fragment budget.
Retention boundary
The static host does not receive fragment contents during the page request. The link is still not a secret: browser history, copied URLs, screenshots, logs from tools that inspect the full URL, and future client-side analytics can expose it.
When to use which link
A normal page URL asks the server for a route. An agent-render URL also carries a compressed artifact after the hash mark. Browsers do not send that hash to the server in the initial request, so the static app loads first and then decodes the artifact locally.
Use fragment links for quick static sharing. Use the optional self-hosted UUID mode when the payload is too large, the target chat app mangles long links, or you need a short URL and accept server-side storage.