@zosmaai/pi-llm-wiki
Version:
Self-maintaining LLM Wiki for Pi — Karpathy-pattern knowledge base with immutable source capture, automated ingestion, search, linting, and Obsidian-compatible vault. auto-updating personal & company wiki.
51 lines (35 loc) • 916 B
Markdown
> Live views powered by Obsidian Dataview. Install the [Dataview plugin](https://github.com/blacksmithgu/obsidian-dataview) for this to work.
```dataview
TABLE updated, type AS "Type", file.folder AS "Folder"
FROM "wiki"
SORT updated DESC
LIMIT 20
```
```dataview
TABLE rows.file.link AS "Pages"
FROM "wiki"
GROUP BY type
```
```dataview
TABLE confidence, updated, file.folder AS "Folder"
FROM "wiki"
WHERE confidence = "low"
SORT updated ASC
```
_Pages with no inbound [[wikilinks]] — run `/wiki-lint` to detect and fix._
_Pages with the most inbound [[wikilinks]] — these are the knowledge hubs._
_Topics mentioned but lacking their own page — run `/wiki-lint` to detect._
```dataview
LIST
FROM "wiki/LOG.md"
SORT file.mtime DESC
LIMIT 10
```