Back to docs

Documentation

Quickstart

Get up and running with Eir Open in 30 seconds.

Get Eir Open installed and running quickly. Choose your path below.

Run the unified install script for an interactive menu:

Terminal window
bash <(curl -fsSL https://raw.githubusercontent.com/eir-space/eir-open/main/install.sh)

Installs medication skills, CBT programs module, Health.md, Eir Apps, and OpenClaw integration with an interactive menu. Requires macOS, Node.js 18+, and optionally Python 3.

Individual installs

Copy-paste the commands you need:

US Medications

Terminal window
npm install -g us-medications
us-medications "lisinopril"

Swedish Medications

Terminal window
npm install -g swedish-medications
fass-lookup paracetamol
fass-lookup Alvedon

Health.md Standard

Terminal window
pip install health-md pyyaml beautifulsoup4

CBT Programs Module

Terminal window
cd /path/to/eir-open
npm install -g ./skills/cbt-programs
cbt-programs list

LLM-assisted improve flow (host agent provides JSON plan):

Terminal window
cbt-programs improve cbt-insomnia \
--llm \
--llm-plan-file ./llm-improve-plan.json \
--dry-run

Eir Open Apps

  • macOS: Download Eir Viewer DMG
  • iOS: Build from source with Xcode 16+
  • Chrome Extension: Load unpacked from apps/eir-open-apps/ChromeExtension/

EIR Provider Directory

Terminal window
cd apps/eir-provider-directory
npm install
npm run dev

OpenClaw users

Add eir-open skills to your OpenClaw agent:

Terminal window
openclaw skill add us-medications
openclaw skill add swedish-medications

See the full OpenClaw Integration guide for details and the Health.md Parser skill.

Verify

After installing medication skills:

Terminal window
fass-lookup paracetamol
us-medications "lisinopril"
cbt-programs list

Next steps