STRC Literature Log

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 DESC
LIMIT 25
file.link AS Titlekind AS Kindyear AS YearFirst authorread AS ReadFor

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 Titlekind AS Kindyear AS Yearpriority AS PriorityFor

By hypothesis (read_for)

TABLE WITHOUT ID
  file.link AS Title,
  kind AS Kind,
  year AS Year,
  read AS Read
FROM "sources/lit"
WHERE type = "lit" AND read_for
GROUP BY read_for
SORT 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 = true
SORT read_date DESC
LIMIT 15

(no results)

Papers — by year

TABLE WITHOUT ID
  file.link AS Title,
  authors[0] AS "First author",
  venue AS Venue,
  year AS Year,
  read AS Read
FROM "sources/lit"
WHERE type = "lit" AND (kind = "paper" OR kind = "preprint" OR kind = "review")
SORT year DESC
LIMIT 40
file.link AS TitleFirst authorvenue AS Venueyear AS Yearread 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 Titleauthors[0] AS Authoryear AS YearRAG 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_id
SORT file.cday DESC

(no results)

Connections