wiki-status
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseWiki Status — Audit & Delta
Wiki 状态 — 审计与差异计算
You are computing the current state of the wiki: what's been ingested, what's new since last ingest, and what the delta looks like. This helps the user decide whether to append (ingest the delta) or rebuild (archive and reprocess everything).
你正在计算wiki的当前状态:已摄入的内容、上次摄入后新增的内容,以及差异情况。这可以帮助用户决定是选择追加(仅摄入差异内容)还是重建(归档并重新处理所有内容)。
Before You Start
开始前准备
- Read to get
.env,OBSIDIAN_VAULT_PATH,OBSIDIAN_SOURCES_DIR,CLAUDE_HISTORY_PATHCODEX_HISTORY_PATH - Read at the vault root — this is the ingest tracking ledger
.manifest.json
- 读取 文件获取
.env、OBSIDIAN_VAULT_PATH、OBSIDIAN_SOURCES_DIR、CLAUDE_HISTORY_PATH参数CODEX_HISTORY_PATH - 读取vault根目录下的 文件——这是摄入跟踪台账
.manifest.json
The Manifest
说明清单
The manifest lives at . It tracks every source file that has been ingested. If it doesn't exist, this is a fresh vault with nothing ingested.
$OBSIDIAN_VAULT_PATH/.manifest.jsonjson
{
"version": 1,
"last_updated": "2026-04-06T10:30:00Z",
"sources": {
"/absolute/path/to/file.md": {
"ingested_at": "2026-04-06T10:30:00Z",
"size_bytes": 4523,
"modified_at": "2026-04-05T08:00:00Z",
"source_type": "document",
"project": null,
"pages_created": ["concepts/transformers.md"],
"pages_updated": ["entities/vaswani.md"]
},
"~/.claude/projects/-Users-name-my-app/abc123.jsonl": {
"ingested_at": "2026-04-06T11:00:00Z",
"size_bytes": 128000,
"modified_at": "2026-04-06T09:00:00Z",
"source_type": "claude_conversation",
"project": "my-app",
"pages_created": ["entities/my-app.md"],
"pages_updated": ["skills/react-debugging.md"]
}
},
"projects": {
"my-app": {
"source_path": "~/.claude/projects/-Users-name-my-app",
"vault_path": "projects/my-app",
"last_ingested": "2026-04-06T11:00:00Z",
"conversations_ingested": 5,
"conversations_total": 8,
"memory_files_ingested": 3
}
},
"stats": {
"total_sources_ingested": 42,
"total_pages": 87,
"total_projects": 6,
"last_full_rebuild": null
}
}说明清单存放在 路径下,它会跟踪所有已摄入的源文件。如果该文件不存在,说明这是一个全新的vault,还没有任何内容被摄入。
$OBSIDIAN_VAULT_PATH/.manifest.jsonjson
{
"version": 1,
"last_updated": "2026-04-06T10:30:00Z",
"sources": {
"/absolute/path/to/file.md": {
"ingested_at": "2026-04-06T10:30:00Z",
"size_bytes": 4523,
"modified_at": "2026-04-05T08:00:00Z",
"source_type": "document",
"project": null,
"pages_created": ["concepts/transformers.md"],
"pages_updated": ["entities/vaswani.md"]
},
"~/.claude/projects/-Users-name-my-app/abc123.jsonl": {
"ingested_at": "2026-04-06T11:00:00Z",
"size_bytes": 128000,
"modified_at": "2026-04-06T09:00:00Z",
"source_type": "claude_conversation",
"project": "my-app",
"pages_created": ["entities/my-app.md"],
"pages_updated": ["skills/react-debugging.md"]
}
},
"projects": {
"my-app": {
"source_path": "~/.claude/projects/-Users-name-my-app",
"vault_path": "projects/my-app",
"last_ingested": "2026-04-06T11:00:00Z",
"conversations_ingested": 5,
"conversations_total": 8,
"memory_files_ingested": 3
}
},
"stats": {
"total_sources_ingested": 42,
"total_pages": 87,
"total_projects": 6,
"last_full_rebuild": null
}
}Step 1: Scan Current Sources
步骤1:扫描当前数据源
Build an inventory of everything available to ingest right now:
梳理当前所有可摄入的内容清单:
Documents (from OBSIDIAN_SOURCES_DIR
)
OBSIDIAN_SOURCES_DIR文档(来自 OBSIDIAN_SOURCES_DIR
)
OBSIDIAN_SOURCES_DIRGlob each directory in OBSIDIAN_SOURCES_DIR for all text files
Record: path, size, modification time遍历OBSIDIAN_SOURCES_DIR下每个目录的所有文本文件
记录:路径、大小、修改时间Claude History (from CLAUDE_HISTORY_PATH
)
CLAUDE_HISTORY_PATHClaude历史记录(来自 CLAUDE_HISTORY_PATH
)
CLAUDE_HISTORY_PATHGlob: ~/.claude/projects/*/ → project directories
Glob: ~/.claude/projects/*/*.jsonl → conversation files
Glob: ~/.claude/projects/*/memory/*.md → memory files
Record: path, size, modification time, parent project遍历规则:~/.claude/projects/*/ → 项目目录
遍历规则:~/.claude/projects/*/*.jsonl → 对话文件
遍历规则:~/.claude/projects/*/memory/*.md → 记忆文件
记录:路径、大小、修改时间、所属项目Codex History (from CODEX_HISTORY_PATH
)
CODEX_HISTORY_PATHCodex历史记录(来自 CODEX_HISTORY_PATH
)
CODEX_HISTORY_PATHGlob: ~/.codex/session_index.jsonl → session inventory index
Glob: ~/.codex/sessions/**/rollout-*.jsonl → session rollout transcripts
Glob: ~/.codex/history.jsonl → optional local history log
Glob: ~/.codex/archived_sessions/**/rollout-*.jsonl → archived rollouts (if user wants archive coverage)
Record: path, size, modification time, inferred project from cwd when available遍历规则:~/.codex/session_index.jsonl → 会话库存索引
遍历规则:~/.codex/sessions/**/rollout-*.jsonl → 会话执行转录文件
遍历规则:~/.codex/history.jsonl → 可选本地历史日志
遍历规则:~/.codex/archived_sessions/**/rollout-*.jsonl → 已归档执行记录(如果用户需要覆盖归档内容)
记录:路径、大小、修改时间、可推断时从工作目录提取所属项目Any other sources the user has pointed at previously
用户此前指定的其他数据源
Check the manifest for source paths outside the standard directories.
检查说明清单中标准目录之外的源路径。
Step 2: Compute the Delta
步骤2:计算差异
Compare current sources against the manifest. Classify each source file:
| Status | Meaning | Action needed |
|---|---|---|
| New | File exists on disk, not in manifest | Needs ingesting |
| Modified | File in manifest, hash differs from | Needs re-ingesting |
| Touched | File in manifest, mtime newer but hash unchanged | Skip — content identical, no re-ingest needed |
| Unchanged | File in manifest, mtime and hash both match | Nothing to do |
| Deleted | In manifest, but file no longer exists on disk | Note it — wiki pages may be stale |
When a manifest entry has no (older entry), fall back to mtime comparison only.
content_hashFor Claude history specifically, also compute:
- New projects (directories in not in manifest)
~/.claude/projects/ - New conversations within existing projects
- Updated memory files
For Codex history specifically, also compute:
- New rollout files under
sessions/** - Updated entries (session title/freshness changes)
session_index.jsonl - Archived rollout delta only when archive coverage is requested
将当前数据源与说明清单进行对比,对每个源文件进行分类:
| 状态 | 含义 | 需要执行的操作 |
|---|---|---|
| 新增 | 文件存在于磁盘中,但不在说明清单内 | 需要摄入 |
| 已修改 | 文件在说明清单中,但哈希值与 | 需要重新摄入 |
| 仅触碰 | 文件在说明清单中,修改时间更新但哈希值未变 | 跳过——内容完全相同,无需重新摄入 |
| 未变更 | 文件在说明清单中,修改时间和哈希值均匹配 | 无需操作 |
| 已删除 | 存在于说明清单中,但磁盘上已无该文件 | 标记——wiki页面可能已过时 |
如果说明清单条目没有(旧条目),则仅回退到修改时间对比。
content_hash针对Claude历史记录,还需额外计算:
- 新增项目(下不在说明清单中的目录)
~/.claude/projects/ - 现有项目内的新增对话
- 更新的记忆文件
针对Codex历史记录,还需额外计算:
- 下的新增执行文件
sessions/** - 更新的条目(会话标题/新鲜度变更)
session_index.jsonl - 仅当请求覆盖归档内容时计算已归档执行记录的差异
Step 3: Report the Status
步骤3:状态汇报
Present a clear summary:
markdown
undefined展示清晰的汇总信息:
markdown
undefinedWiki Status
Wiki状态
Overview
概览
- Total wiki pages: 87 across 6 categories
- Total sources ingested: 42
- Projects tracked: 6
- Last ingest: 2026-04-06T11:00:00Z
- 总wiki页面数: 87,分布在6个分类下
- 已摄入总源文件数: 42
- 已跟踪项目数: 6
- 上次摄入时间: 2026-04-06T11:00:00Z
Delta (what's changed since last ingest)
差异(上次摄入后的变更内容)
New sources (never ingested): 12
新增源文件(从未摄入):12个
| Source | Type | Size |
|---|---|---|
| ~/Documents/research/new-paper.pdf | document | 2.1 MB |
| ~/.claude/projects/-Users-.../session-xyz.jsonl | claude_conversation | 340 KB |
| ~/.codex/sessions/2026/04/12/rollout-...jsonl | codex_rollout | 220 KB |
| ... |
| 源文件 | 类型 | 大小 |
|---|---|---|
| ~/Documents/research/new-paper.pdf | document | 2.1 MB |
| ~/.claude/projects/-Users-.../session-xyz.jsonl | claude_conversation | 340 KB |
| ~/.codex/sessions/2026/04/12/rollout-...jsonl | codex_rollout | 220 KB |
| ... |
Modified sources (need re-ingesting): 3
已修改源文件(需要重新摄入):3个
| Source | Last ingested | Last modified | Delta |
|---|---|---|---|
| ~/notes/architecture.md | 2026-04-01 | 2026-04-05 | 4 days newer |
| ... |
| 源文件 | 上次摄入时间 | 上次修改时间 | 差异 |
|---|---|---|---|
| ~/notes/architecture.md | 2026-04-01 | 2026-04-05 | 新了4天 |
| ... |
New projects (not yet in wiki): 2
新增项目(尚未加入wiki):2个
- tractorex (3 conversations, 2 memory files)
- papertech (1 conversation, 0 memory files)
- tractorex(3条对话,2个记忆文件)
- papertech(1条对话,0个记忆文件)
Deleted sources (ingested but gone): 0
已删除源文件(曾摄入但已不存在):0个
Summary
汇总
- Ready to ingest: 12 new + 3 modified = 15 sources
- Up to date: 27 sources unchanged
- Recommendation: Append (delta is small relative to total)
undefined- 可摄入内容: 12个新增 + 3个修改 = 15个源文件
- 已更新内容: 27个未变更源文件
- 建议: 追加(差异占总内容的比例很小)
undefinedStep 4: Recommend Action
步骤4:操作建议
Based on the delta, recommend one of:
| Situation | Recommendation |
|---|---|
| Delta is small (<20% of total) | Append — just ingest the new/modified sources |
| Delta is large (>50% of total) | Rebuild — archive and reprocess everything |
| Many deleted sources | Lint first — check for stale pages, then decide |
| First time / empty vault | Full ingest — process everything |
| User just wants to see status | No action — just report |
Tell the user:
- "You have X new sources and Y modified sources. I'd recommend [append/rebuild]."
- "Want me to [ingest the delta / rebuild from scratch / just look at a specific project]?"
根据差异情况,推荐以下操作之一:
| 场景 | 推荐操作 |
|---|---|
| 差异较小(<总内容的20%) | 追加 —— 仅摄入新增/修改的源文件 |
| 差异较大(>总内容的50%) | 重建 —— 归档并重新处理所有内容 |
| 存在大量已删除源文件 | 先检查 —— 排查过时页面,再做决定 |
| 首次使用/空vault | 全量摄入 —— 处理所有内容 |
| 用户仅想查看状态 | 无操作 —— 仅做汇报 |
告知用户:
- "你有X个新增源文件和Y个已修改源文件,我推荐[追加/重建]操作。"
- "需要我[摄入差异内容/从头重建/仅处理指定项目]吗?"
Insights Mode
洞察模式
Triggered when the user asks something like "wiki insights", "what's central in my wiki", "show me the hubs", "cross-domain bridges", "what pages are most important", or "wiki structure". This mode is additive — it doesn't replace the delta report, it analyzes the shape of the wiki itself.
Where the delta report tells the user what's pending, insights mode tells them what they've already built and where the interesting structure lives. Complements (which finds problems) by surfacing interesting structure.
wiki-lint当用户询问「wiki洞察」「我的wiki核心内容是什么」「展示中心节点」「跨领域桥接」「哪些页面最重要」或者「wiki结构」这类问题时触发该模式。此模式是附加功能——不会替换差异报告,它会分析wiki本身的结构。
差异报告告知用户待处理的内容,而洞察模式则告知用户已经构建的内容以及有意思的结构所在。它是对(排查问题)的补充,用于挖掘有价值的结构。
wiki-lintWhat to compute
计算内容
First, build the wikilink graph. Glob all pages, extract every , and build:
.md[[wikilink]]- = count of other pages that link to this page
incoming[page] - = count of pages this page links out to
outgoing[page] - = set of tags from frontmatter
tags[page] - = directory prefix (concepts/, entities/, skills/, etc.)
category[page]
You'll reuse this graph across all sections below.
-
Anchor pages (top hubs). Pages with the most incoming links — the load-bearing concepts.
- Rank all pages by count, take top 10
incoming - For each, note both incoming and outgoing counts: pages with high incoming and high outgoing are connector hubs (most valuable)
- Pages with high incoming but zero outgoing are sink hubs — flag as cross-linker candidates
- Rank all pages by
-
Bridge pages. Pages that connect otherwise-disconnected tag clusters — removing them would partition the graph. These are often more structurally important than raw hub count suggests.
- For each page P, find pairs of pages (A, B) where:
- A links to P, B is linked from P (or vice versa)
- A and B share no tags with each other
- P is the only path between A's tag cluster and B's tag cluster within 2 hops
- Rank by how many cross-cluster pairs P bridges; show top 5
- Label each: "bridges
P↔[tag-cluster-A]"[tag-cluster-B]
- For each page P, find pairs of pages (A, B) where:
-
Tag cluster cohesion. For each tag with ≥ 5 pages, score how tightly the pages within it are interconnected:
- = number of pages sharing this tag
n - = number of wikilinks between any two pages in this tag group
actual_links - — ratio of actual links to maximum possible
cohesion = actual_links / (n × (n−1) / 2) - Fragmented clusters (cohesion < 0.15, n ≥ 5): these pages share a topic but aren't woven together. Surface them as cross-linker targets.
- Show top 5 tags by cohesion (strongest clusters) and bottom 5 (most fragmented)
-
Surprising connections. Cross-category wikilinks that are non-obvious — scored by how unexpected they are:
- Score each wikilink that crosses category boundaries (e.g., →
concepts/,entities/→skills/):synthesis/- +3 if the linking page or claim is marked (uncertain connection, worth reviewing)
^[ambiguous] - +2 if the linking page is marked (synthesized, not directly stated)
^[inferred] - +2 if the categories are in different knowledge layers (e.g., ↔
conceptsmore surprising thanentities↔concepts)concepts - +2 if source page has ≤ 2 total links (peripheral) but target has ≥ 8 (hub) — unexpected reach from edge to center
- +3 if the linking page or claim is marked
- Show top 5 scored connections with a plain-language reason for each
- Score each wikilink that crosses category boundaries (e.g.,
-
Orphan-adjacent suggestions. Pages linked from a top-10 hub but with zero outgoing links of their own. Dead-ends in high-traffic areas — prime cross-linker candidates.
-
Rough clusters. Group anchor pages by dominant tag. (Simple tag intersection — just for orientation.)
-
Graph delta since last run. Compare the current link graph to the snapshot stored in the previous:
_insights.md- Read the line at the bottom of the previous
<!-- GRAPH_SNAPSHOT: ... -->(if it exists) — it contains a compact JSON edge list_insights.md - Compute: new pages added, pages removed, new wikilinks created, wikilinks removed
- Flag: pages that were isolated last run but now have incoming links ("newly connected: X, Y")
- Flag: pages that lost incoming links since last run ("link target may have been renamed: A, B")
- If no previous snapshot exists, skip this section
- Read the
-
Suggested questions. Questions this wiki structure is uniquely positioned to answer — or that reveal gaps:
- From claims: "Resolve: What is the exact relationship between
^[ambiguous]andX?"Y - From bridge pages: "Explore: Why does connect
Pto[cluster-A]?"[cluster-B] - From pages with zero incoming links: "Link: has no incoming links — what should reference it?"
X - From fragmented clusters (cohesion < 0.15): "Audit: Should tag be split into more focused sub-tags?"
[T] - Show up to 7, prioritizing AMBIGUOUS first, then bridge nodes, then isolates
- From
首先,构建wiki链接图谱。 遍历所有页面,提取所有,构建以下数据:
.md[[wikilink]]- = 指向该页面的其他页面数量
incoming[page] - = 该页面指向的其他页面数量
outgoing[page] - = 页面 frontmatter 中的标签集合
tags[page] - = 目录前缀(concepts/、entities/、skills/等)
category[page]
以下所有部分都会复用这个图谱。
-
锚点页面(顶级中心节点)。 入站链接最多的页面——核心承载概念。
- 按计数对所有页面排序,取前10名
incoming - 每个页面同时标注入站和出站计数:入站和出站都高的页面是连接中心(价值最高)
- 入站高但出站为0的页面是下沉中心——标记为跨链接候选
- 按
-
桥接页面。 连接原本互不关联的标签集群的页面——移除它们会拆分图谱。这类页面的结构重要性通常比原始中心计数体现的更高。
- 对每个页面P,寻找符合以下条件的页面对(A, B):
- A指向P,B被P指向(或反之)
- A和B互相没有共同标签
- P是2跳范围内A的标签集群和B的标签集群之间的唯一路径
- 按P桥接的跨集群对数量排序,展示前5名
- 标注每个条目:"桥接
P↔[标签集群A]"[标签集群B]
- 对每个页面P,寻找符合以下条件的页面对(A, B):
-
标签集群内聚度。 对每个关联≥5个页面的标签,评分该标签下页面的互联紧密程度:
- = 共享该标签的页面数量
n - = 该标签组内任意两个页面之间的wiki链接数量
actual_links - —— 实际链接数与最大可能链接数的比值
内聚度 = actual_links / (n × (n−1) / 2) - 碎片化集群(内聚度<0.15,n≥5):这些页面主题相同但没有互联,标记为跨链接目标
- 展示内聚度最高的前5个标签(最强集群)和最低的5个标签(最碎片化)
-
意外关联。 非显而易见的跨分类wiki链接,按意外程度评分:
- 对每个跨分类边界的wiki链接(例如→
concepts/、entities/→skills/)评分:synthesis/- +3 如果链接页面或声明标注了(关联不确定,值得复查)
^[ambiguous] - +2 如果链接页面标注了(合成内容,非直接陈述)
^[inferred] - +2 如果分类属于不同知识层(例如↔
concepts比entities↔concepts更意外)concepts - +2 如果源页面总链接数≤2(边缘页面)但目标页面≥8(中心节点)——从边缘到中心的意外关联
- +3 如果链接页面或声明标注了
- 展示评分最高的5个关联,每个标注直白的原因
- 对每个跨分类边界的wiki链接(例如
-
近孤立页面建议。 被前10名中心页面链接,但自身没有出站链接的页面。高流量区域的死胡同——优先跨链接候选。
-
粗略集群。 按主导标签对锚点页面分组(简单标签交集,仅用于定位)。
-
上次运行以来的图谱差异。 对比当前链接图谱与上一次中存储的快照:
_insights.md- 读取上一次(如果存在)底部的
_insights.md行——它包含紧凑的JSON边列表<!-- GRAPH_SNAPSHOT: ... --> - 计算:新增页面、删除页面、新增wiki链接、移除的wiki链接
- 标记:上次运行时孤立但现在有入站链接的页面("新增关联:X, Y")
- 标记:上次运行以来丢失入站链接的页面("链接目标可能已重命名:A, B")
- 如果没有历史快照,跳过该部分
- 读取上一次
-
建议问题。 该wiki结构最适合回答的问题——或能暴露缺口的问题:
- 来自声明:"待确认:
^[ambiguous]和X之间的确切关系是什么?"Y - 来自桥接页面:"待探索:为什么连接了
P和[集群A]?"[集群B] - 来自无入站链接的页面:"待关联:没有入站链接——哪些内容应该引用它?"
X - 来自碎片化集群(内聚度<0.15):"待审计:标签是否应该拆分为更聚焦的子标签?"
[T] - 最多展示7个,优先排序:歧义声明>桥接节点>孤立页面
- 来自
Output
输出
Write the result to at the vault root. Overwrite freely — it's regenerable. At the very end, embed a compact graph snapshot as an HTML comment so the next run can diff against it.
_insights.mdmarkdown
undefined将结果写入vault根目录的文件,可自由覆盖——内容可重新生成。在文件最末尾,嵌入紧凑的图谱快照作为HTML注释,方便下次运行时对比差异。
_insights.mdmarkdown
undefinedWiki Insights — <TIMESTAMP>
Wiki 洞察 — <时间戳>
Anchor Pages (top 10 hubs)
锚点页面(前10大中心节点)
| Page | Incoming | Outgoing | Note |
|---|---|---|---|
| [[concepts/transformer-architecture]] | 23 | 8 | connector hub |
| [[entities/andrej-karpathy]] | 17 | 0 | sink hub — cross-linker candidate |
| 页面 | 入站链接数 | 出站链接数 | 备注 |
|---|---|---|---|
| [[concepts/transformer-architecture]] | 23 | 8 | 连接中心 |
| [[entities/andrej-karpathy]] | 17 | 0 | 下沉中心 —— 跨链接候选 |
Bridge Pages (top 5)
桥接页面(前5名)
| Page | Bridges | Cross-cluster pairs |
|---|---|---|
| [[concepts/exponential-growth]] | #ml ↔ #economics | 4 pairs |
| 页面 | 桥接集群 | 跨集群对数量 |
|---|---|---|
| [[concepts/exponential-growth]] | #ml ↔ #economics | 4对 |
Tag Cluster Cohesion
标签集群内聚度
Most cohesive (well-linked)
内聚度最高(关联完善)
- #ml — 12 pages, cohesion 0.41
- #ml —— 12个页面,内聚度0.41
Most fragmented (cross-linker targets)
最碎片化(跨链接目标)
- #systems — 7 pages, cohesion 0.06 ⚠️ run cross-linker on this tag
- #systems ——7个页面,内聚度0.06 ⚠️ 对该标签运行跨链接工具
Surprising Connections (top 5)
意外关联(前5名)
- [[concepts/scaling-laws]] → [[entities/gordon-moore]] — score 5
- Reason: cross-layer (concepts ↔ entities), marked ^[inferred]
- ...
- [[concepts/scaling-laws]] → [[entities/gordon-moore]] —— 得分5
- 原因:跨层(concepts ↔ entities),标记为^[inferred]
- ...
Orphan-Adjacent (dead-ends near hubs)
近孤立页面(中心节点附近的死胡同)
- [[concepts/foo]] — linked from 3 hubs, 0 outbound links
- [[concepts/foo]] —— 被3个中心节点链接,0个出站链接
Rough Clusters
粗略集群
- #ml — transformer-architecture, attention-mechanism, scaling-laws
- #systems — distributed-consensus, raft, paxos
- #ml —— transformer-architecture, attention-mechanism, scaling-laws
- #systems —— distributed-consensus, raft, paxos
Graph Delta Since Last Run
上次运行以来的图谱差异
- +3 new pages, +11 new wikilinks
- Newly connected: [[concepts/bar]], [[entities/baz]]
- Lost incoming links: [[references/old-paper]] (target may have been renamed)
- +3个新页面,+11条新wiki链接
- 新增关联:[[concepts/bar]], [[entities/baz]]
- 丢失入站链接:[[references/old-paper]](目标可能已重命名)
Questions Worth Asking
值得探索的问题
- Resolve: What is the exact relationship between and
scaling-laws? (^[ambiguous] claim)moore's-law - Explore: Why does bridge #ml and #economics?
exponential-growth - Link: has no incoming links — what should reference it?
references/foo.md - Audit: Should tag be split? (cohesion 0.06, 7 pages)
#systems
After writing the file, append to `log.md`:- [TIMESTAMP] STATUS_INSIGHTS anchors=10 bridges=N cohesion_checked=T surprising=5 questions=7 delta="+N pages +M links"
undefined- 确认:和
scaling-laws之间的确切关系是什么?(^[ambiguous] 声明)moore's-law - 探索:为什么桥接了#ml和#economics?
exponential-growth - 关联:没有入站链接——哪些内容应该引用它?
references/foo.md - 审计:标签是否应该拆分?(内聚度0.06,7个页面)
#systems
写入文件后,追加到`log.md`:- [时间戳] STATUS_INSIGHTS anchors=10 bridges=N cohesion_checked=T surprising=5 questions=7 delta="+N pages +M links"
undefinedWhen to skip
跳过场景
- Vaults with fewer than 20 pages — not enough graph structure. Tell the user and skip.
- After a fresh — wait until at least one ingest has happened.
wiki-rebuild
- 页面少于20个的vault——图谱结构不足,告知用户后跳过
- 刚执行完之后——等待至少完成一次摄入后再运行
wiki-rebuild
Notes
注意事项
- If the manifest doesn't exist, report everything as "new" and recommend a full ingest
- This skill only reads and reports — it doesn't modify anything (except writing in insights mode, which is regenerable)
_insights.md - The actual ingest work is done by the ingest skills (,
wiki-ingest,claude-history-ingest,codex-history-ingest)data-ingest - Those skills are responsible for updating the manifest after they finish
- 如果说明清单不存在,将所有内容标记为「新增」并推荐全量摄入
- 该skill仅执行读取和汇报操作——不会修改任何内容(洞察模式下写入可重新生成的除外)
_insights.md - 实际的摄入工作由摄入类skill完成(、
wiki-ingest、claude-history-ingest、codex-history-ingest)data-ingest - 这些skill负责在运行完成后更新说明清单