mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-08-07 23:35:47 +00:00
This squashes all local history (768 commits) onto the scrubbed PR #90 baseline. Individual commits were lost during filter-repo corruption; the working tree content is preserved intact. Build: N/A (working tree state only)
3.7 KiB
3.7 KiB
Research Stack Dashboard
System Health Overview
Build Status
TABLE WITHOUT ID
file.link as "Module",
type as "Type",
status as "Status",
layer as "Layer",
dateformat(file.ctime, "yyyy-MM-dd") as "Created"
FROM #formal-proof
WHERE type = "formal-proof"
SORT status DESC, file.ctime DESC
LIMIT 10
Active Attack Plans
TABLE WITHOUT ID
file.link as "Attack Plan",
status as "Status",
priority as "Priority",
dateformat(date(target-date), "yyyy-MM-dd") as "Target Date",
progress as "Progress %"
FROM #attack-plan
WHERE status != "completed"
SORT priority DESC, file.ctime DESC
Recent Receipts
TABLE WITHOUT ID
file.link as "Receipt",
schema as "Schema",
status as "Status",
layer as "Layer",
dateformat(file.ctime, "yyyy-MM-dd HH:mm") as "Generated"
FROM #receipt
SORT file.ctime DESC
LIMIT 10
Milestone Progress
Active Milestones
TABLE WITHOUT ID
file.link as "Milestone",
status as "Status",
priority as "Priority",
dateformat(date(target-date), "yyyy-MM-dd") as "Target",
progress as "Progress"
FROM #milestone
WHERE status != "completed"
SORT priority DESC, date(target-date) ASC
Completed Milestones (Last 30 Days)
TABLE WITHOUT ID
file.link as "Milestone",
dateformat(date(completed-date), "yyyy-MM-dd") as "Completed",
priority as "Priority",
layer as "Layer"
FROM #milestone
WHERE status = "completed"
SORT date(completed-date) DESC
LIMIT 10
Layer Statistics
Formal Proofs by Layer
TABLE WITHOUT ID
layer as "Layer",
rows.file.link as "Proofs",
length(rows) as "Count",
sum(map(rows, (r) => choice(r.status = "verified", 1, 0))) as "Verified"
FROM #formal-proof
GROUP BY layer
SORT layer ASC
Attack Plans by Status
TABLE WITHOUT ID
status as "Status",
length(rows) as "Count",
rows.file.link as "Plans"
FROM #attack-plan
GROUP BY status
SORT status ASC
Recent Activity
Today's Updates
LIST
FROM !"08-TOOLS" AND !".obsidian"
WHERE file.mtime >= date(today)
SORT file.mtime DESC
LIMIT 20
Recent File Changes
TABLE WITHOUT ID
file.link as "File",
dateformat(file.mtime, "yyyy-MM-dd HH:mm") as "Modified",
file.folder as "Folder"
FROM !"08-TOOLS" AND !".obsidian"
WHERE file.mtime >= date(today) - dur(7 days)
SORT file.mtime DESC
LIMIT 15
Quick Links
Active Work Items
- 07-RESEARCH/00-Milestones
- 07-RESEARCH/01-Attack-Plans
- 07-RESEARCH/02-Conjectures
- 07-RESEARCH/03-Experiments
Research Areas
Tools & Templates
System Metrics
Build Statistics
- Lean Modules: 746
- Build Jobs: 3529
- Build Errors: 0
- Last Build:
today
Formal Proof Status
- Total Proofs:
length(this.file.inlinks) - Verified:
length(this.file.inlinks) - 173 - Pending (TODO): 173
- Completion Rate:
((length(this.file.inlinks) - 173) / length(this.file.inlinks)) * 100%
Receipt Generation
- Total Receipts:
length(this.file.inlinks) - Valid:
length(this.file.inlinks) - Failed: 0
- Pending: 0
Calendar View
Upcoming Deadlines
CALENDAR date(target-date)
FROM #milestone OR #attack-plan
WHERE status != "completed"
AND date(target-date) >= date(today)
AND date(target-date) <= date(today) + dur(30 days)
Dashboard auto-updated: dateformat(date(today), "yyyy-MM-dd HH:mm")