From israel-agent-skills
Look up an Israeli medication on drug.co.il (the drug-information site of the Israeli Pharmacists Organization, ארגון הרוקחות בישראל). Returns structured JSON — Hebrew + English name, manufacturer, active ingredients, ATC code, dosage/usage form, prescription status, health-basket inclusion (סל הבריאות), approved indication, equivalent drugs (generics), and links to MOH-hosted patient leaflets in Hebrew/English/Arabic. Use when the user asks about an Israeli medication by Hebrew or English brand name, generic name, or active ingredient.
npx claudepluginhub danielrosehill/claude-code-plugins --plugin israel-agent-skillsThis skill uses the workspace's default tool permissions.
`drug.co.il` is the drug-information site of **ארגון הרוקחות בישראל** (Pharmacists Organization of Israel). Each drug has a public page with manufacturer, active ingredient, ATC, dosage form, prescription/OTC status, health-basket inclusion, approved indication, list of equivalent drugs (same active ingredient, different brand/dose), and links to the official MOH patient leaflet PDFs in Hebrew/...
Mandates invoking relevant skills via tools before any response in coding sessions. Covers access, priorities, and adaptations for Claude Code, Copilot CLI, Gemini CLI.
Share bugs, ideas, or general feedback.
drug.co.il is the drug-information site of ארגון הרוקחות בישראל (Pharmacists Organization of Israel). Each drug has a public page with manufacturer, active ingredient, ATC, dosage form, prescription/OTC status, health-basket inclusion, approved indication, list of equivalent drugs (same active ingredient, different brand/dose), and links to the official MOH patient leaflet PDFs in Hebrew/English/Arabic.
Always search first when the user gives a name — slug guessing with percent-encoded Hebrew is fragile. The site uses WordPress search (?s=<query>), minimum 3 characters, matches Hebrew name, English name, or active ingredient.
python3 skills/drug-co-il-lookup/scripts/lookup.py search "ליסין"
python3 skills/drug-co-il-lookup/scripts/lookup.py search "lisdexamfetamine"
Returns JSON array of {name, url}. Pick the best match (or present options to the user if ambiguous — multiple doses of the same drug each have their own page, e.g. ליסין 30 / 50 / 70 מ"ג).
Fetch the structured record for a specific drug page URL.
python3 skills/drug-co-il-lookup/scripts/lookup.py fetch "https://drug.co.il/drugs/<slug>/"
Returns a Drug JSON object with the fields listed above plus raw_text (cleaned page text) as a fallback in case a selector breaks — you can answer from raw_text if a structured field comes back null.
in_health_basket (סל הבריאות) is the Israeli-context-critical field — whether the drug is subsidized under the national health basket. Surface it.dispensing (תנאי ניפוק) tells you prescription vs OTC.approved_indication field is the official English indication text — quote it verbatim rather than paraphrasing medical claims.mohpublic.z6.web.core.windows.net (Israeli Ministry of Health). Offer the Hebrew leaflet by default, English/Arabic on request.consumer_prices is often "לא נמצא מידע" (no data) — the site does not reliably carry prices.maccabi-medicine-lookup skill (or analogous Kupah skills) instead.requests and beautifulsoup4. Both are available in the user's default Python environment.