When an AI agent moves from a demonstration into a customer’s production tenant, the technical surface stays roughly the same — a container, an identity, a tool catalogue, a model deployment — but the obligations change category. Procurement, compliance, audit, and operations teams all start asking questions that have nothing to do with model accuracy. They ask about traceability, signing, provenance, rollback, and what happens on the day the agent does something unexpected. This series catalogues the eight architectural decisions that decide whether those questions have good answers.

Each chapter is written to be read independently. Chapters can be skimmed in twenty minutes apiece; together they form a coherent template for shipping any agentic AI workload to a customer environment, regardless of the cloud, the framework, or the model provider.

Foundations

Architecture

Operations

How to use this series

If you are starting a new agent project, read in order. The decisions in chapters 1 to 5 compound — the right delivery model makes the chain-of-custody chapter trivial; the signed-image appliance gives the pin file something meaningful to point at; the bootstrap-repo architecture stops the pin file from leaking source.

If you have an existing agent shipping today and you want to improve what you have, start at chapter 2 (chain of custody) and chapter 7 (pre-flight hygiene). Both are inexpensive to retrofit and pay back the first time an auditor or a procurement team asks “how do you know what is running?”

If your CI is blocked by enterprise policy and that is why your release is stuck, jump to chapter 6.

About this series

This series is vendor-neutral. It uses container images, OCI registries, Sigstore signing, SLSA provenance, CycloneDX and SPDX SBOMs, and OAuth token-exchange flows as its primitives because these are the open standards every modern release toolchain converges on. Where a worked example would help, the example is drawn from the public capabilities of a mainstream cloud (typically GitHub plus a managed container runtime), and the surrounding text explicitly notes that the pattern works the same way on every other major platform.

The references in each chapter point to a small, stable set of public sources — Sigstore, the SLSA framework, the OCI Image Specification, the OWASP and NIST AI risk materials, and the relevant IETF RFCs — chosen because they are the sources procurement, audit, and regulators are most likely to ask about.

More field guides