Installation
Claude Code (recommended)
Section titled “Claude Code (recommended)”/plugin marketplace add ilo-lang/ilo # add marketplace (once)/plugin install ilo-lang/ilo # install plugin + teach agent iloThe agent learns ilo automatically via the bundled Agent Skill.
Claude Cowork
Section titled “Claude Cowork”Browse Plugins → Add marketplace from GitHub → ilo-lang/ilo → install.
Binary auto-installs via npm. Note: Cowork uses the WASM build - HTTP builtins (get, $, post) are not yet supported.
npm / npx
Section titled “npm / npx”# Run without installingnpx ilo-lang 'dbl x:n>n;*x 2' 5
# Install globallynpm i -g ilo-langRequires Node 20+. Uses WASM - interpreter mode only, no HTTP builtins.
macOS / Linux
Section titled “macOS / Linux”curl -fsSL https://raw.githubusercontent.com/ilo-lang/ilo/main/install.sh | shWindows (PowerShell)
Section titled “Windows (PowerShell)”Invoke-WebRequest -Uri https://github.com/ilo-lang/ilo/releases/latest/download/ilo-x86_64-pc-windows-msvc.exe -OutFile ilo.exeFrom source
Section titled “From source”# From crates.iocargo install ilo
# From gitcargo install --git https://github.com/ilo-lang/iloOther agents (Codex, Opencode, etc.)
Section titled “Other agents (Codex, Opencode, etc.)”Copy skills/ilo/ into your agent’s skills directory. Any tool supporting the Agent Skills standard will pick it up.
Verify installation
Section titled “Verify installation”ilo 'dbl x:n>n;*x 2' 5# → 10