技能详情(站内镜像,无评论)
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v2.0.0
统计:⭐ 0 · 408 · 0 current installs · 0 all-time installs
⭐ 0
安装量(当前) 0
🛡 VirusTotal :良性 · OpenClaw :良性
Package:alexpolonsky/maccabi-pharm-search
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :良性
OpenClaw 评估
The skill's code, instructions, and requirements are consistent with its stated purpose: it queries public Maccabi Pharm API endpoints from Node.js, requires no credentials, and does not perform unexpected actions.
目的
The name/description (search Maccabi pharmacy stock) matches the included code and SKILL.md. The only required binary is node and the script calls Maccabi endpoints (serguide.maccabi4u.co.il), which is appropriate for this purpose.
说明范围
SKILL.md instructs the agent to run the included Node CLI to search and check stock; the instructions are scoped to those tasks and do not ask the agent to read unrelated files, access other credentials, or send data to third-party endpoints beyond the Maccabi API.
安装机制
No install spec is declared (instruction-only style), and the repository files are plain JS/README/SKILL.md; there are no external downloads, package installs, or archive extraction steps in the skill metadata to raise concern.
证书
The skill requests no environment variables or credentials. The code explicitly states 'NO AUTHENTICATION REQUIRED' and does not access secrets or config paths, which is proportionate to its function.
持久
The skill does not request always:true, does not modify other skills or system settings, and has no install-time persistence beyond being added to the agent's skill directory by the client; autonomous invocation is the platform default and not a separate red flag here.
综合结论
This skill appears coherent and limited to querying Maccabi's public APIs from Node.js. Before installing, consider: 1) the repository is unofficial—stock data may be inaccurate and the README disclaims no affiliation with Maccabi; verify the upstream GitHub source if authenticity matters. 2) The script sends HTTP(S) requests to serguide.maccabi4u.co.il (includes a browser-like User-Agent/Referer header to emulate a browser), which is expected…
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「maccabi-pharm-search」。简介:Search for medications and check real-time stock availability at Maccabi pharma…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/alexpolonsky/maccabi-pharm-search/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: maccabi-pharm-search
version: 2.0.0
description: 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. מכבי פארם, תרופות, מלאי, בית מרקחת.
author: Alex Polonsky (https://github.com/alexpolonsky)
homepage: https://github.com/alexpolonsky/agent-skill-maccabi-pharm-search
metadata: {"openclaw": {"emoji": "💊", "os": ["darwin", "linux"], "requires": {"bins": ["node"]}}}
---
# 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 `cities` command to see all 51 available city codes.
## Output Examples
**Search results:**
```
NUROFEN LIQUID 20 CAP
Largo Code: 58299 (use this for stock check)
Prescription: No
```
**Stock results:**
```
=== Stock Summary ===
In Stock: 6 pharmacies
Low Stock: 0 pharmacies
Out of Stock: 1 pharmacies
=== Pharmacies with Stock ===
מכבי פארם-ת"א-בלפור 10
בלפור 10, תל אביב - יפו
03-9193013
Distance: 0.6 km
```
## Notes
- Stock information queries APIs that power the website
- Only shows Maccabi Pharm locations (not other pharmacy chains)
- Largo code from search is required for stock check
- Data provided "as is" without warranty