What problem does it solve? Developers working on the Threaded Stack codebase need to understand how the sandbox execution layer isolates and runs agent-generated code across local V8 isolates and Kubernetes pods without reading all 42 source files. ## Core Features & Use Cases - Architecture Reference: Explains the factory pattern behind createSandboxProvider, the ISandboxProvider interface, and both Local and Kube provider implementations. - Component Deep Dives: Covers KubeClient pod operations, IsolateRunner with 14 Node.js shims, virtual git with 22 subcommands via isomorphic-git, and pod manifest generation. - Use Case: When adding a new sandbox provider or debugging why evaluate() fails in a Kubernetes pod, consult this knowledge base to locate the right module, understand the security model, and follow established patterns like graceful degradation and lazy initialization. ## Quick Start Ask the AI to explain how the sandbox provider factory works or how to add a new sandbox provider type to the execution layer.