From israel-agent-skills
Use when the user wants to check whether a medicine is available through Maccabi Healthcare Services (מכבי שירותי בריאות) — whether it is listed, whether it is prescription-only (POM, מרשם), whether it is included in the health basket / sal briut (סל הבריאות, subsidised), its out-of-pocket price to the patient, and a link to the patient information leaflet (עלון לצרכן) if one is published. Drives the Maccabi medicines guide at https://www.maccabi4u.co.il/healthguide/medicines/ via a visible Playwright browser, searches by medicine name using the autocomplete search box, and extracts the key fields from the medicine detail page. Trigger phrases: "is this med on maccabi", "check maccabi for [drug]", "is X in the sal briut", "how much does X cost on maccabi", "maccabi medicine lookup", "find [drug] on maccabi".
npx claudepluginhub danielrosehill/claude-code-plugins --plugin israel-agent-skillsThis skill uses the workspace's default tool permissions.
Looks up a medicine on the Maccabi Healthcare Services public medicines guide and reports back the facts the user actually cares about:
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.
Looks up a medicine on the Maccabi Healthcare Services public medicines guide and reports back the facts the user actually cares about:
Open the medicines guide landing page:
https://www.maccabi4u.co.il/healthguide/medicines/
Individual medicine pages follow the pattern:
https://www.maccabi4u.co.il/healthguide/medicines/%D7%AA%D7%A8%D7%95%D7%A4%D7%95%D7%AA/<id>/
(%D7%AA%D7%A8%D7%95%D7%A4%D7%95%D7%AA = תרופות / "medicines"). The trailing numeric id is Maccabi's internal med id — there's no predictable mapping from drug name to id, so always reach the page via search.
The site uses a physical search box with autocomplete — pasting a URL-encoded query into the address bar does not work. The skill must:
fill) so the autocomplete dropdown populates. Hebrew and English names both work; prefer whatever the user supplied.If there is no autocomplete match, report that back — Maccabi does not list it under that name. Offer the user the chance to try an alternative spelling (Hebrew vs. transliteration, brand vs. generic).
Example detail pages used as references:
https://www.maccabi4u.co.il/healthguide/medicines/%D7%AA%D7%A8%D7%95%D7%A4%D7%95%D7%AA/92793/https://www.maccabi4u.co.il/healthguide/medicines/%D7%AA%D7%A8%D7%95%D7%A4%D7%95%D7%AA/35659/https://www.maccabi4u.co.il/healthguide/medicines/%D7%AA%D7%A8%D7%95%D7%A4%D7%95%D7%AA/80895/Section heading on the page: תנאים ואישורים. Under it, the site indicates:
Capture the text verbatim in Hebrew, and provide a short English gloss in the report.
At the bottom of the page there is a price block when a price is published. The only figure the user cares about is the price the patient actually pays (usually labelled מחיר לצרכן / מחיר לחולה / "price to consumer"). Ignore the reference-price / formulary computations, ceiling prices, pharmacist margins, etc.
If no price is shown, say so explicitly — don't invent one.
Detail pages often include a link to the patient information leaflet — typically labelled עלון לצרכן or עלון למטופל, often pointing at a PDF on the Israeli Ministry of Health site. If present, return the absolute URL. If absent, say so.
Report back in a short structured block. Example:
Medicine: <name as shown on Maccabi>
Maccabi page: <detail URL>
Prescription-only (מרשם): yes / no
In health basket (בסל הבריאות): yes / no [+ any indication restriction text]
Price to patient: ₪<amount> (or "not published")
Patient leaflet (עלון לצרכן): <URL or "not listed">
Raw "תנאים ואישורים" text: <verbatim Hebrew>
alert / confirm dialogs. If a dialog-like modal appears, close it via its own close button, not by pressing Enter.