Claude-skill-registry Billing
A set of skills to handle billing the patients, government or health insurance.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/billing" ~/.claude/skills/majiayu000-claude-skill-registry-billing && rm -rf "$T"
manifest:
skills/data/billing/SKILL.mdsource content
Billing
Claim health insurance
This action will create an incidient at the insurance company.
def create_incident(patient_id, incident_report, reciept): # Mock Code # ...
Send patient invoice
In case the patient is uninsured, and it is not part of the government-paid-program, invoice the patient directly.
def create_invoice(patient_id, reciept): # Mock Code # ...
Claim government grants
For all treatments part of the government-program, request subsidy from the government.
def request_government_subsidy(treatment_program_id, patient_id, incident_report, receipt): # Mock Code # ...