gno.sh home

Public URL

AI Due Diligence Atlas

A polished subset of research notes designed for client-facing reading, navigation, and lightweight search.

Snapshot v1 · Published Apr 18, 2026, 10:39 AM

Latency Budget For Reader Pages

Performance targets for the publication layer and where to spend the budget.

Publish pages should feel instant. The reader should spend time with ideas, not with spinners.

First render< 1s

Cold public page on median network

Route transition< 120ms

Within a published collection

Budget split

  1. Precompute note summaries, outlines, backlinks, and related notes.
  2. Keep interaction islands tiny and deliberate.
  3. Treat search as lexical and subset-bound in v1.
Snapshot payload shape
type PublishSnapshot = {
  id: string
  noteIds: string[]
  visibility: "public" | "secret-link"
  assetManifest: Array<{ storageKey: string }>
}