health-skillz
A Claude Skill for connecting to and analyzing personal health records via SMART on FHIR
File Explorer
- ci.yml
- 2026-02-11-epic-activation-journal.md
- 2026-02-12-registered-but-broken.md
- ecmids.json
- epic-activate-all.js
- 01a-heatmap.png
- 01b-waterfall.png
- 01c-treemap.png
- 01d-radial.png
- 01e-ticker.png
- 01f-mosaic.png
- 02a-pixel-grid.png
- 02b-grouped-bars.png
- 02c-waffle.png
- 02d-timeline.png
- 02e-ring-counter.png
- 02f-mosaic-v2.png
- 03a-pixel-grid-light.png
- 03b-segmented-bar.png
- 03c-dot-matrix-rows.png
- 03d-counter-hero-chips.png
- 03e-grouped-inline.png
- 03f-phase-cards.png
- 04a-dot-matrix.png
- 04b-segmented-bar-activity.png
- 04c-counter-hero-accumulating.png
- 04d-grouped-blocks-counts.png
- 04e-single-grid.png
- 04f-compact-phase-card.png
- 05a-dot-matrix-rows.png
- 05b-segmented-bar-counter.png
- 05c-square-grid.png
- 05d-counter-hero-dot-strip.png
- 05d-final-export.png
- 05d-refined-preallocated.png
- 05e-stacked-group-bars.png
- 05f-fixed-chip-grid.png
- 06-implementation.png
- animation-capture.html
- animation.html
- index.html
- journal.md
- loading-widget-animation.mp4
- 2026-02-11-records-outlast-the-conversation.md
- 2026-02-12-one-right-way-for-health-record-sharing.md
- 2026-02-12-thirty-four-prototypes.md
- jwks-intentionally-publishing-private-keys-which-are-not-sensitive-in-this-architecture.json
- jwks.json
- DESIGN.md
- PERSISTENT_CONNECTIONS_DESIGN.md
- PROGRESS_WIDGET_IMPLEMENTATION.md
- UX_REDESIGN_PLAN.md
- REDACTION_PLAN.md
- ai-platform-skill-setup-guide.md
- animation-capture.html
- animation.html
- viz5-d-final.png
- viz5-d.html
- download-brands.ts
- generate-jwks.ts
- create-session.ts
- finalize-session.ts
- analysis-philosophy.md
- connect-agent.md
- connect-local.md
- data-structure.md
- fhir-guide.md
- guidelines.md
- header.md
- testing.md
- when-to-use.md
- build-skill.ts
- FetchProgressWidget.tsx
- ProviderCard.tsx
- ProviderList.tsx
- ProviderSearch.tsx
- RecordsHeaderBar.tsx
- SiteFooter.tsx
- StatusMessage.tsx
- UploadProgressWidget.tsx
- loader.ts
- types.ts
- attachments.ts
- client-assertion.ts
- client.ts
- launch.ts
- oauth.ts
- api.ts
- connections.ts
- crypto.ts
- redaction.ts
- session-bootstrap.ts
- skill-builder.ts
- storage.ts
- ConnectPage.tsx
- DataBrowserPage.tsx
- HomePage.tsx
- OAuthCallbackPage.tsx
- ProviderSelectPage.tsx
- RecordsPage.tsx
- RedactionStudioPage.tsx
- brands.ts
- records.ts
- App.tsx
- global.d.ts
- index.css
- main.tsx
- index.html
- server.ts
- .gitignore
- AGENTS.md
- bun.lock
- config.json
- config.json.example
- config.local.json
- config.vnext.json
- config.vnext.local.json
- health-skillz.service
- package.json
- README.md
- tsconfig.json
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
bun install
View Details ▼
bun install
Install JavaScript dependencies for a project from `package.json`.
bun {{[i|install]}}
Install all dependencies listed in `package.json`:
bun {{[i|install]}} {{package_name}}@{{version}}
Install a single package (this is an alias for `bun add`):
bun {{[i|install]}} {{[-g|--global]}} {{package_name}}
Install a package globally:
bun run
View Details ▼
bun run
Execute a JavaScript/TypeScript file, or a script from `package.json`.
bun run {{script_name}}
Run a script defined in `package.json`:
bun run {{path/to/file.ts}}
Run a JavaScript or TypeScript file directly:
bun run --watch {{path/to/file.ts}}
Run a file in "watch" mode (restarts automatically when the file changes):
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
