agentkernel 0.18.1

Run AI coding agents in secure, isolated microVMs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Daemon mode for Firecracker VM pool management.
//!
//! The daemon maintains a pool of pre-warmed Firecracker VMs for fast execution.
//! The CLI connects to the daemon via Unix socket to acquire VMs from the pool.

mod client;
mod health;
mod pool;
mod protocol;
mod server;

pub use client::DaemonClient;
pub use pool::PoolConfig;
pub use server::DaemonServer;