- Full Obsidian vault content - Host configs (ice, grizzley, ubuntu, proxmox, truenas, panda, hyte) - Media stack documentation - Traefik HA setup - Automation scripts - Bachelor party planning
1.4 KiB
1.4 KiB
title, type, updated
| title | type | updated |
|---|---|---|
| Agent Memory Dashboard | dashboard | 2026-04-27 |
Agent Memory Dashboard
Cross-agent memory syncing via RustFS S3 → Obsidian vault. See vault-readme for architecture.
Per-Agent Current Tasks
Ice (RPi4 — Control Plane)
LIST file.ctime, file.mtime
FROM "agents/ice/memory"
SORT file.mtime DESC
LIMIT 5
Grizzley (RPi5 — Edge)
LIST file.ctime, file.mtime
FROM "agents/grizzley/memory"
SORT file.mtime DESC
LIMIT 5
Ubuntu (Docker Host)
LIST file.ctime, file.mtime
FROM "agents/ubuntu/memory"
SORT file.mtime DESC
LIMIT 5
Recent Facts (All Agents)
LIST row.agent, row.content
FROM "agents"
WHERE file.starred = false
SORT file.mtime DESC
LIMIT 20
All Agent Notes
LIST file.link, file.mtime
FROM "agents"
SORT file.mtime DESC
Daily Notes (Last 7 Days)
LIST file.link
FROM "daily"
WHERE file.day >= date(today) - dur(7 days)
SORT file.day DESC
Shared Entities
LIST file.link, row.category
FROM "entities"
WHERE row.trust_score >= 0.3
SORT row.trust_score DESC
LIMIT 20