AgentTier — Summary
AgentTier is a Kubernetes-native control plane that provisions isolated, persistent sandbox environments for AI agents and human developers, managed declaratively through Custom Resource Definitions (CRDs). Each sandbox is a Kubernetes pod backed by a persistent volume and a per-sandbox NetworkPolicy; stopping a sandbox deletes the pod but preserves the filesystem so work survives across sessions. The platform targets sub-second cold starts (~800 ms) via warm pools, optional immediate PVC binding, and image pre-pull DaemonSets, eliminating the typical 10+ second pod scheduling latency. Security posture is locked-down by default: non-root user, read-only root filesystem, all capabilities dropped, seccomp RuntimeDefault, and optional gVisor RuntimeClass for kernel-level isolation of untrusted LLM-generated code. Agent mode allows a configured entrypoint to be invoked over Server-Sent Events via /invoke, with per-sandbox concurrency throttling, 30-minute per-invoke timeout, and full OpenTelemetry + Prometheus instrumentation. A Go binary (agenttier) and Python SDK (pip install agenttier) provide CLI and programmatic access; a browser-based web dashboard handles sandbox cards, template management, governance policies, and a hierarchical workspace file browser.
Differs from seeds: No seed in the catalog is infrastructure-level; all 11 seeds (superpowers, spec-kit, claude-flow, openspec, BMAD-METHOD, taskmaster-ai, agent-os, kiro, ccmemory, claude-conductor, spec-driver) operate at the agent-loop layer — they inject instructions or tooling into an already-running LLM session. AgentTier sits below the agent loop: it owns lifecycle, auth, transport, audit, and governance of the container/pod that the agent runs inside. The closest structural parallel is kiro's "Closed IDE" archetype (both provide a managed execution environment), but AgentTier is purely infrastructure — it does not prescribe prompts, hooks, or skills; it delegates those to whatever agent framework the operator installs in the sandbox image.