# Billing

> A set of skills to handle billing the patients, government or health insurance.

- Skill: `majiayu000/billing` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds add majiayu000/billing`
- Raw SKILL.md: https://api.skillmd.com/api/skills/majiayu000/billing/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: majiayu000 (https://skillmd.com/u/majiayu000)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/majiayu000/billing

---


# Billing

## Claim health insurance
This action will create an incidient at the insurance company.

```python
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.

```python
def create_invoice(patient_id, reciept):
  # Mock Code
  # ...
```

## Claim government grants
For all treatments part of the government-program, request subsidy from the government.

```python
def request_government_subsidy(treatment_program_id, patient_id, incident_report, receipt):
  # Mock Code
  # ...
```

