EveryDev.ai
Subscribe
Home
Tools

3,804+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2782
  • Coding1973
  • Infrastructure825
  • Projects603
  • Marketing598
  • Research520
  • Analytics468
  • Design462
  • MCP419
  • Testing346
  • Security323
  • Data305
  • Integration224
  • Prompts220
  • Communication210
  • Extensions196
  • Learning179
  • Voice175
  • Commerce160
  • DevOps135
  • Web95
  • Finance31
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. openheim
    openheim icon

    openheim

    Agent Frameworks

    A fast, multi-provider LLM agent runtime built in Rust that runs as an interactive TUI, headless CLI, ACP stdio agent, or self-hosted WebSocket server.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Fully free and open source under the MIT license. Install via cargo, Docker, or build from source.

    Engagement

    Available On

    Linux
    API
    VS Code
    JetBrains
    SDK

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Agent FrameworksMCP IntegrationCommand Line Assistants

    Alternatives

    CrabTalkTambo AInanobot
    Developer
    weirdstuff.devweirdstuff.dev builds openheim, a fast, multi-provider LLM a…

    Listed Sep 2026

    About openheim

    Openheim is an open-source, multi-provider LLM agent runtime written in Rust, published under the MIT license. It runs an iterative agent loop — calling an LLM, executing tools on its behalf, feeding results back, and repeating until a task is complete. The project is maintained by weirdstuff.dev and is available on crates.io as well as via Docker or source build.

    What It Is

    Openheim is a general-purpose LLM agent that can be deployed in four distinct modes from a single binary: an interactive terminal UI (TUI), a headless CLI for one-shot prompts, an ACP stdio agent for editor integrations, or a self-hosted ACP-over-WebSocket server. It is provider-agnostic, supporting OpenAI, Anthropic Claude, Google Gemini, Ollama, vLLM, LM Studio, and any OpenAI-compatible endpoint. The agent loop, tool execution, conversation memory, and MCP integration are all shared across every run mode — no code changes needed when switching deployment targets.

    Architecture and Run Modes

    The single openheim binary exposes four entry points:

    • Interactive TUI — a ratatui-based terminal UI with theming, session restore (:sessions), and live context-size tracking in the footer
    • Headless CLI (openheim run) — streams a single prompt to stdout; supports model overrides and skill flags
    • ACP stdio agent (openheim acp) — implements the Agent Client Protocol over stdio for native editor integration with Zed, JetBrains, and any ACP-compatible client
    • Self-hosted server (openheim serve) — exposes ACP over a multiplexed WebSocket plus a REST API on port 1217; multiple clients connect simultaneously with isolated session contexts

    The Rust implementation is highlighted for low memory footprint, fast startup, true concurrency, and memory safety by default.

    Built-in Tools and MCP Extension

    Openheim ships eight built-in tools available to the LLM: execute_command, read_file, write_file, edit_file, list_dir, search (ripgrep-style), web_fetch, and delegate_task for subagent delegation. Shell execution is disabled by default and must be explicitly enabled via allow_shell = true. File access is sandboxed to a configurable work_dir.

    External tools are added by connecting MCP servers in config.toml — both stdio and Streamable HTTP transports are supported. Tools are auto-discovered at startup and namespaced as server__tool, requiring no code changes.

    Skills System and Conversation Memory

    The skills system lets users drop Markdown files into ~/.openheim/skills/ and reference them by name with --skills. They are injected into the system prompt at runtime after the agent's base identity (system.md). Default skills can be set in config.toml to auto-load every session; ACP clients can also pass skills per-session via the _meta field.

    Every conversation — including full tool call history — is persisted to disk as JSON in ~/.openheim/history/. Sessions can be resumed from the TUI, headless CLI, or over ACP with session/load, continuing exactly where they left off.

    Deployment Options

    Openheim supports four deployment paths:

    • Local binary — cargo install openheim from crates.io, or build from source
    • Docker — multi-stage Dockerfile with a Compose file; mount a volume for history persistence
    • Cloud / self-hosted — deploy the binary or Docker image on any Linux host (Fly.io, Railway, EC2, Raspberry Pi) behind a reverse proxy
    • Rust library — embed the full agent runtime in any Rust application via the openheim crate with default-features = false to exclude TUI and server dependencies

    Update: v0.9.0

    The latest release is v0.9.0, published on September 1, 2026. The repository was created in January 2026 and has seen active development, with the most recent push on the same date as the v0.9.0 release. The crates.io page lists the current library version as 0.6 for embedding, while the binary release tracks the v0.9.x series. The project direction signals continued investment in ACP transport, MCP integration, and the Rust library embedding path.

    openheim - 1

    Community Discussions

    Be the first to start a conversation about openheim

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

    Pricing

    OPEN SOURCE

    Open Source

    Fully free and open source under the MIT license. Install via cargo, Docker, or build from source.

    • Full agent runtime with TUI, CLI, ACP, and server modes
    • Multi-provider LLM support
    • Built-in tools and MCP integration
    • Conversation memory and session persistence
    • Skills system

    Capabilities

    Key Features

    • Multi-provider LLM support (OpenAI, Anthropic, Gemini, Ollama, vLLM, LM Studio)
    • Interactive TUI with theming and session restore
    • Headless CLI for one-shot prompts
    • ACP stdio agent for editor integration (Zed, JetBrains)
    • Self-hosted ACP-over-WebSocket server with REST API
    • Built-in tools: shell execution, file read/write/edit, directory listing, ripgrep search, web fetch, subagent delegation
    • MCP (Model Context Protocol) integration via stdio and Streamable HTTP
    • Skills system: inject Markdown files into system prompt
    • Persistent conversation memory with session resume
    • Agent sandboxing with configurable work-directory boundary
    • Subagent delegation with named profiles and inline one-off agents
    • Context-size tracking per session
    • Retry with exponential backoff for transient failures
    • Docker-ready with multi-stage Dockerfile and Compose
    • Embeddable as a Rust library via openheim crate
    • Provider-agnostic config with one-line switching

    Integrations

    OpenAI
    Anthropic Claude
    Google Gemini
    Ollama
    vLLM
    LM Studio
    Azure OpenAI
    AWS Bedrock
    Zed editor
    JetBrains IDEs
    MCP servers (stdio and Streamable HTTP)
    Docker
    systemd
    nginx
    Caddy
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

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

    Developer

    weirdstuff.dev

    weirdstuff.dev builds openheim, a fast, multi-provider LLM agent runtime written in Rust. The team focuses on developer tooling that runs anywhere — from local terminals to self-hosted cloud deployments — with no vendor lock-in. openheim is open source under the MIT license and published on crates.io.

    Read more about weirdstuff.dev
    WebsiteGitHub
    1 tool in directory

    Similar Tools

    CrabTalk icon

    CrabTalk

    An tiny 8 MB agent daemon that manages sessions, dispatches commands, and streams events — install, attach, and build your own AI stack with no telemetry or vendor lock-in.

    Tambo AI icon

    Tambo AI

    An open-source generative UI toolkit for React that lets you build AI agents that render and stream your own components based on user intent.

    nanobot icon

    nanobot

    Ultra-lightweight, open-source personal AI agent with persistent memory, multi-channel chat, MCP support, and long-horizon task execution.

    Browse all tools

    Related Topics

    Agent Frameworks

    Tools and platforms for building and deploying custom AI agents.

    679 tools

    MCP Integration

    Tools for integrating MCP with existing AI systems and applications.

    94 tools

    Command Line Assistants

    AI-powered command-line assistants that help developers navigate, search, and execute terminal commands with intelligent suggestions and context awareness.

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