Every team building on agents ends up rebuilding the same thing: durable state, a deterministic loop, fresh workers, independent verification, signed proof — always similar, always a little different, never a standard. The Frontier SDK is the installable plumbing for that harness — protocols, reducers, conformance tools, and adapters — so you assemble a governed deployment instead of redefining the standards, and build your application, not another bespoke agent loop.
SDK
Frontier SDK
The implementation family for the Frontier standards: install the pieces of a governed agent harness instead of rebuilding them from scratch. Versioned code owns protocol and scoring semantics so results stay comparable across model and host updates.
$npx -y @frontier-infra/audit run . --out ../frontier-audit-out
$npm install @frontier-infra/avl
The pieces of the puzzle
Each piece is independently useful; together they cover the whole journey — declare ground truth, keep workers honest, run the loop, watch its health, audit conformance, and sign the proof. Install what your deployment needs.
Runtime health
@frontier-infra/protocol
Types and a deterministic, fail-closed reducer for the four-layer runtime health record (process / scheduler / execution / governance) a Machine deployment emits. Python binding and golden cross-language fixtures live in the SDK repo.
Score a repository against The Machine's static conformance kit, bind the verdict to Git state, and optionally issue a signed AAR receipt. The evidence packet records the exact CLI version that produced it.
npx -y @frontier-infra/audit run <repo> --out <dir>
Plugins teach a host to use the stack — they never own protocol or scoring semantics. Both run the same published CLI, so a host update can change how the workflow is invoked without silently changing what a score means.
Claude Code
frontier-infra · frontier-audit
A ten-skill field kit for designing governed harnesses, plus an audit skill that runs the published @frontier-infra/audit CLI via npx — no bundled scoring rules in prompts, no bootstrap machinery.
Live · /plugin marketplace add frontier-infra/plugins
Locks the procedure. The record names the exact SDK version and scorer-policy hash.
Scores the repository. Versioned code runs the canonical static conformance kit against the target Git state.
Commits the evidence. JSON and Markdown output bind the verdict to the repository commit and dirty-tree state.
Optionally signs a receipt. A local signing key can issue an AAR that is immediately verified offline against the supplied DID document.
Roadmap
Packages are added only when they have an executable vertical slice — never as architecture placeholders. Next slices: the AAR signer/verifier as an npm package, the Python protocol binding on PyPI, and a contract schema for Box-0 goal contracts.
Questions, release issues, or sensitive reports? Start at Support. The local execution and data boundaries are documented in Privacy and Terms.