add 000-configs/, dashboard, templates, .obsidian/, bin/, model-identity
This commit is contained in:
@@ -0,0 +1,102 @@
|
||||
---
|
||||
title: "Dashboard"
|
||||
status: "active"
|
||||
folder: "000-shit_admin"
|
||||
tags: [dashboard, home]
|
||||
created: "2026-07-29"
|
||||
updated: "2026-07-29"
|
||||
version: "1.0.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
|
||||
```
|
||||
|
||||
## 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
|
||||
- [[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]]
|
||||
- [[files/README|files]]
|
||||
- [[tpl/README|tpl]]
|
||||
|
||||
## Model Docs
|
||||
|
||||
- [[04-models/Vault-Rules]]
|
||||
- [[04-models/model-boot]]
|
||||
- [[04-models/model-memory]]
|
||||
- [[04-models/model-identity]]
|
||||
Reference in New Issue
Block a user