Medical record structuring and standardization tool. Converts doctor's oral or handwritten medical records into standardized electronic medical records (EMR). Supports voice/text input, automatic field recognition, and structured output. Use when processing medical records, clinical notes, patient histories, or converting unstructured medical data into standardized formats. Includes skillpay.me payment integration for pay-per-use monetization.
Version: 1.1.0
Category: Healthcare / Medical
Billing: SkillPay (0.001 USDT per call)
Free Trial: 10 free calls per user
Demo Mode: ✅ Available (no API key required)
A professional medical record processing tool that transforms unstructured medical notes (voice or text) into standardized electronic medical records.
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/process_record.py --demo
Or simply don't set any API key - the skill will automatically enter demo mode.
Demo mode returns realistic simulated medical records 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": 5, # 5 free calls left
"balance": None, # No balance needed in trial
"structured_record": {...}
}
After 10 free calls, normal billing applies.
python scripts/process_record.py --demo --input "患者张三,男,45岁,主诉头痛3天..."
from scripts.process_record import process_medical_record
import os
# Set API key via environment variable (only needed after trial)
os.environ["SKILLPAY_API_KEY"] = "your-api-key"
os.environ["SKILLPAY_SKILL_ID"] = "your-skill-id"
# Process with user_id for billing/trial tracking
result = process_medical_record(
input_text="患者张三,男,45岁,主诉头痛3天...",
user_id="user_123"
)
# Check result
if result["success"]:
print("结构化病历:", result["structured_record"])
if result.get("trial_mode"):
print(f"免费试用剩余: {result['trial_remaining']} 次")
else:
print("剩余余额:", result["balance"])