06-reference

snap agent format

Fri Apr 03 2026 20:00:00 GMT-0400 (Eastern Daylight Time) ·article ·source: https://eng.snap.com/agent-format ·by Snap Engineering

Agent Format: A Declarative Standard for AI Agents

Summary

Snap’s engineering team proposes Agent Format, an open, vendor-neutral specification for defining AI agents declaratively via .agf.yaml files. Inspired by Kubernetes (declare desired state, system reconciles), the spec separates agent definitions from implementations. Built on POMDP decision theory, each schema maps identity, I/O contracts, capabilities (tools/MCP/sub-agents), execution strategy, and governance constraints. Six composable execution policies (react, sequential, parallel, loop, batch, conditional) cover most agent patterns. The killer feature: a “tighten-only invariant” where delegated sub-agents can only have stricter constraints, never relaxed ones.

Why This Was Bookmarked

“some thoughts from the Snapchat engineering team on how to structure agents”

Relevant to how we think about agent architecture in SOUL.md — particularly the layered execution model (skills, loops, dedicated instances, agent teams). Agent Format provides a formal specification for what we’re doing informally.

Key Ideas

Connections

Our layered execution model in SOUL.md (skills > loops > dedicated instances > agent teams) maps to their execution policies. We’re doing this informally through CLAUDE.md instructions; Agent Format would formalize it.

The tighten-only constraint pattern is relevant to 06-reference/2026-03-31-block-hierarchy-to-intelligence — as you delegate down the hierarchy, constraints should narrow, not widen.

The governance-by-construction approach connects to 04-tooling/2026-03-29-infrastructure-decisions — we should think about whether our agent constraints are auditable and machine-readable.

Open Questions