Show HN: Jido 2.0, Elixir Agent Framework

(jido.run)

106 points | by mikehostetler 2 hours ago

13 comments

  • mmcclure 1 hour ago
    I haven't used Jido for anything yet, but it's one of those projects I check in on once a month or so. BEAM does seem like a perfect fit for an agent framework, but the ecosystem seeming limited has held me back from going too far down that path. Excited to see 2.0!

    Just a heads up, some of your code samples seem to be having an issue with entity escaping.

        name: "my_agent",
        description: "A simple agent",
  • neya 10 minutes ago
    Love this! The timing couldn't be more perfect. I had to write my agent framework with a mix of gen servers and Oban. It's honestly a pain to deal with. This looks like it will really remove a lot of pain for development. Thank you so much!
  • klocksib 1 hour ago
    The site seems to be getting hugged to death, here's the archive.org backup:

    https://web.archive.org/web/20260305161030/https://jido.run/

    • memco 35 minutes ago
      Not sure if related, but the page loads fine and then after a few seconds refreshes into a 404. I gave up trying to read the article.
      • brabel 16 minutes ago
        For me it just seems to keep refreshing for no reason so the page keeps jumping around. Also had to give up.
      • mmcclure 24 minutes ago
        I was seeing the same thing. Looking at the network tab, I suspect there's LiveView involved and that dying from load isn't getting handled well.
  • maxekman 29 minutes ago
    Thanks for sharing! I’ll definitely check it out.

    I just LLM-built an A2A package which is a GenServer-like abstraction. I however missed that there already was another A2A implementation for Elixir. Anyway, I decided to leave it up because the package semantics were different enough. Here it is if anyone is interested: https://github.com/actioncard/a2a-elixir

  • bhekanik 53 minutes ago
    Nice work shipping this.

    I’ve found the hardest part with agent frameworks isn’t model plumbing, it’s operational boundaries: how you isolate tools, enforce time/budget limits, and recover from partial failures when an agent call chain fans out.

    BEAM’s supervision model feels like a genuinely strong fit for that, especially if each tool execution can be treated as a supervised unit with clear restart/escalation semantics. Curious whether you’ve seen teams default to many small specialized agents vs fewer general agents with stricter policies.

  • malkosta 51 minutes ago
    How do you ensure security? Does it have a proper container? Otherwise, it's impossible to prevent leaking prod secrets.
  • davidw 1 hour ago
    It'd be cool to see a screenshot of what 'observer' shows as the process tree with a few agents active.

    Edit: for those not familiar with the BEAM ecosystem, observer shows all the running Erlang 'processes' (internal to the VM). Here are some examples screenshots on one of the first Google hits I found:

    https://fly.io/docs/elixir/advanced-guides/connect-observer-...

  • desireco42 16 minutes ago
    Huh... excellent timing. I am working on a project that currently is handling this with bunch od npm tasks :)(I know), but it works.

    Sidian Sidekicks, Obsidian vault reviewer agents.

    I think Jido will be prefect for us and will help us organize and streamline not just our agent interactions but make them more clear, what is happening and which agent is doing what.

    And on top of that, I get excuse to include Elixir in this project.

    Thanks for shipping.

  • carverauto 58 minutes ago
    Going to give it a shot this weekend
  • enraged_camel 1 hour ago
    Where does this stand in relation to LangChain? https://github.com/brainlid/langchain

    (Probably complimentary but wanted to check)

    • neya 7 minutes ago
      Elixir has a LangChain implementation by the same name. And in my opinion as a user of both, the Python version and the Elixir version, the Elixir version is vastly superior and reliable too.

      This agentic framework can co-exist with LangChain if that's what you're wondering.

      https://github.com/brainlid/langchain

    • mmcclure 47 minutes ago
      I went down this path a bit the other night, curious what OP's answer is. My mental model was that they could be complimentary? Jido for agent lifecycle, supervision, state management, etc, LangChain for the LLM interactions, prompt chains, RAG, etc. Looks like you could do everything in Jido 2.0, but if you like/are familiar with LangChain it seems like they could work well together.
  • StevenNunez 1 hour ago
    A library I'm excited to not vibecode against!
  • whalesalad 1 hour ago
    oh no did HN traffic defeat OTP
  • rvz 53 minutes ago
    Let me guess, in the next 6 months, Elixir and Erlang becoming fashionable to build AI agents and then another hype cycle of AI usage and marketing of Elixir.

    What's old is now rebranded, reheated and new again.

    • neya 1 minute ago
      Elixir has always been fashionable to build high performance systems in. In fact, it is more suited for AI applications than any other language or framework because of the BEAM architecture and the flexibility of the language itself. I wish more people gave it a chance. You get insane performance at your fingertips with so much scalability out of the box and your code by default is less error prone compared to dynamic languages.