Claero is a desktop medical billing advocate for patients navigating US healthcare bills, EOBs, denials, prior authorizations, and insurance plan rules.
This workspace currently contains:
ClaeroElectron/— the runnable desktop applicationClaeroLanding/— a lightweight marketing site for the projectclaero-doc-pack/— product, UX, and architecture docs
The original product docs describe a Tauri-based architecture, but the runnable app in this repository is currently the Electron implementation in ClaeroElectron/.
bun1.1+- Node.js 20+ if you prefer
npmfor auxiliary tooling - macOS is the most realistic environment for the current desktop integrations
- Optional accounts / credentials:
- OpenAI API key
- Perplexity API key
- Gmail OAuth client
- IMAP mailbox credentials
- Ollama for local inference
.
├── ClaeroElectron/ # Desktop app
├── ClaeroLanding/ # Marketing / landing page
├── claero-doc-pack/ # Product and architecture docs
└── README.md
cd ClaeroElectron
bun installCopy the example file and fill in only the providers you want to use:
cp example.env .envThe app supports three AI paths:
CLAERO_OPENAI_API_KEYfor OpenAI modeCLAERO_PERPLEXITY_API_KEYfor Perplexity / Sonar-assisted modeCLAERO_OLLAMA_BASE_URL+CLAERO_OLLAMA_MODELfor local inference
Optional integrations:
- Gmail OAuth:
CLAERO_GMAIL_CLIENT_IDCLAERO_GMAIL_CLIENT_SECRET
- IMAP:
CLAERO_IMAP_HOSTCLAERO_IMAP_PORTCLAERO_IMAP_USERNAMECLAERO_IMAP_PASSWORDCLAERO_IMAP_TLS
bun run devUseful alternatives:
bun run dev:web
bun run build
bun run build:electroncd ClaeroLanding
bun installbun run devbun run buildClaero is designed around a local-first workflow:
- the desktop app runs on your own machine
- local inference can run through Ollama
- email, calendar, and plan documents stay close to the user
That makes it possible to run a privacy-conscious setup without relying entirely on a centralized cloud backend.
Before making substantial product or UI changes, read:
claero-doc-pack/README.mdclaero-doc-pack/CLAUDE.mdclaero-doc-pack/docs/product-overview.mdclaero-doc-pack/docs/ui-style-spec.md