- Full Obsidian vault content - Host configs (ice, grizzley, ubuntu, proxmox, truenas, panda, hyte) - Media stack documentation - Traefik HA setup - Automation scripts - Bachelor party planning
75 lines
1.4 KiB
Markdown
75 lines
1.4 KiB
Markdown
---
|
|
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]]
|