Health Skillz helps people collect SMART on FHIR records from patient portals, review/export them locally, and optionally share them with AI using end-to-end encrypted upload.
- Design and architecture:
docs/design/DESIGN.md - Environment/runbook notes:
AGENTS.md
This README intentionally stays high-level. API contracts, data structures, security model, and protocol details are documented in docs/design/DESIGN.md.
A live instance is available at health-skillz.joshuamandel.com.
- Download the skill: health-record-assistant.zip
- Install in Claude: Settings -> Skills -> Upload zip
- Ask: "Can you look at my health records?"
Epic sandbox test credentials:
- Username:
fhircamila - Password:
epicepic1
- Bun
- A SMART on FHIR client registration (or sandbox client IDs)
git clone https://github.com/jmandel/health-skillz
cd health-skillz
bun install
cp config.json.example config.local.json
# Edit config.local.json with your base URL and client IDs
bun run setup
mkdir -p static data
ln -snf "$(pwd)/brands" static/brands
CONFIG_PATH=./config.local.json bun run devHealth check:
curl -sS http://localhost:8000/healthIf you use a different port, update the URL accordingly.
The server reads CONFIG_PATH (defaults to ./config.json).
Minimum fields you should verify in the selected config file:
server.portserver.baseURLbrands[].clientIdbrands[].redirectURL(or default${baseURL}/connect/callback)
Run examples:
CONFIG_PATH=./config.local.json bun run dev
CONFIG_PATH=./config.local.json bun run startFor Epic:
- Register at https://fhir.epic.com/Developer/Apps
- Set redirect URI to your deployed callback (typically
${baseURL}/connect/callback) - Request scopes like
patient/*.rs - Put the issued client ID in your config
bun run dev # watch mode
bun run start # production-style local run
bun run build:brands # fetch/build provider directory assets
bun run build:skill # package skill zip
bun run generate-jwks # generate JWKS files
bun run setup # brands + skill + jwkssrc/ Bun server + React client
skill/ Skill templates, scripts, references
scripts/ Build and maintenance scripts
docs/ Design and planning docs
static/ Served static assets (e.g., brands)
data/ Local runtime data (SQLite, generated files)
MIT