AI SummaryA skill for looking up Swedish medication information from the official FASS database, helping users understand dosages, side effects, interactions, and prescriptions in Sweden.
Install
Copy this and paste it into Claude Code, Cursor, or any AI assistant:
I want to install the "swedish-medications" skill in my project. Please run this command in my terminal: # Install skill into the correct directory mkdir -p .claude/skills/swedish-medications && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/swedish-medications/SKILL.md "https://raw.githubusercontent.com/BirgerMoell/swedish-medications/main/SKILL.md" Then restart Claude Code (or reload the window in Cursor) so the skill is picked up.
Description
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.
Capabilities
• Search medications by name (brand or generic/substance) • Multi-result search for category queries ("show me insulin medications") • Get detailed info: dosage, side effects, interactions, contraindications • Swedish health context: ATC codes, prescription status, regional recommendations • FASS links for official information
Swedish Medications Skill
Look up information about medications approved in Sweden using FASS (the official Swedish pharmaceutical database).
Quick Start
CLI lookup: `bash fass-lookup paracetamol fass-lookup Alvedon fass-lookup "alvedon 500mg" ` Node.js usage: `javascript 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); // Multi-result search console.log(searchMedications('insulin', 5)); // Database stats console.log(getDatabaseStats()); ` Direct script (dev/test): `bash node scripts/fass_lookup.js "paracetamol" `
Basic Lookup
When a user asks "What is Alvedon?" or "Tell me about paracetamol": • Run the lookup script with the medication name • Present key info: what it's for, dosage, common side effects • Include the FASS link for official information
Discussion
Health Signals
My Fox Den
Community Rating
Sign in to rate this booster