TopRank Skills

Home / Claw Skills / Git / GitHub / maccabi-pharm-search
Official OpenClaw rules 54%

maccabi-pharm-search

Search for medications and check real-time stock availability at Maccabi pharmacies in Israel. Use when searching for drugs like "nurofen", "acamol/אקמול", "advil", or finding nearby pharmacy branches with stock. Supports Hebrew and English drug names. מכבי פארם, תרופות, מלאי, בית מרקחת.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 maccabi-pharm-search 技能。 若已安装,则直接安装 maccabi-pharm-search 技能。

Overview

Skill Key
alexpolonsky/maccabi-pharm-search
Author
Alex Polonsky (https://github.com/alexpolonsky)
Source Repo
openclaw/skills
Version
2.0.0
Source Path
skills/alexpolonsky/maccabi-pharm-search
Latest Commit SHA
de4125f38446208a515538db4ddb32af25ad1c7a

Extracted Content

SKILL.md excerpt

# Maccabi Pharmacy Stock Check

Search medications and check **real-time stock availability** at Maccabi Pharm locations across Israel.

> **Disclaimer**: This is an unofficial tool, not affiliated with or endorsed by Maccabi Healthcare Services. Stock information queries APIs that power the website and may not reflect actual availability. Always call the pharmacy to confirm stock before visiting. This tool is provided "as is" without warranty of any kind. Use at your own risk.

## Quick Start

```bash
# 1. Search for medication (get the Largo code)
node {baseDir}/scripts/pharmacy-search.js search "nurofen"
# Returns: Largo Code 58299 for NUROFEN LIQUID 20 CAP

# 2. Check which pharmacies have it in stock
node {baseDir}/scripts/pharmacy-search.js stock 58299
# Returns: Pharmacies with addresses, phones, stock status
```

## Commands

| Command | Description |
|---------|-------------|
| `search <query>` | Find medications, get Largo codes |
| `stock <largo_code> [city]` | Check real-time inventory at pharmacies |
| `branches maccabi [city]` | Get pharmacy locations |
| `cities` | Show all 51 available city codes |
| `test` | Quick functionality check |

## Search Examples

```bash
# Hebrew searches
node {baseDir}/scripts/pharmacy-search.js search "אקמול"
node {baseDir}/scripts/pharmacy-search.js search "נורופן"

# English searches
node {baseDir}/scripts/pharmacy-search.js search "acamol"
node {baseDir}/scripts/pharmacy-search.js search "nurofen"
```

## Stock Check by City

```bash
# Tel Aviv (default, city code 5000)
node {baseDir}/scripts/pharmacy-search.js stock 58299

# Jerusalem (city code 3000)
node {baseDir}/scripts/pharmacy-search.js stock 58299 3000

# Haifa (city code 4000)
node {baseDir}/scripts/pharmacy-search.js stock 58299 4000
```

## City Codes

Common examples (51 cities supported):

| City | Code |
|------|------|
| Tel Aviv | 5000 (default) |
| Jerusalem | 3000 |
| Haifa | 4000 |
| Beer Sheva | 9000 |
| Bat Yam | 6200 |
| Netanya | 7400 |

Run `ci...

README excerpt

# Maccabi pharmacy stock check - search prescription medication stock at every nearby branch

![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)
![Agent Skills](https://img.shields.io/badge/Agent%20Skills-compatible-purple)

> **[Agent Skills](https://agentskills.io) format** - works with OpenClaw, Claude, Cursor, Codex, and other compatible clients

Search for medications and check real-time stock availability at Maccabi Pharm locations in Israel.

## The problem

You need a prescription medication. You go to Maccabi's website, search for the drug, pick a pharmacy - out of stock. Pick another - also out of stock. Try a third. Meanwhile, the branch two blocks away had it the whole time.

With this tool installed, your AI assistant can check every Maccabi Pharm branch in your city in one search. Ask it the morning you're planning to go, and know exactly which pharmacy has your medication before you leave the house. You can also set up a cron job or scheduled reminder to check stock automatically - no manual searching at all.

## Installation

```bash
npx skills add alexpolonsky/agent-skill-maccabi-pharm-search
```

<details>
<summary>Manual install (any agent skills client)</summary>

```bash
# OpenClaw
git clone https://github.com/alexpolonsky/agent-skill-maccabi-pharm-search ~/.openclaw/skills/maccabi-pharm-search

# Claude
git clone https://github.com/alexpolonsky/agent-skill-maccabi-pharm-search ~/.claude/skills/maccabi-pharm-search

# Cursor
git clone https://github.com/alexpolonsky/agent-skill-maccabi-pharm-search ~/.cursor/skills/maccabi-pharm-search
```

</details>

<details>
<summary>Standalone CLI</summary>

No installation required - just run with Node.js:

```bash
git clone https://github.com/alexpolonsky/agent-skill-maccabi-pharm-search
cd agent-skill-maccabi-pharm-search
node scripts/pharmacy-search.js search "nurofen"
```

Requires Node.js 16+ with no external dependencies.

</details>

## What you can ask

> "Is Nurofen in stock at a...

Related Claw Skills