mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-07-31 03:05:21 +00:00
Created comprehensive Obsidian vault for managing Research Stack knowledge: Core Structure: - 00-MAP/ - Navigation, Dashboard, Core Concepts, Glossary, Getting Started - 01-LAYERS/ - All 7 USTSM layers (L0-L6) with formal proofs, docs, receipts, hardware - 07-RESEARCH/ - Milestones, Attack Plans, Conjectures, Experiments - 08-TOOLS/ - Templates, Workflows, Scripts - 09-REFERENCES/ - External resources - 10-ARCHIVE/ - Completed items Configuration Files: - .obsidian/app.json - Vault settings - .obsidian/community-plugins.json - Plugin configuration - .obsidian/snippets/research-stack.css - Custom theme with layer colors - .obsidian/plugins/ - Templater, QuickAdd, Dataview settings - .obsidian/workspaces.json - Pre-configured workspaces Templates Created: - Formal Proof - For Lean theorem documentation - Attack Plan - For research initiatives - Milestone - For project milestones - Receipt - For validation receipts - Daily Standup - For daily progress tracking Features: - Dataview dashboard queries for system health - Layer-specific color coding (L0-L6) - Receipt styling and validation status - Graph view customization - QuickAdd commands for rapid note creation - Templater automation with research helpers - Pre-configured workspaces for different activities Documentation: - README.md - Complete vault guide - Getting Started.md - Step-by-step tutorial - Core Concepts.md - Fundamental principles - Glossary.md - Research Stack terminology Burgers 4-Theorem Attack Plan documented: - Energy Dissipation theorem - CFL Stability theorem - Mass Conservation theorem - Complexity Regularization theorem Generated with [Devin](https://cli.devin.ai/docs) Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
172 lines
3.7 KiB
Markdown
172 lines
3.7 KiB
Markdown
# Research Stack Dashboard
|
|
|
|
## System Health Overview
|
|
|
|
### Build Status
|
|
```dataview
|
|
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
|
|
```dataview
|
|
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
|
|
```dataview
|
|
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
|
|
```dataview
|
|
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)
|
|
```dataview
|
|
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
|
|
```dataview
|
|
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
|
|
```dataview
|
|
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
|
|
```dataview
|
|
LIST
|
|
FROM !"08-TOOLS" AND !".obsidian"
|
|
WHERE file.mtime >= date(today)
|
|
SORT file.mtime DESC
|
|
LIMIT 20
|
|
```
|
|
|
|
### Recent File Changes
|
|
```dataview
|
|
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|Active Milestones]]
|
|
- [[07-RESEARCH/01-Attack-Plans|Active Attack Plans]]
|
|
- [[07-RESEARCH/02-Conjectures|Open Conjectures]]
|
|
- [[07-RESEARCH/03-Experiments|Recent Experiments]]
|
|
|
|
### Research Areas
|
|
- [[01-LAYERS/00-Overview|Layer Overview]]
|
|
- [[00-MAP/Core Concepts|Core Concepts]]
|
|
- [[00-MAP/Getting Started|Getting Started]]
|
|
|
|
### Tools & Templates
|
|
- [[08-TOOLS/01-Templates|Templates]]
|
|
- [[08-TOOLS/02-Workflows|Workflows]]
|
|
- [[08-TOOLS/00-Scripts|Scripts]]
|
|
|
|
## 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
|
|
```dataview
|
|
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")`*
|