Packages

Provider-agnostic Elixir client for agent runtimes — one Session loop, any loop host: server-side (Anthropic Claude Managed Agents, AWS Bedrock AgentCore) or in-process (Local, over any OpenAI-compatible chat endpoint). Your tools run locally.

Current section

Files

Jump to
req_managed_agents priv runtime_bootstrap mise_install.sh.eex
Raw

priv/runtime_bootstrap/mise_install.sh.eex

#!/usr/bin/env bash
set -euo pipefail
export LC_ALL=C.UTF-8 LANG=C.UTF-8
command -v mise >/dev/null 2>&1 || curl -fsSL https://mise.jdx.dev/install.sh | sh
export PATH="$HOME/.local/bin:$HOME/.local/share/mise/shims:$PATH"
<%= for entry <- entries do %>mise use --global <%= entry %>
<% end %>mise install
grep -q 'mise activate-rma' ~/.bashrc 2>/dev/null || cat >> ~/.bashrc <<'RMA_BASHRC'
# mise activate-rma
export PATH="$HOME/.local/bin:$HOME/.local/share/mise/shims:$PATH"
export LC_ALL=C.UTF-8 LANG=C.UTF-8
RMA_BASHRC