smithery.ai

billing

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

First seen Mar 20, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 776 B
  • docs SUMMARY.md 94 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

SKILL.md

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
  # ...