Tag & Axis Clusters

Obsidian-only (Dataview). Browse the corpus by topical tag and by the regime / layer axes.

By regime

TABLE length(rows) AS Pages
WHERE type AND regime AND !contains(file.folder, "templates")
GROUP BY regime AS Regime
SORT length(rows) DESC

By layer

TABLE length(rows) AS Pages
WHERE type AND layer AND !contains(file.folder, "templates")
GROUP BY layer AS Layer

By topical tag

TABLE length(rows) AS Pages
WHERE type AND !contains(file.folder, "templates")
FLATTEN tags AS tag
GROUP BY tag AS Tag
SORT length(rows) DESC

Free-floating literature — re-derivation watch-list

Results/sources that assume an uncontrolled base; each needs checking against our actuated base.

TABLE tags AS Tags, type AS Type
WHERE (type = "source" OR type = "result") AND regime = "free_floating" AND !contains(file.folder, "templates")
SORT file.name ASC