job-scout¶
job-scout is a job-search pipeline. It reads open job postings straight from ~95 technology companies' own job boards (their public JSON APIs — no page scraping), stores them in a local DuckDB database, and turns them into three things:
- A hiring-trends dashboard — one self-contained HTML page with charts, filters, salary bands, and a job-description side panel.
- A public dataset — a facts-only parquet file, refreshed daily, that anyone can query from DuckDB with one URL.
- A ranked personal shortlist — postings scored against a resume through a paid matcher API, with a daily HTML report.
Everything deterministic is free and runs anywhere (Docker image, GitHub Actions, or plain Python). Only the resume matcher costs money, and it is guarded so it can never run by accident.
How the pieces fit¶
company job boards (Ashby / Greenhouse / Workday public APIs)
│
▼
ats_posting_raw ──► daily export ──► data/ats_raw_trends.parquet (public)
(every posting, │
full JD text) ▼
│ trends dashboard (HTML)
▼ promote (keyword or SQL filter)
job_posting ──► match sweep ──► paid matcher API ──► ranked report
(your shortlist) (only new/changed JDs are ever sent)
Start where you are¶
| You are… | Start here |
|---|---|
| Just curious about the data | Getting Started — see the dashboard or query the dataset in 5 minutes, nothing to install |
| Setting up the pipeline | Installation, then Configuration |
| Writing SQL against the data | Data & Queries |
| Building or sharing reports | Dashboards & Reports |
| Operating it day to day | Runbook |
| Wondering why it works this way | FAQ |
Pages¶
- Getting Started — three 5-minute paths in.
- Installation — Docker image, docker compose, or local Python.
- Configuration — every
config.yamlsection and every environment variable. - Data & Queries — the tables, the public dataset, and a query cookbook.
- Dashboards & Reports — building and sharing the HTML pages.
- Runbook — daily operations and what to do when something fails.
- CI/CD — the automated pipelines and how they chain.
- FAQ — the reasoning, with links to the specs.
- API match pipeline reference — deep reference for the paid matcher tools.