Initial commit: homelab infrastructure wiki

- Full Obsidian vault content
- Host configs (ice, grizzley, ubuntu, proxmox, truenas, panda, hyte)
- Media stack documentation
- Traefik HA setup
- Automation scripts
- Bachelor party planning
This commit is contained in:
Hermes Agent
2026-05-24 16:08:40 -07:00
parent d132442429
commit e4d91aadf9
285 changed files with 30018 additions and 0 deletions

View File

@@ -0,0 +1,74 @@
---
title: Agent Memory Dashboard
type: dashboard
updated: 2026-04-27
---
# Agent Memory Dashboard
Cross-agent memory syncing via RustFS S3 → Obsidian vault. See [[vault-readme|Vault Overview]] for architecture.
## Per-Agent Current Tasks
### Ice (RPi4 — Control Plane)
```dataview
LIST file.ctime, file.mtime
FROM "agents/ice/memory"
SORT file.mtime DESC
LIMIT 5
```
### Grizzley (RPi5 — Edge)
```dataview
LIST file.ctime, file.mtime
FROM "agents/grizzley/memory"
SORT file.mtime DESC
LIMIT 5
```
### Ubuntu (Docker Host)
```dataview
LIST file.ctime, file.mtime
FROM "agents/ubuntu/memory"
SORT file.mtime DESC
LIMIT 5
```
## Recent Facts (All Agents)
```dataview
LIST row.agent, row.content
FROM "agents"
WHERE file.starred = false
SORT file.mtime DESC
LIMIT 20
```
## All Agent Notes
```dataview
LIST file.link, file.mtime
FROM "agents"
SORT file.mtime DESC
```
## Daily Notes (Last 7 Days)
```dataview
LIST file.link
FROM "daily"
WHERE file.day >= date(today) - dur(7 days)
SORT file.day DESC
```
## Shared Entities
```dataview
LIST file.link, row.category
FROM "entities"
WHERE row.trust_score >= 0.3
SORT row.trust_score DESC
LIMIT 20
```
## Quick Links
- [[agents/ice/memory/current-task|Ice — Current Task]]
- [[agents/grizzley/memory/current-task|Grizzley — Current Task]]
- [[agents/ubuntu/memory/current-task|Ubuntu — Current Task]]
- [[agents/ice/memory/recent-facts|Ice — Recent Facts]]

View File

@@ -0,0 +1,40 @@
# Project Status Dashboard
## All Projects
```dataview
TABLE project.status AS Status,
project.category AS Category,
file.cday AS Created
FROM "**/project.md"
SORT project.status ASC, project.category ASC
```
## Active Tasks
```dataview
TASK
FROM "**/tasks"
WHERE !completed
SORT project ASC, file.name ASC
```
## Recently Modified
```dataview
TABLE file.link AS File, file.mtime AS Modified
FROM ""
WHERE file.mtime >= date(today) - dur(7 days) AND !contains(file.path, "node_modules")
SORT file.mtime DESC
LIMIT 20
```
## Tasks by Project
```dataview
TABLE rows.file.tasks.length AS TotalTasks
FROM "**/project.md"
GROUP BY project.name AS Project
```
## Quick Links
- [[../homelab/project.md|Homelab Infrastructure]]
- [[../automation/project.md|Automation Scripts]]
- [[../platform-config/project.md|Platform Configuration]]
- [[../ai-assistant/project.md|AI Assistant Config]]