Install
Use this when you need to install ilo on a specific platform. Pick the section that matches who’s running it.
For agents
Section titled “For agents”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 and process builtins (get, pst, run, $) are not yet supported.
Agent skills (npx skills)
Section titled “Agent skills (npx skills)”npx skills add ilo-lang/iloInstall via the skills npm package (for Claude Code and AI agent workflows). Installs the ilo Agent Skill into any compatible agent environment.
Other 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.
For humans
Section titled “For humans”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.exenpm / 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.
From source
Section titled “From source”# From crates.iocargo install ilo
# From gitcargo install --git https://github.com/ilo-lang/iloVerify installation
Section titled “Verify installation”ilo 'dbl x:n>n;*x 2' 5# → 10