npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

ray-finance

v0.3.4

Published

Local-first CLI that turns your bank data into a personal AI financial advisor

Downloads

1,675

Readme

Open Ray and it shows your net worth, spending vs last month, budget pacing, and upcoming bills — before you type a word. Ask a question and it answers from your real data, not guesses. Local-first. Encrypted. Open source.

Features

  • It already knows — Every conversation starts with a real-time financial briefing. Net worth, spending velocity, budget alerts, goal pace, upcoming bills, and your daily score. No "let me look that up."
  • Persistent context — Ray maintains a financial profile that evolves with you: income, goals, strategy, key decisions, and open items. It updates this context as your situation changes, so every conversation picks up where the last one left off.
  • Long-term memory — Important details from conversations are saved as memories. Mention you're saving for a house or switching jobs and Ray remembers — without you repeating yourself.
  • Bank sync via Plaid — Connect checking, savings, credit cards, investments, and loans
  • Encrypted local database — All data stays on your machine in an AES-256 encrypted SQLite database
  • 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.
  • 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.
  • Budgets and goals — Track spending limits by category and progress toward financial goals
  • PII masking — Names, account numbers, and identifying details are scrubbed before anything reaches the AI. Your data is analyzed, not exposed.
  • Smart alerts — Large transactions, low balances, budget overruns
  • Auto-recategorization — Define rules to automatically re-label transactions
  • Scheduled daily sync — Automatic bank sync via launchd (macOS) or cron (Linux)
  • Export/import — Back up and restore your financial data

Install

npm install -g ray-finance

Try It

Explore 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 transactions

The dashboard commands work with no setup at all. To also try the AI chat with demo data, run ray setup first and add an Anthropic API key or Ray API key — 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.

Quick Start

ray setup

The setup wizard offers two modes:

Quick setup (managed)

We handle the API keys. Your data stays local. $10/mo.

  1. Enter your name
  2. Get a Ray API key (opens Stripe checkout)
  3. Link your accounts — checking, savings, credit cards, investments, loans, mortgage
  4. Done — daily sync auto-scheduled at 6am

Self-hosted

Bring your own Anthropic and Plaid credentials. Free forever.

  1. Enter your Anthropic API key (get one)
  2. Enter your Plaid credentials (get free keys)
  3. Link your accounts — checking, savings, credit cards, investments, loans, mortgage
  4. Done

Commands

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 sync | Pull latest transactions and balances | | ray status | Quick financial dashboard | | 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 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) |

How It Works

  Checking · Savings · Credit · Investments · Loans · Mortgage
                            │
                        Plaid API
                            │
                 ┌──────────▼──────────┐
                 │   Local SQLite DB    │
                 │  (AES-256 encrypted) │
                 └──────────┬──────────┘
                            │
                 ┌──────────▼──────────┐
                 │      ray CLI         │
                 │  insights · tools   │
                 │  scoring · alerts   │
                 └──────────┬──────────┘
                            │
                      Claude API
                     (PII-masked)

Two outbound calls: Plaid (bank sync) and Anthropic (AI chat, PII-masked). Your financial data is never stored off your machine. No telemetry. No analytics.

Security & Privacy

  • 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 0600 permissions
  • PII redacted before sending to Claude API
  • No data leaves your machine — only API calls to Plaid and Anthropic

Configuration

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

Environment Variables

You can also configure Ray via environment variables or a .env file:

ANTHROPIC_API_KEY=     # Anthropic API key for AI chat
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)

Roadmap

  • [ ] 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.

Contributing

git clone https://github.com/cdinnison/ray-finance.git
cd ray-finance
npm install
npm run build
npm link   # Makes 'ray' available globally

PRs welcome. Please open an issue first for large changes.

License

MIT