π Dashboard β Research Progress
How to Use This Dashboard
Run a Weekly Review to update chapter status, check the reading queue, and process orphan notes. All queries below are live Dataview results.
Literature Pipeline
TABLE WITHOUT ID length(rows) AS "Count", rows.file.link AS "Papers"
FROM #literature
GROUP BY status
SORT status ASCReading Queue (Pass 1 needed)
TABLE title AS "Title", first-author AS "Author", year AS "Year", relevance AS "β"
FROM #literature
WHERE status = "to-read"
SORT relevance DESC
LIMIT 10High-Priority Papers Not Yet Reviewed
TABLE title AS "Title", first-author AS "Author", year AS "Year", topic AS "Topic"
FROM #literature
WHERE relevance >= 4 AND status != "reviewed"
SORT relevance DESCWriting Progress
TABLE status AS "Status", file.mtime AS "Last Modified"
FROM "40 - Projects/PUMA"
WHERE type = "project-note"
SORT file.mtime DESCChapter Completion Tracker
| Chapter | Status | Word Target | Notes |
|---|---|---|---|
| Ch.1 Introduction | β Complete | ~4,000 | delivered |
| Ch.2 Materials & Methods | π In progress | ~3,000 | Methods design complete |
| Ch.3 Results | β³ Pending experiments | ~2,500 | Awaiting PEC2 data |
| Ch.4 Conclusions | β³ Pending | ~1,500 | After results |
| Ch.5 Glossary | π Ongoing | β | 65 terms in vault |
| Ch.6 Bibliography | β 42 refs | β | Target β₯40 β |
| Ch.7 Annexes | π Building | β | Templates + scripts |
GTD Inbox Status
LIST
FROM "10 - Inbox"
WHERE file.name != "README-Inbox" AND file.name != "Quick-Capture-Log" AND file.name != "Template-Fleeting-Note"
SORT file.ctime DESC
LIMIT 10Orphan Notes (disconnected β needs linking)
LIST
FROM ""
WHERE length(file.inlinks) = 0 AND length(file.outlinks) = 0
SORT file.ctime ASC
LIMIT 10Permanent Notes Created This Month
TABLE file.ctime AS "Created"
FROM "30 - Permanent"
WHERE type = "permanent"
AND file.ctime >= date(today) - dur(30 days)
SORT file.ctime DESCNavigation
MOC-PUMA-Master Β· MOC-Literature-Review Β· MOC-Research-Pipeline