What this is
This is the public v0.1 surface for The Edge That Thinks: a practical field guide for teams building AI products on edge-native infrastructure.
The premise is direct: a model call is not a product architecture. Production systems need explicit state ownership, durable units of work, governed tool access, retriable side effects, and observable routing decisions.
Free public edition
The landing page is intentionally useful without purchase. It publishes the introduction, Chapter 2, a production checklist, a reference architecture, and a dated release ledger.
Editable diagrams
Diagrams are committed as Mermaid source plus SVG output under /public/field-guide/figures. They are designed to remain legible in grayscale and avoid color-only meaning.
Checklist preview
The checklist is a launch conversation, not a maturity score. Start with these gates before adding model calls to production work.
Contract and state
- Is work a request, job, session, or workflow with explicit cancellation and terminal states?
- Is there one authoritative record and an idempotency key for every effect?
- Can duplicate delivery, timeout, partial completion, and retry converge safely?
Identity, models, and tools
- Is tenant scope resolved server-side for reads, retrieval, and tools?
- Are prompts, source data, derivatives, and telemetry separately classified?
- Can deletion reach artifacts, vectors, cache, and queued work?
Reliability and operations
- Can long work return an accepted job rather than an implausible finished response?
- Is large data kept out of queues and model context?
- Are downstream failures clear states rather than fabricated output?