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.
How this skill is triggered — by the user, by Claude, or both
Slash command
/israel-agent-skills:drug-co-il-lookupThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
`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/...
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.
npx claudepluginhub danielrosehill/claude-code-plugins --plugin israel-agent-skillsGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.