EveryDev.ai
Subscribe
Home
Tools

3,697+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2189
  • Coding1574
  • Infrastructure698
  • Marketing534
  • Projects498
  • Research456
  • Design416
  • Analytics389
  • Testing296
  • MCP290
  • Security286
  • Data262
  • Integration197
  • Prompts189
  • Communication183
  • Extensions173
  • Learning170
  • Voice151
  • Commerce135
  • DevOps123
  • Web86
  • Finance26
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. kern
    kern icon

    kern

    Autonomous Systems
    Featured

    A fast, rootless sandbox and virtual resource runtime for any workload, including untrusted and AI-generated code, delivered as a single 1.52 MB static binary with no daemon.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Fully free and open source under the Apache-2.0 license. All features included.

    Engagement

    Available On

    Windows
    Linux
    API
    SDK
    CLI

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Autonomous SystemsAI InfrastructureMCP Servers

    Alternatives

    NucleusforkdInstaVM
    Developer
    getkernEst. 2026

    Listed Aug 2026

    About kern

    kern is a daemonless, rootless container runtime and sandbox written in Rust, distributed as a single 1.52 MB static binary under the Apache-2.0 license. It starts a kernel-enforced container from an OCI image in approximately 3.5 ms — roughly two orders of magnitude faster than Docker or Podman — with zero resident memory when idle. The project is maintained by Alex (@realexhub) under the getkern GitHub organization, with v0.7.0 as the first published release.

    What It Is

    kern occupies an unusual position: it is simultaneously a container runtime, a sandbox, a resource slicer, and a stack runner, all in one binary with no daemon to install or manage. Its entire Rust dependency tree is a single crate (libc); JSON and OCI manifests are parsed by hand rather than through bundled libraries. The result is a tool that runs on Linux, Windows via WSL2, and ARM boards (Raspberry Pi, NVIDIA Jetson, Arduino UNO Q) from the same static binary.

    Core capabilities include:

    • Real OCI containers: pull, build from a Dockerfile, commit, push, save/load — a box from an image starts in ~3.5 ms
    • Always-rootless sandboxing: user, PID, mount, network, UTS, and IPC namespaces; overlay or read-only root; deny-by-default seccomp allowlist; cgroup v2 limits; --security-profile untrusted bundles the full hardened set in one flag
    • Resource profiles: vcpu: (CPU + memory), vdisk: (size-capped scratch disk), and vgpio: (device nodes) declared once in kern.toml and attached by name to any box or bare process
    • Stack support: kern compose reads kern-compose.toml or an existing docker-compose.yml with no conversion step
    • Tooling: ps, logs, exec, stats, inspect, wait, top (live TUI), doctor, plus Python and Node SDKs and an MCP server

    Performance and Architecture

    The project publishes benchmark numbers measured on an Intel i7-14700KF running Linux 7.0.0. According to those figures, kern's cold start for a bare box is ~2.3 ms, matching bubblewrap and sitting roughly 125× faster than runc (~18.6 ms) and ~130× faster than Podman or Docker (~293–297 ms). Spawning 200 boxes in parallel takes ~0.11 s versus ~44.8 s for Podman and ~16.2 s for Docker. A live box consumes ~0.3 MB of memory, and the process has zero resident memory when nothing is running.

    The architecture deliberately avoids linking a TLS stack: pull shells out to curl and tar already present on the machine. The binary is 1.52 MB in the size-optimized release build and 1.91 MB when built from source with cargo install.

    Embedding and MCP Integration

    kern ships a Python package (kern-sandbox on PyPI) and a Node package (also kern-sandbox on npm) that wrap the binary for embedding in agent or LLM-generated code workflows. Each call runs in a fresh isolated box with network off, memory and PID caps, capabilities dropped, output bounded, and a caller-enforced timeout. Faults — timeouts, OOM kills, blocked syscalls — are returned as data fields rather than exceptions.

    The package also ships kern-mcp, a dependency-free stdio MCP server that exposes run_code (Python/bash/Node), write_file, read_file, and list_files to any MCP client such as Claude Desktop or Cursor. Each tool call runs in a fresh network-off box; files persist across calls in a workspace on disk.

    Security Model and Tradeoffs

    kern's security documentation is explicit about its boundaries. The isolation boundary is the Linux kernel, not a hypervisor, so a kernel privilege-escalation bug is an escape — a condition shared with Docker and Podman. Its isolation relies on unprivileged user namespaces, which the project's SECURITY.md describes as "a fertile source of kernel LPE bugs." The project includes four adversarial pentest suites in pentest/ that assert boundaries against the kernel rather than against kern's own reporting.

    Key security mechanisms: 16 dangerous capabilities dropped before exec, an always-on seccomp allowlist (moby's default filter minus 35 escape syscalls that are hard-killed), cgroup v2 limits with --require-limits enforcement, and a deny-by-default /dev. Where a boundary is cooperative rather than kernel-enforced, the documentation names the bypass explicitly.

    kern is not intended for hostile code from strangers in multi-tenant environments on a shared kernel — the project states this directly. It targets workloads where the operator chooses to run untrusted or AI-generated code and owns the blast radius: agent tool-calls, CI jobs, build steps, and code cells.

    Update: v0.7.0 — First Published Release

    v0.7.0, published on 2026-08-24, is the first public release of kern. The project states that the core is complete and all documented features work today, validated by 848 Rust tests, 78 Python tests, and 61 Node tests on real hardware including Linux, WSL2, Raspberry Pi 5, Jetson Orin Nano, and Arduino UNO Q. The CLI and configuration surface are not frozen and may change before 1.0, with all changes called out in CHANGELOG.md. The release tag is GPG-signed and independently timestamped; commits themselves are not signed.

    kern - 1

    Community Discussions

    Be the first to start a conversation about kern

    Share your experience with kern, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Fully free and open source under the Apache-2.0 license. All features included.

    • Single static binary, no daemon
    • Rootless OCI container runtime
    • Resource profiles (vcpu, vdisk, vgpio)
    • docker-compose.yml support
    • Python and Node SDK

    Capabilities

    Key Features

    • Rootless, daemonless container runtime in a single 1.52 MB static binary
    • ~3.5 ms cold start from an OCI image, ~2.3 ms for a bare box
    • Full OCI image support: pull, build, commit, push, save, load
    • Always-on seccomp allowlist with deny-by-default /dev
    • -security-profile untrusted flag bundles full hardened sandbox
    • Resource profiles: vcpu:, vdisk:, vgpio: declared in kern.toml
    • docker-compose.yml support with no conversion step
    • Live TUI (kern top) for boxes, CPU/RAM, profiles, volumes
    • Python and Node SDK (kern-sandbox) for embedding in agent workflows
    • MCP server (kern-mcp) for Claude Desktop, Cursor, and other MCP clients
    • JSON output for all read verbs (ps, stats, inspect, etc.)
    • Landlock LSM support for confining process writes
    • cgroup v2 limits with --require-limits enforcement
    • Four adversarial pentest suites included in the repository
    • kern doctor pre-flight check before running boxes
    • Runs on Linux, WSL2, Raspberry Pi, NVIDIA Jetson, Arduino UNO Q
    • Zero resident memory when idle
    • GPG-signed release tags with provenance

    Integrations

    Docker Compose (docker-compose.yml read as-is)
    OCI image registries (pull/push)
    Claude Desktop (via MCP server)
    Cursor (via MCP server)
    Python (kern-sandbox PyPI package)
    Node.js (kern-sandbox npm package)
    WSL2
    Alpine Linux
    nginx
    postgres
    Dockerfile build support
    cgroup v2
    seccomp
    Landlock LSM
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

    Be the first to rate kern and help others make informed decisions.

    Developer

    getkern

    getkern builds kern, a fast rootless sandbox and virtual resource runtime for running untrusted and AI-generated code safely. The project is maintained by Alex (@realexhub) and distributed as a single static binary under the Apache-2.0 license. kern targets agent tool-calls, CI jobs, build steps, and code interpreter workloads where daemonless, kernel-enforced isolation at millisecond latency matters.

    Founded 2026
    1 employees
    Read more about getkern
    WebsiteGitHub
    1 tool in directory

    Similar Tools

    Nucleus icon

    Nucleus

    Extremely lightweight, security-hardened, declarative container runtime for Linux, designed for AI agent sandboxes and production NixOS services.

    forkd icon

    forkd

    A microVM sandbox runtime for AI agent fan-out that forks 100 children in ~100ms from a warm parent snapshot using Firecracker and copy-on-write memory.

    InstaVM icon

    InstaVM

    Instant cloud infrastructure for AI agents — hardware-isolated microVMs with runtime, storage, networking, secrets injection, and egress control.

    Browse all tools

    Related Topics

    Autonomous Systems

    AI agents that can perform complex tasks with minimal human guidance.

    395 tools

    AI Infrastructure

    Infrastructure designed for deploying and running AI models.

    364 tools

    MCP Servers

    Model Context Protocol servers that extend AI capabilities.

    206 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions