Metadata-Version: 2.4
Name: cms-medicare-analysis-kit
Version: 2.0.2
Summary: CMS Medicare payment analysis data and Federal Register corpus for use with Claude AI
License: MIT
Keywords: cms,medicare,healthcare,payment,analysis
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# CMS Medicare Analysis Kit

Data package for Claude-powered Medicare payment analysis. Contains:

- **Longitudinal payment data** (2017–2026): PFS RVUs, OPPS rates, ASC rates, Part B utilization for every CPT/HCPCS code
- **Specialty utilization data** (2017–2024): Specialty × code × year from CMS PSPS
- **Place-of-service volume data** (2017–2024): Code × POS × year for site-of-service analysis
- **Federal Register corpus** (2017–2026): Pre-extracted preamble text from all 40 PFS and OPPS/ASC proposed and final rules, searchable by code or specialty

## Installation

```bash
pip install cms-medicare-analysis-kit
```

## Usage

```python
from cms_kit import load_code_data, load_pos_data, load_specialty_data, search_fr

# Get payment/RVU data for a code
rows = load_code_data("27130")

# Get site-of-service volume
pos_rows = load_pos_data("27130")

# Get specialty utilization
spec_rows = load_specialty_data("20")  # Orthopedic Surgery

# Search Federal Register for a code
hits = search_fr("27130", synonyms=["total hip arthroplasty", "THA"])
```

## For Claude Sessions

Upload the orchestrator markdowns (CMS_Code_Analysis_Master.md or Specialty_Analysis_Master.md) to Claude. Claude will `pip install` this package and use it to run analyses without any local setup.
