An open-source AI financial advisor that learns your situation and gets smarter every conversation.
Tell Ray about your family, goals, and financial strategy once. From then on, every answer is grounded in your real situation β not generic advice. It connects to your bank, tracks your net worth and spending, and gives you a financial briefing before you type a word. Open source. Local-first. Encrypted.
- Your situation, always loaded β Every conversation starts with your financial profile: family, income, goals, strategy, key decisions, and open items. Ray reads it all before you type a word.
- Self-updating context β Got a raise? Had a baby? Decided to pay off debt aggressively? Ray updates your profile automatically when your situation changes.
- Long-term memory β Mention you're saving for a house or that you cancelled a subscription. Ray remembers across every future conversation.
- CFO personality β Ray doesn't list options. It tells you what it would do and why, references your goals, and flags problems you haven't noticed yet.
- Daily scoring β A 0-100 behavior score with streaks and 14 unlockable achievements. No restaurants for a week? That's Kitchen Hero. Five zero-spend days? Monk Mode.
- Budgets and goals β Track spending limits by category and progress toward financial goals.
- Smart alerts β Large transactions, low balances, budget overruns.
- Encrypted local database β All data stays on your machine in an AES-256 encrypted SQLite database.
- PII masking β Names, account numbers, and identifying details are scrubbed before anything reaches the AI. Your data is analyzed, not exposed.
- Bank sync via Plaid β Connect checking, savings, credit cards, investments, and loans. Supports πΊπΈ United States, π¬π§ United Kingdom, and π¨π¦ Canada.
- Scheduled daily sync β Automatic bank sync via launchd (macOS) or cron (Linux).
- Auto-recategorization β Define rules to automatically re-label transactions.
- Export/import β Back up and restore your financial data.
npm install -g ray-financeExplore Ray with realistic fake data β no bank accounts needed.
ray demo # seed a demo database
ray --demo status # financial overview
ray --demo accounts # linked accounts with balances
ray --demo spending # spending breakdown by category
ray --demo budgets # budget tracking
ray --demo goals # financial goal progress
ray --demo score # daily score, streaks, achievements
ray --demo alerts # financial alerts
ray --demo transactions # recent transactionsThe dashboard commands work with no setup at all. To also try the AI chat with demo data, run ray setup first and add an API key (Anthropic, OpenAI, or any OpenAI-compatible provider) β then ray --demo will start an interactive session where you can ask questions about the fake portfolio.
When you're ready to connect real accounts, run ray link.
ray setupThe setup wizard offers two modes:
We handle the API keys. Your data stays local. $10/mo.
- Enter your name
- Get a Ray API key (opens Stripe checkout)
- Link your accounts β checking, savings, credit cards, investments, loans, mortgage
- Done β daily sync auto-scheduled at 6am
Bring your own AI and Plaid credentials. Free forever.
- Pick your AI provider β Anthropic, OpenAI, Ollama (local), or any OpenAI-compatible endpoint
- Enter your API key and pick a model
- Enter your Plaid credentials (get free keys)
- Link your accounts β checking, savings, credit cards, investments, loans, mortgage
- Done
Run ray --help to see all available commands.
| Command | Description |
|---|---|
ray |
Interactive AI chat with your financial advisor |
ray demo |
Seed a demo database with realistic fake data |
ray --demo <cmd> |
Run any command against demo data |
ray setup |
Configure API keys and preferences |
ray link |
Connect a new bank account |
ray add |
Add a manual account (home, car, crypto, etc.) |
ray remove |
Remove a linked bank or manual account |
ray sync |
Pull latest transactions and balances |
ray status |
Quick financial dashboard |
ray accounts |
Linked accounts with balances |
ray transactions |
Recent transactions (filterable by category, merchant) |
ray spending [period] |
Spending breakdown by category |
ray budgets |
Budget status and overruns |
ray goals |
Financial goal progress |
ray bills |
Upcoming bills |
ray recap [period] |
Monthly spending recap |
ray score |
Daily score, streaks, and achievements |
ray alerts |
Active financial alerts |
ray export [path] |
Export data to a backup file |
ray import <path> |
Restore from a backup file |
ray billing |
Manage your Ray subscription (managed mode only) |
ray update |
Update Ray to the latest version |
ray doctor |
Check system health |
Checking Β· Savings Β· Credit Β· Investments Β· Loans Β· Mortgage
β
Plaid API
β
ββββββββββββΌβββββββββββ
β Local SQLite DB β
β (AES-256 encrypted) β
ββββββββββββ¬βββββββββββ
β
ββββββββββββΌβββββββββββ
β ray CLI β
β insights Β· tools β
β scoring Β· alerts β
ββββββββββββ¬βββββββββββ
β
LLM API
(PII-masked)
Two outbound calls: Plaid (bank sync) and your AI provider (PII-masked). Supports Anthropic, OpenAI, Ollama, and any OpenAI-compatible endpoint. Your financial data is never stored off your machine. No telemetry. No analytics.
- All financial data stored locally in
~/.ray/data/finance.db - Database encrypted with AES-256 (SQLCipher)
- Plaid access tokens encrypted at rest with AES-256-GCM
- Config file stored with
0600permissions - PII redacted before sending to any AI provider
- No data leaves your machine β only API calls to Plaid and your AI provider
Ray stores everything in ~/.ray/:
~/.ray/
config.json # API keys and preferences (0600 permissions)
context.md # Persistent financial context for AI
data/
finance.db # Encrypted SQLite database
demo.db # Demo database (created by `ray demo`)
sync.log # Daily sync output
You can also configure Ray via environment variables or a .env file:
ANTHROPIC_API_KEY= # Anthropic API key (if using Anthropic)
OPENAI_COMPATIBLE_KEY= # API key for OpenAI or compatible provider
OPENAI_COMPATIBLE_BASE_URL= # Base URL (e.g. https://api.openai.com/v1, http://localhost:11434/v1)
RAY_PROVIDER= # "anthropic" or "openai-compatible"
RAY_MODEL= # Model name (e.g. claude-sonnet-4-6, gpt-4o, llama3.1)
PLAID_CLIENT_ID= # Plaid client ID
PLAID_SECRET= # Plaid secret key
PLAID_ENV=production # Plaid environment
DB_ENCRYPTION_KEY= # Database encryption key
PLAID_TOKEN_SECRET= # Key for encrypting stored Plaid tokens
RAY_API_KEY= # Ray API key (managed mode, replaces the above)- Bring your own model β use any LLM provider (OpenAI, Ollama, open-source models, etc.)
- Daily digest email β morning summary of your finances
Have an idea? Open a PR.
Questions, feedback, or need help getting set up? Email [email protected] or open an issue.
git clone https://github.com/cdinnison/ray-finance.git
cd ray-finance
npm install
npm run build
npm link # Makes 'ray' available globallyPRs welcome. Please open an issue first for large changes.

