Files
personal-wiki/wiki/meta/dashboard.md
Daniel 23bfd15b19 feat: geometric graph topology + module pages + phantom link cleanup
Graph topology (Metatron's Cube pattern — 1 center + 12 outer nodes):
- index: now links to ALL 12 other nodes (complete hub)
- Inner ring cycle: hot→log→overview→dashboard→concepts/_index→entities/_index
  - Added: hot↔WikiMap, log↔sources/_index, dashboard↔concepts/_index
  - Added: entities/_index↔hot, entities/_index↔LLM Wiki Pattern
  - Added: sources/_index↔log, sources/_index↔entities/_index
- Outer ring: concepts connected in triangle + Karpathy/sources cross-linked
  - Added: dashboard↔Compounding, entities/_index↔LLM Wiki Pattern

graph.json physics for geometric arrangement:
- repelStrength: 80 (strong push-apart for uniform spacing)
- linkStrength: 3.0 (locks ring geometry)
- linkDistance: 80 (tighter rings)
- centerStrength: 0.25 (moderate center pull)
- nodeSizeMultiplier: 2.0 (hub nodes visually dominant)
- Added colors: questions=yellow, comparisons=red, nav=teal

Phantom links removed from Hot Cache.md:
- Removed [[Page A]], [[Page B]], [[New Page 1]], [[Existing Page]]

New module pages:
- wiki/questions/How does the LLM Wiki pattern work.md
- wiki/comparisons/Wiki vs RAG.md
- Adds questions/ and comparisons/ domains to the graph (yellow + red nodes)
2026-04-07 13:03:50 +03:00

62 lines
966 B
Markdown

---
type: meta
title: "Dashboard"
updated: 2026-04-07
tags:
- meta
- dashboard
status: evergreen
related:
- "[[index]]"
- "[[overview]]"
- "[[log]]"
- "[[concepts/_index]]"
- "[[Compounding Knowledge]]"
---
# Wiki Dashboard
Navigation: [[index]] | [[overview]] | [[log]] | [[hot]]
Requires the **Dataview** plugin: Settings > Community Plugins > Browse > "Dataview".
---
## Recent Activity
```dataview
TABLE type, status, updated FROM "wiki" SORT updated DESC LIMIT 15
```
---
## Seed Pages (Need Development)
```dataview
LIST FROM "wiki" WHERE status = "seed" SORT updated ASC
```
---
## Entities Missing Sources
```dataview
LIST FROM "wiki/entities" WHERE !sources OR length(sources) = 0
```
---
## Open Questions
```dataview
LIST FROM "wiki/questions" WHERE answer_quality = "draft" SORT created DESC
```
---
## Sources by Confidence
```dataview
TABLE author, date_published, confidence FROM "wiki/sources" SORT confidence ASC
```