Blueprints
8 on record. Where a Field Note argues a position in about a thousand words, a Blueprint specifies one: a complete, versioned implementation specification for a single cross-cutting concern, with numbered requirements you can cite, test vectors you can run, and a conformance checklist you can grade yourself against.
They're written to be handed to whoever is building the thing — as a URL, with the instruction “implement this.” Increasingly that's a language model, and the format is shaped accordingly: self-contained, unambiguous, and testable. New here? Start with ZBP-0 for how they work.
Bundles
Several blueprints behind one URL, in dependency order — a bundle already includes everything its parts require. Start here if you're building a whole subsystem rather than one piece.
Multi-tenant SaaS: identity and isolation
Everything needed to stand up authentication and tenant isolation for a B2B SaaS product: the isolation boundary, the identity and membership model on top of it, and sender-constrained credentials for its machine callers.
/zbp/bundle/multi-tenant-saas.mdZBP-1 → ZBP-3 → ZBP-4Workload identity: an STS and the credentials it issues
Service-to-service authentication with no long-lived secrets: a token service bootstrapped from platform attestation, issuing short-lived tokens bound to a holder key.
/zbp/bundle/workload-identity.mdZBP-1 → ZBP-2
All blueprints
- A runtime for partitioned stateful servicesYour service holds per-key state in memory on exactly one instance at a time, and rollout, scaling and placement must move that ownership deliberately rather than restart it.
/zbp/5-partitioned-stateful-services/v1.mdpartitioned-statepartition-ownershiplive-state-handoffoperator-governed-placement - A review gate for infrastructure changeOne party proposes an infrastructure change and another decides whether it applies, through a pipeline or an approval step, and applying something other than what was reviewed would be a serious incident.
/zbp/6-review-gate-for-infrastructure-change/v1.mdinfrastructure-review-gateplan-artifact-integritymachine-assisted-approval - The cross-cutting contract of an API surfaceYou are designing a new API surface, or retrofitting a cross-cutting concern — idempotency, quota, regions, delegation, versioning — onto one that already has callers you cannot break.
/zbp/7-cross-cutting-api-contract/v1.mdapi-surface-contractidempotent-mutationsclient-state-tokenwork-based-quotarequest-archive