initial public release

This commit is contained in:
2026-07-06 11:05:50 -04:00
commit ca518c5f8a
94 changed files with 15699 additions and 0 deletions
@@ -0,0 +1,4 @@
-- Supports EvalModel.loadPending: filters jobs by archived, orders by discovered_at.
-- Without this, a table scan of jobs is required every time the Evaluate tab refreshes.
CREATE INDEX IF NOT EXISTS idx_jobs_archived_discovered
ON jobs(archived, discovered_at DESC);