AIAny
AI Agent2024
Icon for item

Jido

Elixir-native autonomous agent framework that models state changes as pure cmd/2 operations and describes side effects with typed directives; integrates with OTP supervision and optional LLM plugins for AI-driven agents.

Introduction

Most multi-agent setups on the BEAM end up mixing process plumbing, ad-hoc message shapes, and side-effect code inside callbacks. Jido flips that by making agent logic pure data transformations (cmd/2) and pushing effects into a directive layer interpreted by an OTP runtime. That separation gives deterministic command semantics for testing while keeping production-grade supervision and routing.

What Sets It Apart
  • Pure cmd/2 contract: agents are immutable data structures where actions return an updated agent plus a list of directives. So what: makes agent behaviour testable without processes and simplifies reasoning about state changes.
  • Directive-based effects: side effects (emit, spawn, schedule, stop, etc.) are described, not executed, by agent logic. So what: runtime choice is decoupled from business logic, enabling different execution/hosting strategies and safer testing.
  • OTP-first runtime integration: built-in AgentServer, parent/child hierarchies, and signal routing strategies. So what: you get familiar BEAM supervision and lifecycle semantics for long-running, multi-tenant, or partitioned deployments.
  • Optional AI integration via companion packages (jido_ai, req_llm): LLMs are an add-on, not baked into core. So what: teams can adopt AI tooling incrementally without coupling core orchestration to any single model provider.
Who It's For — and Tradeoffs

Great fit if you need deterministic, testable agent logic that will run as long-lived BEAM services, coordinate multiple cooperating agents, or require clear separation between decision logic and execution. It favors Elixir/OTP idioms and assumes teams comfortable with functional patterns and supervision trees. Look elsewhere if you need a drop-in, out-of-the-box LLM orchestration platform with UI-first tooling (Jido focuses on the agent architecture and runtime, not on visual authoring), or if your stack is not on the BEAM — adopting Jido implies Elixir/Erlang runtime commitment.

Where It Fits

Jido sits between low-level GenServer implementations (where teams build custom agent patterns) and heavier orchestration platforms: it formalizes agent patterns (signals, actions, directives) while remaining lightweight and composable, making it a good choice for engineering teams building resilient, long-running automation or multi-agent workflows on the BEAM.

Information

  • Websitegithub.com
  • AuthorsMike Hostetler (agentjido)
  • Published date2024/12/16

Categories

More Items

Turns fragile, implicit search progress into explicit, persistent, shared state for multi-agent information seeking — externalizes progress as Frontier Task, Evidence Graph, Coverage Map and Failure Memory, and uses pipeline-parallel scheduling plus a middleware harness to avoid repeated failed searches and improve utilization and throughput.

GitHub
AI Agent2026

Provides a lightweight Python harness that turns LLMs into working agents with tool-use, skills, persistent memory, permission controls and multi-agent coordination. Ships with a CLI/React TUI, 43+ built-in tools, a plugin/skill system and the ohmo personal-agent for chat gateways. Best for developers prototyping agent workflows and multi-agent experiments.

GitHub
AI Client2025

Turns Chromium into a local-first AI browser with an embedded assistant that can summarise pages, extract structured data, automate web tasks, and run scheduled agents. Built as an open-source Chromium fork with 53+ built-in browser tools, 40+ app integrations, and support for BYO AI keys or fully local models (Ollama / LM Studio).