Turn your OpenClaw agent into an evidence-based supplement expert
The SupStack OpenClaw skill gives your agent access to 225 supplements, 8,020+ peer-reviewed studies, and 33 commands — covering everything from evidence lookup to structured experiments. Works on any messaging platform connected to OpenClaw. Free to use, no API key needed.
Search 225 supplements with evidence scores, dosing protocols, mechanisms, and safety ratings.
Get ranked recommendations for 27 health goals — weighted by evidence quality and your profile.
Check drug interactions, supplement combos, and contraindications with severity levels.
Submit your full stack for synergy detection, gap analysis, and redundancy flagging.
Structured supplement trials — baseline, weekly check-ins, and automated verdicts.
Generate an optimal daily schedule based on absorption, food requirements, and spacing rules.
Track new studies on your supplements via cron — get proactive alerts when research drops.
Remembers your stack, medications, goals, conditions, and preferences across sessions.
brew install jqDownload the skill files and place them in your OpenClaw skills folder:
# Create the skill directory
mkdir -p ~/.openclaw/skills/supstack/scripts
mkdir -p ~/.openclaw/skills/supstack/templates
mkdir -p ~/.openclaw/skills/supstack/cron
# Download the core files
curl -o ~/.openclaw/skills/supstack/SKILL.md https://supstack.me/openclaw/SKILL.md
curl -o ~/.openclaw/skills/supstack/scripts/supstack.sh https://supstack.me/openclaw/scripts/supstack.sh
curl -o ~/.openclaw/skills/supstack/templates/profile.md https://supstack.me/openclaw/templates/profile.md
curl -o ~/.openclaw/skills/supstack/cron/research-monitor.json https://supstack.me/openclaw/cron/research-monitor.jsonbash ~/.openclaw/skills/supstack/scripts/supstack.sh search magnesiumYou should see JSON results. If so, the skill is ready — just message your agent.
The skill understands natural language, but here are the 33 commands available through the helper script:
| info <slug> | Full supplement profile |
| search <query> | Search supplements by name, category, or effect |
| protocol <slug> | Dosing protocol (dose, timing, form, cycling) |
| studies --supplement=<slug> | Studies for a specific supplement |
| match <goal1> [goal2] [goal3] | Goal-based matching (weighted) |
| recommend --goals=.. --stack=.. | Smart recommendations (stack-aware) |
| safety <slug> | Safety profile and contraindications |
| interactions <slug> [medication] | Drug/supplement interactions |
All skill files are hosted publicly. Use these URLs for manual installation or to inspect the source.
The SupStack API is public at supstack.me/api/v1 — 17 GET endpoints, no authentication required. Full documentation is available in API Reference.
The AI assistant provides information based on published research. It is not a substitute for professional medical advice. Always consult a qualified healthcare provider before starting, stopping, or changing any supplement or medication. See our Terms of Service for full details.
| interactions-multi <s1> <s2> |
| Cross-check multiple items |
| synergies <slug> | Synergy lookup |
| profile | Show full profile |
| profile-update <section> <content> | Replace a profile section |
| profile-add <section> <line> | Append to a section |
| profile-stack-slugs | Extract supplement slugs from stack |
| experiment-start <slug> <goal> | Start a new experiment |
| experiment-baseline <id> <data> | Record baseline measurements |
| experiment-checkin <id> <data> | Record a check-in |
| experiment-evaluate <id> | Compute experiment verdict |
| timing-optimize [slugs] | Optimal timing schedule |
| monitor-setup <slug1,slug2,...> | Set up monitoring |
| monitor-check | Check for new studies (cron calls this) |
| monitor-status | Show what is being monitored |
| monitor-add <slug> | Add a supplement to monitoring |
| profile.md | Profile template | View |
| research-monitor.json | Cron config | View |
| BRIEFING.md | Developer briefing | View |