Single source of truth for all primary literature in the STRC vault — papers, books, preprints, reviews, theses. Canonical schema: type: lit + kind: paper|book|preprint|review|chapter|thesis|report.
How to use: every paper / book goes into sources/lit/ with the canonical frontmatter (see AGENTS §literature). The dataview blocks below auto-update.
Recently added
TABLE WITHOUT ID file.link AS Title, kind AS Kind, year AS Year, authors[0] AS "First author", read AS Read, read_for AS "For"FROM "sources/lit"WHERE type = "lit"SORT file.cday DESCLIMIT 25
file.link AS Title
kind AS Kind
year AS Year
First author
read AS Read
For
To-read queue
TABLE WITHOUT ID file.link AS Title, kind AS Kind, year AS Year, priority AS Priority, read_for AS "For"FROM "sources/lit"WHERE type = "lit" AND (!read OR read = false)SORT priority ASC, file.cday DESC
file.link AS Title
kind AS Kind
year AS Year
priority AS Priority
For
By hypothesis (read_for)
TABLE WITHOUT ID file.link AS Title, kind AS Kind, year AS Year, read AS ReadFROM "sources/lit"WHERE type = "lit" AND read_forGROUP BY read_forSORT read_for ASC, year DESC
(no results)
Read — last 15
TABLE WITHOUT ID file.link AS Title, kind AS Kind, read_date AS "Read on", notes_count AS Notes, read_for AS "For"FROM "sources/lit"WHERE type = "lit" AND read = trueSORT read_date DESCLIMIT 15
file.link AS Title
kind AS Kind
Read on
notes_count AS Notes
For
2026-04-27
h09, h26
2026-04-27
h03, h09, h26
Papers — by year
TABLE WITHOUT ID file.link AS Title, authors[0] AS "First author", venue AS Venue, year AS Year, read AS ReadFROM "sources/lit"WHERE type = "lit" AND (kind = "paper" OR kind = "preprint" OR kind = "review")SORT year DESCLIMIT 40
file.link AS Title
First author
venue AS Venue
year AS Year
read AS Read
Books
TABLE WITHOUT ID file.link AS Title, authors[0] AS Author, year AS Year, pipeline.rag_chunks AS "RAG chunks"FROM "sources/lit"WHERE type = "lit" AND kind = "book"SORT file.cday DESC
file.link AS Title
authors[0] AS Author
year AS Year
RAG chunks
Pipeline status (BookLibrary daemon writeback)
TABLE WITHOUT ID file.link AS Title, pipeline.extract_state AS "Extract", pipeline.rag_chunks AS "RAG", pipeline.mineru_md_size_kb AS "KB"FROM "sources/lit"WHERE pipeline.short_idSORT file.cday DESC