EveryDev.ai
Subscribe
Home
Tools

3,484+ 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. hotcell
    hotcell icon

    hotcell

    AI Infrastructure

    Self-hosted sandbox daemon for AI agents that keeps provider API keys off the sandbox, enforces hard spend caps, and supports Docker, Firecracker, and Apple VZ isolation tiers.

    Visit Website

    At a Glance

    Pricing
    Open Source
    Free tier available

    One daemon, one host, unlimited sandboxes. Every containment guarantee included. Apache-2.0, free forever.

    hotcell Cloud: Custom/contact

    Engagement

    Available On

    Windows
    macOS
    Linux
    API
    SDK

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    AI InfrastructureAgent FrameworksAutonomous Systems

    Alternatives

    forkdCubeSandboxNemoClaw
    Developer
    sinamerajiTokyo, JapanEst. 2021

    Listed Aug 2026

    About hotcell

    hotcell is an Apache-2.0 CLI daemon that provisions isolated sandboxes for AI agents on hardware you already own — a Mac Mini, a Linux VM, or bare metal. It is built and maintained by a single developer (sinameraji on GitHub) and ships as a single npm package that includes the CLI, daemon, and TypeScript SDK, with a Python SDK available separately.

    What It Is

    hotcell sits in the category of self-hosted agent sandbox infrastructure. Its core job is to run AI coding agents — Claude Code, Codex, OpenCode, Mastra, and others — in isolated environments where the real provider API key never enters the sandbox, spending is hard-capped, and egress can be locked down to a gateway allowlist. The daemon manages a fleet of sandboxes on one host, with admission control that refuses to over-subscribe rather than OOM-ing the machine.

    Containment Model

    Every outbound model call from a sandbox flows through a single egress gateway on the daemon. The gateway enforces three layers of containment:

    • Key isolation: Real provider keys (OpenAI, Anthropic, OpenRouter, GitHub, etc.) live on the daemon. Each sandbox is minted a short-lived, revocable per-sandbox token (hc-…) at creation time. The gateway swaps that token for the real key on the way out. Destroying the sandbox revokes the token in the same step.
    • Spend control: Hard USD spend caps per sandbox, model and provider allowlists, sliding-window rate limits, and token TTLs prevent runaway costs.
    • Egress lockdown: Default-deny egress is kernel-enforced on Linux containers (host iptables) and enforced by construction on microVMs with no NIC (vsock is the only route out). On macOS Docker Desktop the policy is advisory — the gateway, caps, and metering still apply, but raw packets are not dropped at a host firewall.

    Isolation Tiers

    hotcell exposes three isolation drivers behind one interface:

    • Docker containers — fastest, highest density, shared host kernel.
    • Firecracker microVMs — Linux/KVM, VM-grade isolation; warm pools adopt a pre-booted VM in ~7 ms; full-VM snapshots resume in ~80 ms.
    • Apple VZ microVMs — macOS, same daemon-level parity; microVM guests have no network device by default, making egress denied by construction.

    All three tiers support persistent /workspace volumes, streamed exec with persistent shell sessions, preview URLs via an L4 proxy, stateful code interpreter (Python and JS), pause/resume, backup/restore, and per-sandbox CPU/mem/net metrics with OpenTelemetry export.

    Workflow: Fleet Operations

    A typical multi-agent workflow uses a single command to spin up N isolated cells, each with the same repo cloned into its own workspace on its own branch, and the chosen agent preinstalled:

    hotcell create -n 5 --name feat --branch --egress \
        --repo https://github.com/me/app --setup "npm i -g opencode-ai"
    hotcell terminal <id>   # inside: cd app && opencode
    hotcell rm --all        # done — 5 cells gone, repo untouched
    

    Git push works keylessly out of the box because each cell's origin is wired through the gateway automatically. The TUI fleet view shows live CPU, memory, and cost per cell.

    Update: v0.1.23

    The latest release is v0.1.23, published on 2026-07-29. The project was created in June 2026 and has been actively updated, with the last push recorded on 2026-08-01. The homepage notes a hotcell Cloud coordination layer (central key vault, org-wide egress policy, per-team spend quotas, SSO, and audit) is in early-access waitlist stage — the self-hosted daemon remains Apache-2.0 and free with no feature gates.

    Deployment Model and Tradeoffs

    hotcell is single-tenant by design: anyone who can reach the daemon API controls the sandboxes, so the daemon should be bound to loopback or protected with an API key. It does not protect non-HTTP protocols (Postgres, Redis, MongoDB), AWS SigV4 request-signing schemes, or mTLS/client certificates — credentials for those must be injected directly. SDKs that hardcode their provider host bypass the gateway unless HOTCELL_EGRESS_ENFORCE is set to deny those calls outright.

    hotcell - 1

    Community Discussions

    Be the first to start a conversation about hotcell

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

    Pricing

    OPEN SOURCE

    Open Source

    One daemon, one host, unlimited sandboxes. Every containment guarantee included. Apache-2.0, free forever.

    • Unlimited sandboxes on one host
    • All isolation tiers: Docker, Firecracker, Apple VZ
    • Key vaulting and per-sandbox revocable tokens
    • Hard spend caps and egress lockdown
    • TypeScript SDK and Python SDK

    hotcell Cloud

    Coordination layer for fleets: central key vault, org-wide egress policy, per-team spend quotas, SSO, and audit. Runs against your own hardware. Early access waitlist.

    Custom
    contact sales
    • Central key vault
    • Org-wide egress policy
    • Per-team spend quotas
    • SSO
    • Audit logs
    • Runs on your own hardware
    View official pricing

    Capabilities

    Key Features

    • Isolated sandboxes for AI agents on self-hosted hardware
    • Provider API key never enters sandbox — per-sandbox revocable tokens only
    • Hard USD spend caps per sandbox
    • Model and provider allowlists
    • Sliding-window rate limits and token TTLs
    • Three isolation tiers: Docker, Firecracker microVMs, Apple VZ microVMs
    • Warm pool VM adoption in ~7ms; full-VM snapshot resume in ~80ms
    • Default-deny egress (kernel-enforced on Linux; advisory on macOS Docker)
    • Persistent /workspace volumes across stop/start/daemon restarts
    • Streamed exec with persistent shell sessions
    • Preview URLs via L4 proxy to any sandbox port
    • Stateful Python and JS code interpreter
    • Pause/resume with full-VM snapshots
    • Backup and restore
    • Per-sandbox CPU/mem/net metrics and LLM cost metering
    • OpenTelemetry export
    • Fleet TUI with live cost per cell
    • Admission control to prevent host over-subscription
    • Keyless git push through gateway
    • TypeScript SDK included; Python SDK via pip
    • REST API for all commands
    • Guided interactive setup wizard
    • Bulk .env import with per-variable gateway/inject/skip review

    Integrations

    OpenAI
    Anthropic
    OpenRouter
    Google
    GitHub
    Stripe
    Slack
    Cloudflare
    Claude Code
    Codex
    OpenCode
    Mastra
    Docker
    Firecracker
    Apple VZ
    Colima
    OrbStack
    Podman
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

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

    Developer

    sinameraji

    hotcell is built and maintained by a single developer, sinameraji, who describes the project as "built by one person and a fleet of contained agents." The project ships a self-hosted sandbox daemon for AI agents under the Apache-2.0 license, with a TypeScript-primary codebase and a Python SDK. The developer accepts GitHub Sponsors and actively maintains the repository with frequent releases.

    Founded 2021
    Tokyo, Japan
    1 employees
    Read more about sinameraji
    WebsiteGitHub
    1 tool in directory

    Similar Tools

    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.

    CubeSandbox icon

    CubeSandbox

    A high-performance, hardware-isolated sandbox service for AI agents built on RustVMM and KVM, with sub-60ms cold start and E2B SDK compatibility.

    NemoClaw icon

    NemoClaw

    An open-source reference stack by NVIDIA for running OpenClaw always-on AI assistants more safely inside hardened OpenShell sandboxes with managed inference routing.

    Browse all tools

    Related Topics

    AI Infrastructure

    Infrastructure designed for deploying and running AI models.

    343 tools

    Agent Frameworks

    Tools and platforms for building and deploying custom AI agents.

    595 tools

    Autonomous Systems

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

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