feat: 整合 LLM Wiki v2 知识管理框架

- 新增 knowledge-management/ (3页): memory-lifecycle, knowledge-graph, wiki-operations
- 新增 entities/index.md: 实体索引 + Typed Relationships
- SCHEMA.md: 新增 confidence/superset/decay 字段 + 知识管理标签体系
- index.md: Total pages 35→39
- log.md: 完整变更记录
This commit is contained in:
zhiqiang feng
2026-04-13 11:32:34 +08:00
parent 86c6088819
commit 634d8b3406
7 changed files with 861 additions and 28 deletions
+96 -13
View File
@@ -37,6 +37,17 @@ updated: YYYY-MM-DD
type: entity | concept | comparison | query | summary
tags: [從下方標籤體系選取]
sources: [raw/articles/source-name.md]
confidence: 0.0-1.0 # 知識置信度(可選,預設 0.5
sources_count: N # 支持該事實的來源數量(可選)
last_confirmed: YYYY-MM-DD # 最近一次確認時間(可選)
superseded_by: page-name # 被哪個頁面替代(可選,見 supersession 機制)
supersedes: page-name # 替代了哪個頁面(可選)
status: active|stale|dormant|archived # 知識狀態(預設 active
relationships: # 實體頁面專用(可選)
- target: page-name
type: uses|deploys|depends_on|supersedes|...
detail: 可選描述
confidence: 0.0-1.0
---
```
@@ -64,6 +75,18 @@ sources: [raw/articles/source-name.md]
- 前沿技術:`digital-twins`, `agentic-ai`, `biometric`, `human-centered-design`, `hyper-personalization`, `sustainability`
- 運營設施:`aocc`, `ioc`
### 知識管理標籤
- `knowledge-management`:知識管理與 wiki 運營
- `confidence`:置信度相關內容
- `supersession`:替代機制
- `forgetting`:遺忘曲線 / 知識衰減
- `consolidation-tier`:整合層次(working/episodic/semantic/procedural
- `knowledge-graph`:知識圖譜、實體關係圖
- `entity`:實體頁面標記
- `typed-relationship`:類型化關係(uses/deploys/depends_on 等)
- `automation`:自動化操作鉤子
- `event-hooks`:事件驅動架構
### 通用標籤
- `ai-ml`AI/ML 應用
- `comparison`:對比分析
@@ -71,6 +94,8 @@ sources: [raw/articles/source-name.md]
- `glossary`:術語表
- `draft`:草稿
- `archived`:歸檔
- `stale`:已過時(被 supersede
- `dormant`:休眠(長期未訪問)
## Page Thresholds(頁面創建規則)
@@ -100,24 +125,40 @@ airport-wiki/
│ │ ├── prefab-modular-dc.md
│ │ ├── modern-airport-trends.md
│ │ └── glossary.md
── flight-operations/ # 航班運營系統(10頁)
├── a-cdm.md
├── aodb-core.md
├── aodb-vendors.md
├── aodb-acdm-integration.md
├── smgcs.md
├── baggage-handling.md
├── flight-data-exchange.md
├── smart-gating.md
├── deicing-operations.md
── airport-systems-landscape.md # 系統層級總圖(新建)
── flight-operations/ # 航班運營系統(16頁)
├── a-cdm.md
├── aodb-core.md
├── aodb-vendors.md
├── smgcs.md
├── baggage-handling.md
├── flight-data-exchange.md
├── smart-gating.md
├── deicing-operations.md
├── airport-systems-landscape.md
── agentic-ai-airports.md
│ │ ├── aocc-ioc.md
│ │ ├── biometric-corridors.md
│ │ ├── digital-twins-airports.md
│ │ ├── future-airport-info-center.md
│ │ ├── open-architecture.md
│ │ └── universal-design-airports.md
│ └── knowledge-management/ # 知識管理(3頁,2026-04-13 新增)
│ ├── memory-lifecycle.md # 置信度/superset/遺忘機制
│ ├── knowledge-graph.md # 實體圖譜/類型化關係
│ └── wiki-operations.md # 事件鉤子/自動化
├── comparisons/ # 橫向對比
│ ├── airport-dc-case-studies.md
│ └── airport-operations-systems.md
├── entities/ # 機場實體案例
│ ├── index.md # 實體索引 + 關係圖譜
│ ├── shenzhen-airport.md
│ ├── zhengzhou-airport-hangang.md
── fuzhou-changle-airport-bsj.md
── fuzhou-changle-airport-bsj.md
│ ├── jfk-airport.md
│ ├── pittsburgh-airport.md
│ ├── rome-fiumicino-airport.md
│ └── singapore-changi-airport.md
├── _archive/ # 被 supersede 的歷史版本(待建立)
└── raw/
├── articles/
├── papers/
@@ -130,8 +171,22 @@ airport-wiki/
每個主要實體一頁,包括:
- 概述 / 是什麼
- 關鍵事實和數據
- 與其他實體的關係([[wikilinks]]
- 與其他實體的 Typed Relationships`relationships` 字段
- 來源引用
- 置信度(`confidence`)、來源數量(`sources_count`)、最後確認時間(`last_confirmed`
```yaml
# entities/example.md frontmatter 格式
type: entity
entity_type: airport # airport | vendor | hardware | system | standard | project
confidence: 0.9
sources_count: 2
last_confirmed: 2026-04-13
relationships:
- target: another-entity
type: uses|deploys|depends_on|supersedes|...
confidence: 0.85
```
## Concept Pages(概念頁面)
@@ -151,12 +206,40 @@ airport-wiki/
## Update Policy(更新政策)
### Supersession 機制(新)
當新信息與現有內容衝突或更新現有內容時:
1. 將新內容寫入原頁面,更新 `updated` 日期
2. 舊版本完整內容移動至 `_archive/[original-name]-[date].md`
3. 舊版本 frontmatter 添加:
```yaml
superseded_by: [new-page-name]
superseded_date: YYYY-MM-DD
status: stale
```
4. 新版本 frontmatter 添加:
```yaml
supersedes: [old-page-name]
supersedes_date: YYYY-MM-DD
```
5. 觸發 `On memory write` 鉤子,記錄至 log.md
### 衝突檢測(原有,擴展)
新信息與現有內容衝突時:
1. 檢查日期 — 新來源通常取代舊來源
2. 如確實矛盾,記錄雙方立場和日期、來源
3. 在 frontmatter 標記:`contradictions: [page-name]`
4. 在 lint 報告中標記待用戶審核
### Confidence Decay(新增)
定時任務自動衰減置信度:
- 架構決策:每月衰減 0.5%
- 供應商/硬件規格:每月衰減 1%
- 項目進度:每月衰減 5%
- 每次被引用/確認:置信度恢復 +0.1,上限 0.98
## Glossary(術語表)
建設和運營涉及的英文縮寫和術語,統一在 `concepts/tech-infrastructure/glossary.md` 中解釋。