97 lines
1.9 KiB
Markdown
97 lines
1.9 KiB
Markdown
---
|
|
type: dashboard
|
|
tags:
|
|
- dashboard
|
|
---
|
|
|
|
# Ops Home
|
|
|
|
This is the front door for the vault.
|
|
|
|
## Quick links
|
|
|
|
- [[Swarm Operating Manual]]
|
|
- [[Project Context Index]]
|
|
- [[Inbox]]
|
|
- [[Daily Notes Home]]
|
|
- [[Diary/Diary Home|Diary Home]]
|
|
- [[Projects Home]]
|
|
- [[Areas Home]]
|
|
- [[Resources Home]]
|
|
- [[People Home]]
|
|
- [[Meetings Home]]
|
|
- [[Decisions Home]]
|
|
- [[Runbooks Home]]
|
|
- [[Weekly Review]]
|
|
|
|
## Capture flow
|
|
|
|
1. Capture quickly in [[Inbox]] or today's daily note.
|
|
2. Promote active work to [[Projects Home]].
|
|
3. Preserve durable choices in [[Decisions Home]].
|
|
4. Turn repeated procedures into [[Runbooks Home]].
|
|
5. Move stale but useful material to [[Archive Home]].
|
|
|
|
## Current priorities
|
|
|
|
-
|
|
|
|
## Active projects
|
|
|
|
```dataview
|
|
TABLE status, owner, target
|
|
FROM "Projects"
|
|
WHERE status != "archived" AND file.name != "Projects Home"
|
|
SORT target ASC
|
|
```
|
|
|
|
## Open tasks
|
|
|
|
```tasks
|
|
not done
|
|
path does not include Archive
|
|
sort by due
|
|
```
|
|
|
|
## Recent decisions
|
|
|
|
```dataview
|
|
TABLE date, status, project
|
|
FROM "Decisions"
|
|
WHERE type = "decision"
|
|
SORT date DESC
|
|
LIMIT 10
|
|
```
|
|
|
|
## Recent meetings
|
|
|
|
```dataview
|
|
TABLE date, project, attendees
|
|
FROM "Meetings"
|
|
WHERE type = "meeting"
|
|
SORT date DESC
|
|
LIMIT 10
|
|
```
|
|
|
|
## Active runbooks
|
|
|
|
```dataview
|
|
TABLE system, status
|
|
FROM "Runbooks"
|
|
WHERE type = "runbook" AND status != "archived"
|
|
SORT system ASC, file.name ASC
|
|
```
|
|
|
|
## Agent workflow
|
|
|
|
Use [[Swarm Operating Manual]] for the full Atlas/Hermes/Obsidian/Kanban workflow, [[Project Context Index]] for active project orientation, [[Context Pack]] for specialist handoffs, and [[Promote Session Output to Notes]] when chat output should become durable notes.
|
|
|
|
Use this pattern when Atlas/Hermes produces useful durable knowledge:
|
|
|
|
- Workflow guide: [[Atlas Discord Telegram Workflow]]
|
|
- Thread summary → `Resources/`
|
|
- Active implementation → `Projects/`
|
|
- Operational procedure → `Runbooks/`
|
|
- Important architectural/product choice → `Decisions/`
|
|
- Loose capture → `Inbox/`
|