jido
Enrichment pending🤖 Autonomous agent framework for Elixir. Built for distributed, autonomous behavior and dynamic workflows.
GraphCanon updated today · GitHub synced today
Verify the decision
Maintenance and security
Full trust report- Maintenance
- Very active (0d since push)
- As of today
- Provenance
- Not a fork · Organization account
- As of today
- Security (OSV)
- No lockfile
- As of today
Public GitHub metadata and optional OSV scans. Signals, not a guarantee. Trust methodology.
Install
git clone https://github.com/agentjido/jidoSimilar tools
Same-category neighbours. No typed graph edges are catalogued for this tool yet.
Evidence and technical details
Sourced facts, taxonomy, compatibility claims, README excerpt, and machine-readable endpoints.
Overview
🤖 Autonomous agent framework for Elixir. Built for distributed, autonomous behavior and dynamic workflows.
Capability facts
- Languages
- elixir
Source: github.language · Jul 15, 2026
Categories
Tags
README
Manual Installation
Add jido to your list of dependencies in mix.exs:
def deps do
[
{:jido, "~> 2.0"}
]
end
Then define a Jido instance module and add it to your supervision tree:
---
### Getting Started
**Q: How do I install Jido?**
A: Jido is available on Hex.pm:
```elixir
def deps do
[
{:jido, "~> 2.0"}
]
end
See jido.run for demos and examples.
Q: How do I create an agent?
A:
defmodule MyAgent do
use Jido.Agent,
name: "my_agent",
description: "My custom agent",
schema: [
count: [type: :integer, default: 0]
]
end
{agent, directives} = MyAgent.cmd(agent, action)
See hexdocs.pm/jido for API reference.
Q: How do I run agents in production?
A: Use AgentServer (GenServer-based) for production deployment:
- Parent-child agent hierarchies with lifecycle management
- Signal routing with configurable strategies
- Instance-scoped supervision plus logical partitions for multi-tenant deployments
License
Copyright 2024-2025 Mike Hostetler
Licensed under the Apache License, Version 2.0. See LICENSE for details.
For agents
This page has a .md twin and JSON over the API.