114 lines
1.6 KiB
Markdown
114 lines
1.6 KiB
Markdown
---
|
|
title: "Dashboard"
|
|
status: "active"
|
|
folder: "000-shit_admin"
|
|
tags: [dashboard, home]
|
|
created: "2026-07-29"
|
|
updated: "2026-07-30"
|
|
version: "1.3.0"
|
|
---
|
|
|
|
# Dashboard
|
|
|
|
> Home for the vault. Dataview pulls live data from frontmatter.
|
|
|
|
---
|
|
|
|
## Today
|
|
|
|
```dataview
|
|
LIST
|
|
FROM "01-logs/daily"
|
|
WHERE file.day = date(today)
|
|
SORT file.day DESC
|
|
```
|
|
|
|
## Inbox (untriaged)
|
|
|
|
```dataview
|
|
LIST
|
|
FROM "00-inbox"
|
|
WHERE status = "draft"
|
|
SORT created DESC
|
|
LIMIT 20
|
|
```
|
|
|
|
## Active Tasks
|
|
|
|
```dataview
|
|
TABLE priority, due, owner
|
|
FROM ""
|
|
WHERE contains(tags, "task") AND status = "active"
|
|
SORT priority ASC, due ASC
|
|
```
|
|
|
|
## Recent Logs
|
|
|
|
```dataview
|
|
LIST
|
|
FROM "01-logs"
|
|
SORT updated DESC
|
|
LIMIT 5
|
|
```
|
|
|
|
## Recent Changes
|
|
|
|
```dataview
|
|
LIST
|
|
FROM ""
|
|
WHERE status != "archive"
|
|
SORT updated DESC
|
|
LIMIT 10
|
|
```
|
|
|
|
## Open Handoffs
|
|
|
|
```dataview
|
|
LIST
|
|
FROM "05-handoffs"
|
|
WHERE status = "active"
|
|
SORT updated DESC
|
|
```
|
|
|
|
## Research WIP
|
|
|
|
```dataview
|
|
LIST
|
|
FROM "02-notes"
|
|
WHERE contains(tags, "wip") AND status != "archive"
|
|
SORT updated DESC
|
|
LIMIT 10
|
|
```
|
|
|
|
## Recently Archived
|
|
|
|
```dataview
|
|
LIST
|
|
FROM ""
|
|
WHERE status = "archive"
|
|
SORT updated DESC
|
|
LIMIT 5
|
|
```
|
|
|
|
---
|
|
|
|
## Quick Folders
|
|
|
|
- [[000-shit_admin/README|000-shit_admin]] — your zone
|
|
- [[000-configs/README|000-configs]]
|
|
- [[00-inbox/README|00-inbox]]
|
|
- [[01-logs/README|01-logs]]
|
|
- [[02-notes/README|02-notes]]
|
|
- [[03-archive/README|03-archive]]
|
|
- [[04-models/README|04-models]]
|
|
- [[05-handoffs/README|05-handoffs]]
|
|
- [[06-research/README|06-research]]
|
|
- [[07-tasks/README|07-tasks]]
|
|
- [[00-assets/README|00-assets]]
|
|
|
|
## Model Docs
|
|
|
|
- [[04-models/Vault-Rules]]
|
|
- [[04-models/model-boot]]
|
|
- [[04-models/model-memory]]
|
|
- [[04-models/model-identity]] |