Install
openclaw skills install drug-safety-reviewComprehensive medication safety review system providing real-time analysis of drug-drug interactions, contraindications, allergy risks, and dosing optimizati...
openclaw skills install drug-safety-review🔥 限时优惠活动进行中!
⏰ 活动时间: 即日起至2026年3月31日
🎁 优惠内容:
- 新用户注册即送200次免费试用 (原价100次)
- 首次购买任意套餐,额外赠送20%积分
- 年付用户享受最高30%折扣
- 邀请好友各得100积分奖励
Version: 1.1.0
Category: Healthcare / Medical
Billing: SkillPay (1 token per call, ~0.001 USDT)
Free Trial: 10 free calls per user
Demo Mode: ✅ Available (no API key required)
AI-powered medication safety review system for healthcare providers, pharmacists, and patients. Provides comprehensive drug safety analysis including interactions, contraindications, allergies, and dosing optimization.
"这个技能帮我节省了80%的文档处理时间!" - 某三甲医院医生
"准确率很高,已经成为我们团队的必备工具。" - 某农业科技公司
| 套餐 | 积分 | 价格 | 赠送 | 节省 |
|---|---|---|---|---|
| 🥉 入门包 | 500 | 0.5 USDT | 0 | - |
| 🥈 热门包 | 2000 | 1.5 USDT | 200 | 6.7% |
| 🥇 专业包 | 10000 | 5 USDT | 1500 | 13% |
| 💎 企业包 | 50000 | 20 USDT | 10000 | 16.7% |
🔥 限时特惠: 首次购买任意套餐,额外赠送20%积分!
💡 温馨提示:
| 套餐 | 积分 | 价格 | 赠送 | 节省 |
|---|---|---|---|---|
| 🥉 入门包 | 500 | 0.5 USDT | 0 | - |
| 🥈 热门包 | 2000 | 1.5 USDT | 200 | 6.7% |
| 🥇 专业包 | 10000 | 5 USDT | 1500 | 13% |
| 💎 企业包 | 50000 | 20 USDT | 10000 | 16.7% |
🔥 限时特惠: 首次购买任意套餐,额外赠送20%积分!
💡 温馨提示:
If you find this skill helpful, you can support the developer:
EVM Address: 0xf8ea28c182245d9f66f63749c9bbfb3cfc7d4815
Your support helps maintain and improve this skill!
Try the skill without any API key:
python scripts/safety_review.py --demo
Demo mode returns realistic simulated drug safety reviews to demonstrate the output format.
Each user gets 10 free calls before billing begins. During the trial:
{
"success": True,
"trial_mode": True, # Currently in free trial
"trial_remaining": 9, # 9 free calls left
"balance": None, # No balance needed in trial
"review": {...}
}
After 10 free calls, normal billing applies.
python scripts/safety_review.py --demo
from scripts.safety_review import review_medications
import os
# Set environment variables
os.environ["SKILLPAY_API_KEY"] = "your-api-key"
os.environ["SKILLPAY_SKILL_ID"] = "your-skill-id"
# Review patient medications
result = review_medications(
medications=[
{"drug": "warfarin", "dose": "5mg", "frequency": "daily"},
{"drug": "amoxicillin", "dose": "500mg", "frequency": "q8h"}
],
allergies=[
{"allergen": "penicillin", "reaction": "anaphylaxis"}
],
patient_data={
"age": 65,
"weight": 75,
"renal_function": {"egfr": 45}
},
user_id="user_123"
)
# Check result
if result["success"]:
print("安全状态:", result["review"]["safety_status"])
print("警报数量:", len(result["review"]["alerts"]))
for alert in result["review"]["alerts"]:
print(f"- [{alert['severity']}] {alert['title']}")
else:
print("错误:", result["error"])
if "paymentUrl" in result:
print("充值链接:", result["paymentUrl"])
python scripts/safety_review.py --search "metformin"
python scripts/safety_review.py --list-drugs
# Chinese output (default)
python scripts/safety_review.py --demo --language zh
# English output
python scripts/safety_review.py --demo --language en
This skill requires the following environment variables:
| Variable | Description | Required | Example |
|---|---|---|---|
SKILLPAY_API_KEY | Your SkillPay API key for billing | After trial | skp_abc123... |
SKILLPAY_SKILL_ID | Your Skill ID from SkillPay dashboard | After trial | skill_def456... |
| Variable | Description | Default |
|---|---|---|
DRUG_DATABASE_PATH | Path to custom drug database | - |
ENABLE_ALTERNATIVE_SUGGESTIONS | Enable alternative therapy suggestions | true |
See .env.example for a complete list of environment variables.
The skill uses SkillPay billing integration:
SKILLPAY_API_KEY environment variableSKILLPAY_SKILL_ID environment variable| Level | Name | Description | Action |
|---|---|---|---|
| 1 | Critical | Life-threatening, immediate action required | Avoid combination |
| 2 | Major | Significant risk, strong recommendation | Consider alternatives |
| 3 | Moderate | Potential risk, monitoring required | Monitor closely |
| 4 | Minor | Limited clinical significance | Routine monitoring |
"这个技能帮我节省了80%的文档处理时间!" - 某三甲医院医生
"准确率很高,已经成为我们团队的必备工具。" - 某农业科技公司
| 套餐 | 积分 | 价格 | 赠送 | 节省 |
|---|---|---|---|---|
| 🥉 入门包 | 500 | 0.5 USDT | 0 | - |
| 🥈 热门包 | 2000 | 1.5 USDT | 200 | 6.7% |
| 🥇 专业包 | 10000 | 5 USDT | 1500 | 13% |
| 💎 企业包 | 50000 | 20 USDT | 10000 | 16.7% |
🔥 限时特惠: 首次购买任意套餐,额外赠送20%积分!
💡 温馨提示:
| 套餐 | 积分 | 价格 | 赠送 | 节省 |
|---|---|---|---|---|
| 🥉 入门包 | 500 | 0.5 USDT | 0 | - |
| 🥈 热门包 | 2000 | 1.5 USDT | 200 | 6.7% |
| 🥇 专业包 | 10000 | 5 USDT | 1500 | 13% |
| 💎 企业包 | 50000 | 20 USDT | 10000 | 16.7% |
🔥 限时特惠: 首次购买任意套餐,额外赠送20%积分!
💡 温馨提示:
The skill includes a built-in drug database for quick lookups:
from scripts.safety_review import search_drug_info
# Search for drug information
drug_info = search_drug_info("metformin")
if drug_info:
print(f"Drug: {drug_info['name']}")
print(f"Category: {drug_info['category']}")
print(f"Indications: {drug_info['indications']}")
print(f"Common doses: {drug_info['common_doses']}")
print(f"Major interactions: {drug_info['major_interactions']}")
This tool is for clinical decision support only and does not replace professional pharmacist or physician judgment. Always verify recommendations with qualified healthcare providers.
System Limitations:
SKILLPAY_API_KEY and SKILLPAY_SKILL_ID