把分散在 3 机器(Mac / Cookie / 云端)+ Projects 仓库 + OpenClaw workspace 的素材, 通过 4 个核心操作(Ingest / Query / Lint / Compile)编译为 LLM 可查询的结构化知识网络, 供 Career Mentor / 周回顾等下游 Agent 消费。
flowchart LR
subgraph SRC["三机原始素材"]
direction TB
R1["Mac
~/Projects/* + .openclaw/"]
R2["Cookie / Win
项目仓库 + memory"]
R3["腾讯云
OpenClaw runtime"]
end
subgraph OPS["4 个核心操作"]
direction TB
O1["Ingest
摄入 → 创建 / 更新 wiki 页"]
O2["Compile
批量编译未处理 raw"]
O3["Lint
矛盾 / 孤岛 / 过期 / 断链"]
O4["Query
index 定位 → 综合回答"]
end
subgraph WIKI["50+ wiki 页面"]
direction TB
W1["projects/
32 项目页"]
W2["concepts/
7 frozen 概念"]
W3["entities/
5 实体"]
end
subgraph DOWN["下游 Agent 消费"]
direction TB
D1["Career Mentor
职业分析"]
D2["周回顾
基于 wiki query"]
D3["OpenClaw
memory 引用"]
end
SRC -->|"mtime 对账"| OPS
OPS --> WIKI
WIKI --> DOWN
classDef srcBox fill:#fafafa,stroke:#a3a3a3,color:#0a0a0a
classDef opsBox fill:#fff,stroke:#0a0a0a,color:#0a0a0a
classDef wikiBox fill:#f5f5f5,stroke:#0a0a0a,color:#0a0a0a
classDef downBox fill:#0a0a0a,stroke:#0a0a0a,color:#fff
class R1,R2,R3 srcBox
class O1,O2,O3,O4 opsBox
class W1,W2,W3 wikiBox
class D1,D2,D3 downBox