Let AI read the careers pages for you

JobFinder scrapes companies' job boards, filters out the noise with an LLM, and hands you a scored shortlist with pros and cons, so you can spend your time doing literally anything else.

How it works

An agentic pipeline that turns hundreds of postings across every company you care about into a short, scored list.

1

Scrape

Scrapers pull every open role straight from each company's job board API; no headless-browser flakiness, no manually paging through careers sites.

2

Filter

A filtering agent skims the full list of titles and locations and drops anything that's clearly not a fit, so the expensive analysis only runs on real candidates.

3

Analyze

An analysis agent reads each remaining posting against your resume and preferences, scoring the fit and writing out the trade-offs.

4

Review

Jobs land in a searchable, filterable list with a match score and pros/cons on every card. You only read the ones worth reading.

Bring your own LLM

Analysis runs against whatever model you point it at: fully offline with Ollama, or hosted with an Anthropic or OpenAI API key.

Ollama Default

Run everything offline on your own hardware, with zero API costs. gpt-oss:20b on a single RTX 4090 comfortably chews through a full overnight run of every company.

ollama.com

Claude

Anthropic's models. Paste in an API key during onboarding and pick any model your key has access to. API keys never leave your machine unencrypted.

platform.claude.com

ChatGPT

OpenAI's models, and the origin of the gpt-oss family that works so well offline. Works the same way: one key, any model.

platform.openai.com
Model variance: every model calibrates its scores a little differently; some are stingy, some inflate. A deeper guide comparing providers and models on the same job set may be released in the future.

Get started

Clone it, start it, and walk through onboarding in your browser: pick your companies, your model, and paste in your resume. Then kick off a run and come back to a scored list.

# grab the code
git clone https://github.com/chrisdothtml/ai-job-finder.git
cd ai-job-finder

# install deps (Volta auto-picks the right node + yarn)
yarn install

# build the UI & start the server
yarn app:build && yarn app:start