Look up Swedish medication information from FASS (Farmaceutiska Specialiteter i Sverige). Use when users ask about medications, drugs, läkemedel, dosages, side effects (biverkningar), interactions, or need to understand prescriptions in Sweden. Covers all medications approved for use in Sweden.
Look up information about medications approved in Sweden using FASS (the official Swedish pharmaceutical database).
CLI lookup:
fass-lookup paracetamol
fass-lookup Alvedon
fass-lookup "alvedon 500mg"
Codex app install (local):
# Clone the repo
git clone https://github.com/birgermoell/swedish-medications.git
# Copy into Codex skills directory
mkdir -p ~/.codex/skills
cp -R swedish-medications ~/.codex/skills/swedish-medications
Then restart the Codex app. The skill will appear as Swedish Medications in the skills list.
Notes:
SKILL.md and agents/openai.yaml from ~/.codex/skills/swedish-medications.~/.codex/skills/ and restart Codex.Node.js usage:
const { lookupMedication, findMedication, searchMedications, getDatabaseStats } = require('swedish-medications');
// Formatted markdown output
console.log(lookupMedication('Alvedon'));
// Raw data
const med = findMedication('ibuprofen');
console.log(med.dose); // "Adult: 200-400mg every 4-6h, max 1200mg/day (OTC)"
// Multi-result search
console.log(searchMedications('insulin', 5));
// Database stats
console.log(getDatabaseStats());
When a user asks "What is Alvedon?" or "Tell me about paracetamol":
When a user asks "Can I take X with Y?":
When a user asks about dosing:
When a user asks "What ADHD medications are available?" or "Search insulin medications":
lookupMedication(query: string): stringReturns formatted markdown with medication info and FASS link.
findMedication(query: string): object | nullReturns raw medication data object. Checks curated list first, then full database.
getFassUrl(query: string): stringReturns the FASS.se search URL for a query.
searchMedications(query: string, limit?: number): arrayReturns multiple matching medications (new in v2.0).
getDatabaseStats(): objectReturns { curated: 23, full: 9064, substances: 1353 }.
⚠️ Medical Disclaimer: This skill provides information only, not medical advice.