Files
nexus/wiki/concepts/PersistentWiki.md
2026-05-03 05:42:12 +08:00

34 lines
1.7 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
title: "PersistentWiki"
type: concept
tags: [knowledge-management, wiki, llm, persistent]
sources: [llm-wiki]
last_updated: 2026-05-02
---
## Overview
持久化维基Persistent Wiki是 [[LLM Wiki]] 模式的核心产物——一个结构化的、相互链接的 Markdown 文件集合,介于用户与原始数据源之间。知识编译一次后持续保持最新,无需在每次查询时重新推导。
## Core Characteristics
- **持久化**:知识以结构化页面的形式存储,不随对话结束而消失
- **可积累**每添加一个新来源Wiki 就变得更丰富,而非从头推导
- **相互链接**:页面之间通过 [[wikilinks]] 链接,形成知识网络
- **主动维护**LLM 负责更新摘要、添加标签、标记矛盾,无需人类做"记账式"工作
## Three-Layer Architecture
持久化维基建立在 [[LLMWikiArchitecture]] 之上:
1. **Raw Sources**:原始文档(不可变)
2. **Wiki**LLM 生成的知识层(持久化维基本身)
3. **Schema**配置文件CLAUDE.md / AGENTS.md
## Operation Patterns
- **[[IngestWorkflow]]**导入工作流——LLM 读取源文件,创建/更新 Wiki 页面
- **[[QueryWorkflow]]**查询工作流——用户提问LLM 搜索 Wiki 并综合答案
- **[[LintWorkflow]]**:检查工作流——定期健康检查 Wiki
## Relationships
- [[PersistentWiki]] ← implements ← [[LLMWikiArchitecture]]
- [[PersistentWiki]] ← competes_with ← [[RAG]](传统 RAG 每次查询从零推导,持久化维基一次编译持续复用)
- [[PersistentWiki]] ← inspired_by ← [[Memex]]Vannevar Bush 1945
- [[LLM Wiki]] ← uses ← [[PersistentWiki]][[LLM Wiki]] 是完整模式,[[PersistentWiki]] 是其核心产物)