Documentation
OpenClaw Integration
Add eir-open skills to your OpenClaw AI agent.
Add eir-open medication lookups and health data parsing to your OpenClaw agent. Your AI can then answer medication questions, look up drug interactions, and work with Health.md files.
Prerequisites
- OpenClaw installed
- Node.js 18+ (for medication skills)
Quick install
Add both medication skills with one-liners:
openclaw skill add us-medicationsopenclaw skill add swedish-medicationsSkill-by-skill
US Medications
81,212 FDA medications with drug interaction checking.
# From npm (recommended)openclaw skill add us-medications
# Or from URLopenclaw skill add https://eir-space.github.io/eir-open/projects/us-medications/skill.mdSwedish Medications
9,064 Swedish pharmaceuticals from FASS with brand-to-substance mapping.
# From npm (recommended)openclaw skill add swedish-medications
# Or from URLopenclaw skill add https://eir-space.github.io/eir-open/projects/swedish-medications/skill.mdHealth.md Parser
Parse and analyze Health.md files. Requires manual setup:
pip install health-md pyyaml beautifulsoup4Then add the skill from the health-md-standard openclaw-skill directory, or configure manually in ~/.openclaw/config.yaml.
Config reference
Example ~/.openclaw/config.yaml with all eir-open skills:
skills: - us-medications - swedish-medicationsVerify
Ask your OpenClaw agent:
- “What is paracetamol?” (Swedish Medications)
- “Look up lisinopril” (US Medications)
- “What are the drug interactions for warfarin?” (US Medications)
Troubleshooting
OpenClaw not found
Install OpenClaw first: openclaw.ai
Skill not found
If the package alias is unavailable, add the skill directly from URL:
openclaw skill add https://eir-space.github.io/eir-open/projects/us-medications/skill.md# oropenclaw skill add https://eir-space.github.io/eir-open/projects/swedish-medications/skill.mdNode.js version
Medication skills require Node.js 18+. Check with node -v. Install via brew install node if needed.