@itradingai/aiwiki 0.2.18 → 0.2.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -12
- package/dist/src/app.js +9 -17
- package/dist/src/ingest.js +52 -27
- package/dist/src/lint.js +84 -1
- package/dist/src/payload.js +25 -10
- package/dist/src/wiki-entry.js +3 -3
- package/dist/src/workspace.js +18 -9
- package/docs/20260607-aiwiki-feature-pruning-plan.md +468 -0
- package/docs/20260607-aiwiki-long-term-operating-roadmap.md +409 -0
- package/docs/AGENT_HANDOFF.md +6 -7
- package/docs/FAQ.md +8 -2
- package/docs/README.md +8 -4
- package/docs/RELEASE.md +9 -14
- package/docs/ROADMAP.md +5 -0
- package/docs/SHOWCASE.md +19 -9
- package/docs/USAGE.md +23 -19
- package/docs/development-log.md +227 -0
- package/examples/demo-run/README.md +28 -0
- package/examples/demo-run/context-output.json +341 -0
- package/examples/demo-run/ingest-agent-output.txt +25 -0
- package/examples/demo-run/ingest-file-output.txt +23 -0
- package/examples/demo-run/input/agent-enriched-payload.json +88 -0
- package/examples/demo-run/input/local-article.md +5 -0
- package/examples/demo-run/lint-output.json +46 -0
- package/examples/demo-run/query-output.txt +54 -0
- package/examples/demo-run/setup-output.txt +9 -0
- package/examples/demo-run/status-output.txt +20 -0
- package/examples/obsidian-vault-sample/02-raw/articles/llm-wiki-notes.md +32 -0
- package/examples/obsidian-vault-sample/02-raw/articles/local-article.md +33 -0
- package/examples/obsidian-vault-sample/03-sources/article-cards/llm-wiki-notes.md +62 -0
- package/examples/obsidian-vault-sample/03-sources/article-cards/local-article.md +58 -0
- package/examples/obsidian-vault-sample/04-claims/_suggestions/llm-wiki-notes-claims.md +58 -0
- package/examples/obsidian-vault-sample/05-wiki/source-knowledge/llm-wiki-notes.md +103 -0
- package/examples/obsidian-vault-sample/05-wiki/source-knowledge/local-article.md +72 -0
- package/examples/obsidian-vault-sample/06-assets/_suggestions/llm-wiki-notes-assets.md +29 -0
- package/examples/obsidian-vault-sample/07-topics/ready/llm-wiki-notes-topics.md +29 -0
- package/examples/obsidian-vault-sample/08-outputs/outlines/llm-wiki-notes-outline.md +43 -0
- package/examples/obsidian-vault-sample/09-runs/20260608-160603905-085f05/payload.json +24 -0
- package/examples/obsidian-vault-sample/09-runs/20260608-160603905-085f05/processing-summary.md +56 -0
- package/examples/obsidian-vault-sample/09-runs/20260608-160603905-085f05/raw.md +33 -0
- package/examples/obsidian-vault-sample/09-runs/20260608-160603905-085f05/source-card.md +58 -0
- package/examples/obsidian-vault-sample/09-runs/20260608-160603905-085f05/wiki-entry.md +72 -0
- package/examples/obsidian-vault-sample/09-runs/20260608-160603980-89f570/creative-assets.md +29 -0
- package/examples/obsidian-vault-sample/09-runs/20260608-160603980-89f570/draft-outline.md +43 -0
- package/examples/obsidian-vault-sample/09-runs/20260608-160603980-89f570/payload.json +91 -0
- package/examples/obsidian-vault-sample/09-runs/20260608-160603980-89f570/processing-summary.md +67 -0
- package/examples/obsidian-vault-sample/09-runs/20260608-160603980-89f570/raw.md +32 -0
- package/examples/obsidian-vault-sample/09-runs/20260608-160603980-89f570/source-card.md +62 -0
- package/examples/obsidian-vault-sample/09-runs/20260608-160603980-89f570/topics.md +29 -0
- package/examples/obsidian-vault-sample/09-runs/20260608-160603980-89f570/wiki-entry.md +103 -0
- package/examples/obsidian-vault-sample/_system/index.md +37 -0
- package/examples/obsidian-vault-sample/_system/log.md +8 -0
- package/examples/obsidian-vault-sample/_system/purpose.md +31 -0
- package/examples/obsidian-vault-sample/_system/schemas/aiwiki-frontmatter.md +21 -0
- package/examples/obsidian-vault-sample/_system/templates/review-note.md +16 -0
- package/examples/obsidian-vault-sample/_system/templates/source-card.md +34 -0
- package/examples/obsidian-vault-sample/aiwiki.yaml +18 -0
- package/examples/obsidian-vault-sample/dashboards/AIWiki Home.md +31 -0
- package/examples/obsidian-vault-sample/dashboards/Recent Runs.md +10 -0
- package/examples/obsidian-vault-sample/dashboards/Review Queue.md +12 -0
- package/examples/obsidian-vault-sample/dashboards/Source Cards.md +10 -0
- package/examples/obsidian-vault-sample/dashboards/Topic Pipeline.md +10 -0
- package/examples/obsidian-vault-sample/dashboards/Wiki Entries.md +10 -0
- package/package.json +13 -2
- package/skill/LINT_PROTOCOL.md +6 -4
- package/skill/SKILL.md +12 -5
- package/docs/POSITIONING_CONTEXT_COMPILER_PLAN.md +0 -347
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
---
|
|
2
|
+
aiwiki_id: "local-article:wiki-entry"
|
|
3
|
+
type: "wiki_entry"
|
|
4
|
+
wiki_type: "source_knowledge"
|
|
5
|
+
source_role: "input"
|
|
6
|
+
represents_user_view: false
|
|
7
|
+
status: "active"
|
|
8
|
+
generation_mode: "deterministic_fallback"
|
|
9
|
+
quality: "scaffold"
|
|
10
|
+
generated_by: "aiwiki_cli"
|
|
11
|
+
llm_enriched: false
|
|
12
|
+
title: "local-article"
|
|
13
|
+
slug: "local-article"
|
|
14
|
+
source_url: ""
|
|
15
|
+
source_type: "file"
|
|
16
|
+
source_card: "03-sources/article-cards/local-article.md"
|
|
17
|
+
raw_file: "02-raw/articles/local-article.md"
|
|
18
|
+
run_summary: "09-runs/20260608-160603905-085f05/processing-summary.md"
|
|
19
|
+
run_id: "20260608-160603905-085f05"
|
|
20
|
+
content_fingerprint: "sha256:24fb289f405c9dd3952100a30295c78f80aacabfd6fb08f7e098db86bd9ab7b9"
|
|
21
|
+
created_at: "2026-06-08T16:06:03.905Z"
|
|
22
|
+
updated_at: "2026-06-08T16:06:03.905Z"
|
|
23
|
+
topics: []
|
|
24
|
+
claims: []
|
|
25
|
+
grounding_evidence_available: false
|
|
26
|
+
grounding_evidence_channel: "none"
|
|
27
|
+
grounding_needs_review: false
|
|
28
|
+
grounding_markers: []
|
|
29
|
+
grounding_claim_count: "0"
|
|
30
|
+
grounding_claim_quote_count: "0"
|
|
31
|
+
grounding_unsupported_claim_count: "0"
|
|
32
|
+
coverage_suspected_incomplete: false
|
|
33
|
+
tags: ["aiwiki/wiki-entry"]
|
|
34
|
+
---
|
|
35
|
+
# local-article
|
|
36
|
+
|
|
37
|
+
## 说明
|
|
38
|
+
|
|
39
|
+
这是 AIWiki 根据原文和元数据生成的基础 Wiki 条目。当前条目未经过宿主 Agent 的深度分析,仅用于建立知识库索引、来源追踪和后续 Query。
|
|
40
|
+
|
|
41
|
+
## 来源信息
|
|
42
|
+
|
|
43
|
+
- 原文链接:无
|
|
44
|
+
- Source Card:[[03-sources/article-cards/local-article|资料卡]]
|
|
45
|
+
- Raw:[[02-raw/articles/local-article|原文]]
|
|
46
|
+
- Run:[[09-runs/20260608-160603905-085f05/processing-summary|处理记录]]
|
|
47
|
+
|
|
48
|
+
## 内容预览
|
|
49
|
+
|
|
50
|
+
> # 示例文章 这是一篇用于 `aiwiki ingest-file` 的中文测试文章。 它应该被保存为 raw,并生成资料卡、建议素材和 processing-summary。
|
|
51
|
+
|
|
52
|
+
## 待 Agent 补全
|
|
53
|
+
|
|
54
|
+
以下内容需要宿主 Agent 基于原文进一步生成:
|
|
55
|
+
|
|
56
|
+
- 一句话总结
|
|
57
|
+
- 核心观点
|
|
58
|
+
- 可复用知识点
|
|
59
|
+
- 相关概念
|
|
60
|
+
- 适用场景
|
|
61
|
+
- 可转化选题
|
|
62
|
+
|
|
63
|
+
- 证据通道:none
|
|
64
|
+
- 需要复核:no
|
|
65
|
+
- 疑似标记:none
|
|
66
|
+
- Claim 引用覆盖:0/0
|
|
67
|
+
|
|
68
|
+
## 来源
|
|
69
|
+
|
|
70
|
+
- Source Card: [[03-sources/article-cards/local-article|资料卡]]
|
|
71
|
+
- Raw: [[02-raw/articles/local-article|原文]]
|
|
72
|
+
- Run: [[09-runs/20260608-160603905-085f05/processing-summary|处理记录]]
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
---
|
|
2
|
+
aiwiki_id: "llm-wiki-notes:assets"
|
|
3
|
+
title: "LLM Wiki Notes Assets"
|
|
4
|
+
type: "asset_suggestions"
|
|
5
|
+
status: "to-review"
|
|
6
|
+
slug: "llm-wiki-notes"
|
|
7
|
+
source_url: "https://example.com/llm-wiki"
|
|
8
|
+
source_type: "url"
|
|
9
|
+
created_at: "2026-06-08T16:06:03.980Z"
|
|
10
|
+
captured_at: "2026-05-14T10:00:00+08:00"
|
|
11
|
+
run_id: "20260608-160603980-89f570"
|
|
12
|
+
content_fingerprint: "sha256:7e9fcf3257160956b260fe36c2c3dbdddf91b86856e989045eee547ff0019a9a"
|
|
13
|
+
wiki_entry: "[[05-wiki/source-knowledge/llm-wiki-notes|Wiki 条目]]"
|
|
14
|
+
source_card: "[[03-sources/article-cards/llm-wiki-notes|资料卡]]"
|
|
15
|
+
raw_note: "[[02-raw/articles/llm-wiki-notes|原文]]"
|
|
16
|
+
claims_note: "[[04-claims/_suggestions/llm-wiki-notes-claims|Claim 建议]]"
|
|
17
|
+
assets_note: "[[06-assets/_suggestions/llm-wiki-notes-assets|素材建议]]"
|
|
18
|
+
topics_note: "[[07-topics/ready/llm-wiki-notes-topics|选题]]"
|
|
19
|
+
outline_note: "[[08-outputs/outlines/llm-wiki-notes-outline|大纲]]"
|
|
20
|
+
run_summary: "[[09-runs/20260608-160603980-89f570/processing-summary|处理记录]]"
|
|
21
|
+
tags: ["aiwiki/assets"]
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
# 素材建议
|
|
25
|
+
|
|
26
|
+
- Wiki 条目:[[05-wiki/source-knowledge/llm-wiki-notes|Wiki 条目]]
|
|
27
|
+
- 资料卡:[[03-sources/article-cards/llm-wiki-notes|资料卡]]
|
|
28
|
+
- 原文:[[02-raw/articles/llm-wiki-notes|原文]]
|
|
29
|
+
- 可复用素材:LLM Wiki Notes
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
---
|
|
2
|
+
aiwiki_id: "llm-wiki-notes:outline"
|
|
3
|
+
title: "LLM Wiki Notes Outline"
|
|
4
|
+
type: "draft_outline"
|
|
5
|
+
status: "draft"
|
|
6
|
+
slug: "llm-wiki-notes"
|
|
7
|
+
source_url: "https://example.com/llm-wiki"
|
|
8
|
+
source_type: "url"
|
|
9
|
+
created_at: "2026-06-08T16:06:03.980Z"
|
|
10
|
+
captured_at: "2026-05-14T10:00:00+08:00"
|
|
11
|
+
run_id: "20260608-160603980-89f570"
|
|
12
|
+
content_fingerprint: "sha256:7e9fcf3257160956b260fe36c2c3dbdddf91b86856e989045eee547ff0019a9a"
|
|
13
|
+
wiki_entry: "[[05-wiki/source-knowledge/llm-wiki-notes|Wiki 条目]]"
|
|
14
|
+
source_card: "[[03-sources/article-cards/llm-wiki-notes|资料卡]]"
|
|
15
|
+
raw_note: "[[02-raw/articles/llm-wiki-notes|原文]]"
|
|
16
|
+
claims_note: "[[04-claims/_suggestions/llm-wiki-notes-claims|Claim 建议]]"
|
|
17
|
+
assets_note: "[[06-assets/_suggestions/llm-wiki-notes-assets|素材建议]]"
|
|
18
|
+
topics_note: "[[07-topics/ready/llm-wiki-notes-topics|选题]]"
|
|
19
|
+
outline_note: "[[08-outputs/outlines/llm-wiki-notes-outline|大纲]]"
|
|
20
|
+
run_summary: "[[09-runs/20260608-160603980-89f570/processing-summary|处理记录]]"
|
|
21
|
+
tags: ["aiwiki/outline"]
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
# 草稿大纲
|
|
25
|
+
|
|
26
|
+
Wiki 条目:[[05-wiki/source-knowledge/llm-wiki-notes|Wiki 条目]]
|
|
27
|
+
资料卡:[[03-sources/article-cards/llm-wiki-notes|资料卡]]
|
|
28
|
+
原文:[[02-raw/articles/llm-wiki-notes|原文]]
|
|
29
|
+
|
|
30
|
+
1. 背景
|
|
31
|
+
2. 关键观点
|
|
32
|
+
3. 证据与推断边界
|
|
33
|
+
4. 可复用判断与方法
|
|
34
|
+
5. 适用场景
|
|
35
|
+
6. 可继续链接的条目
|
|
36
|
+
7. 来源:LLM Wiki Notes
|
|
37
|
+
|
|
38
|
+
## Host Agent Outline Hints
|
|
39
|
+
|
|
40
|
+
- outline_section: 背景
|
|
41
|
+
- outline_section: 实现方式
|
|
42
|
+
- reusable_judgment: Unsupported analysis should stay reviewable before it becomes reusable knowledge.
|
|
43
|
+
- suggested_link: Grounding review workflow -> 05-wiki/source-knowledge/grounding-review
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema_version": "aiwiki.agent_payload.v1",
|
|
3
|
+
"source": {
|
|
4
|
+
"kind": "url",
|
|
5
|
+
"source_role": "input",
|
|
6
|
+
"represents_user_view": false,
|
|
7
|
+
"url": "https://example.com/llm-wiki",
|
|
8
|
+
"title": "LLM Wiki Notes",
|
|
9
|
+
"content_format": "markdown",
|
|
10
|
+
"content": "这是一篇关于 LLM Wiki 的文章,讨论了 Agent-first 本地知识库、结构化条目和持续整理。",
|
|
11
|
+
"fetcher": "host-agent",
|
|
12
|
+
"fetch_status": "ok",
|
|
13
|
+
"captured_at": "2026-05-14T10:00:00+08:00",
|
|
14
|
+
"language": "zh-CN"
|
|
15
|
+
},
|
|
16
|
+
"request": {
|
|
17
|
+
"mode": "ingest",
|
|
18
|
+
"outputs": [
|
|
19
|
+
"source_card",
|
|
20
|
+
"wiki_entry",
|
|
21
|
+
"processing_summary",
|
|
22
|
+
"creative_assets",
|
|
23
|
+
"topics",
|
|
24
|
+
"draft_outline"
|
|
25
|
+
],
|
|
26
|
+
"language": "zh-CN"
|
|
27
|
+
},
|
|
28
|
+
"analysis": {
|
|
29
|
+
"summary": "LLM Wiki 把资料整理成可持续维护的本地知识层。",
|
|
30
|
+
"key_points": [
|
|
31
|
+
"Wiki Entry 是入库后的默认知识容器",
|
|
32
|
+
"宿主 Agent 负责理解原文"
|
|
33
|
+
],
|
|
34
|
+
"reusable_knowledge": [
|
|
35
|
+
{
|
|
36
|
+
"title": "Agent-first 边界",
|
|
37
|
+
"content": "CLI 负责落盘,Agent 负责理解。"
|
|
38
|
+
}
|
|
39
|
+
],
|
|
40
|
+
"entities": [
|
|
41
|
+
"AIWiki CLI",
|
|
42
|
+
"Host Agent"
|
|
43
|
+
],
|
|
44
|
+
"concepts": [
|
|
45
|
+
"content fingerprint",
|
|
46
|
+
"evidence boundary"
|
|
47
|
+
],
|
|
48
|
+
"tensions": [
|
|
49
|
+
"automation speed vs evidence review"
|
|
50
|
+
],
|
|
51
|
+
"reusable_judgments": [
|
|
52
|
+
{
|
|
53
|
+
"title": "Review before reuse",
|
|
54
|
+
"judgment": "Unsupported analysis should stay reviewable before it becomes reusable knowledge.",
|
|
55
|
+
"rationale": "The host Agent may infer beyond the source."
|
|
56
|
+
}
|
|
57
|
+
],
|
|
58
|
+
"related_concepts": [
|
|
59
|
+
"LLM Wiki",
|
|
60
|
+
"Agent-first"
|
|
61
|
+
],
|
|
62
|
+
"use_cases": [
|
|
63
|
+
"研究",
|
|
64
|
+
"写作"
|
|
65
|
+
],
|
|
66
|
+
"topic_candidates": [
|
|
67
|
+
"为什么 Agent 需要本地 Wiki"
|
|
68
|
+
],
|
|
69
|
+
"claims": [
|
|
70
|
+
{
|
|
71
|
+
"claim": "高质量知识提炼应由宿主 Agent 提供",
|
|
72
|
+
"confidence": "high"
|
|
73
|
+
}
|
|
74
|
+
],
|
|
75
|
+
"suggested_links": [
|
|
76
|
+
{
|
|
77
|
+
"title": "Grounding review workflow",
|
|
78
|
+
"target": "05-wiki/source-knowledge/grounding-review",
|
|
79
|
+
"reason": "Connects this source to evidence review practice."
|
|
80
|
+
}
|
|
81
|
+
],
|
|
82
|
+
"outline": {
|
|
83
|
+
"title": "LLM Wiki 文章大纲",
|
|
84
|
+
"sections": [
|
|
85
|
+
"背景",
|
|
86
|
+
"实现方式"
|
|
87
|
+
]
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
"warnings": []
|
|
91
|
+
}
|
package/examples/obsidian-vault-sample/09-runs/20260608-160603980-89f570/processing-summary.md
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
---
|
|
2
|
+
aiwiki_id: "llm-wiki-notes:run:20260608-160603980-89f570"
|
|
3
|
+
type: "processing_summary"
|
|
4
|
+
status: "to-review"
|
|
5
|
+
slug: "llm-wiki-notes"
|
|
6
|
+
title: "LLM Wiki Notes"
|
|
7
|
+
source_url: "https://example.com/llm-wiki"
|
|
8
|
+
source_type: "url"
|
|
9
|
+
created_at: "2026-06-08T16:06:03.980Z"
|
|
10
|
+
captured_at: "2026-05-14T10:00:00+08:00"
|
|
11
|
+
run_id: "20260608-160603980-89f570"
|
|
12
|
+
content_fingerprint: "sha256:7e9fcf3257160956b260fe36c2c3dbdddf91b86856e989045eee547ff0019a9a"
|
|
13
|
+
wiki_entry: "[[05-wiki/source-knowledge/llm-wiki-notes|Wiki 条目]]"
|
|
14
|
+
source_card: "[[03-sources/article-cards/llm-wiki-notes|资料卡]]"
|
|
15
|
+
raw_note: "[[02-raw/articles/llm-wiki-notes|原文]]"
|
|
16
|
+
claims_note: "[[04-claims/_suggestions/llm-wiki-notes-claims|Claim 建议]]"
|
|
17
|
+
assets_note: "[[06-assets/_suggestions/llm-wiki-notes-assets|素材建议]]"
|
|
18
|
+
topics_note: "[[07-topics/ready/llm-wiki-notes-topics|选题]]"
|
|
19
|
+
outline_note: "[[08-outputs/outlines/llm-wiki-notes-outline|大纲]]"
|
|
20
|
+
run_summary: "[[09-runs/20260608-160603980-89f570/processing-summary|处理记录]]"
|
|
21
|
+
grounding_evidence_available: false
|
|
22
|
+
grounding_evidence_channel: "none"
|
|
23
|
+
grounding_needs_review: true
|
|
24
|
+
grounding_markers: ["unsupported_claims"]
|
|
25
|
+
grounding_claim_count: "1"
|
|
26
|
+
grounding_claim_quote_count: "0"
|
|
27
|
+
grounding_unsupported_claim_count: "1"
|
|
28
|
+
coverage_suspected_incomplete: false
|
|
29
|
+
tags: ["aiwiki/run"]
|
|
30
|
+
---
|
|
31
|
+
|
|
32
|
+
# 处理记录
|
|
33
|
+
|
|
34
|
+
来源类型:url
|
|
35
|
+
读取状态:ok
|
|
36
|
+
宿主读取器:host-agent
|
|
37
|
+
|
|
38
|
+
生成文件:
|
|
39
|
+
- 09-runs/20260608-160603980-89f570/payload.json
|
|
40
|
+
- [[09-runs/20260608-160603980-89f570/raw|raw]] (09-runs/20260608-160603980-89f570/raw.md)
|
|
41
|
+
- [[09-runs/20260608-160603980-89f570/source-card|source-card]] (09-runs/20260608-160603980-89f570/source-card.md)
|
|
42
|
+
- [[09-runs/20260608-160603980-89f570/wiki-entry|wiki-entry]] (09-runs/20260608-160603980-89f570/wiki-entry.md)
|
|
43
|
+
- [[09-runs/20260608-160603980-89f570/creative-assets|creative-assets]] (09-runs/20260608-160603980-89f570/creative-assets.md)
|
|
44
|
+
- [[09-runs/20260608-160603980-89f570/topics|topics]] (09-runs/20260608-160603980-89f570/topics.md)
|
|
45
|
+
- [[09-runs/20260608-160603980-89f570/draft-outline|draft-outline]] (09-runs/20260608-160603980-89f570/draft-outline.md)
|
|
46
|
+
- [[02-raw/articles/llm-wiki-notes|llm-wiki-notes]] (02-raw/articles/llm-wiki-notes.md)
|
|
47
|
+
- [[03-sources/article-cards/llm-wiki-notes|llm-wiki-notes]] (03-sources/article-cards/llm-wiki-notes.md)
|
|
48
|
+
- [[05-wiki/source-knowledge/llm-wiki-notes|llm-wiki-notes]] (05-wiki/source-knowledge/llm-wiki-notes.md)
|
|
49
|
+
- [[04-claims/_suggestions/llm-wiki-notes-claims|llm-wiki-notes-claims]] (04-claims/_suggestions/llm-wiki-notes-claims.md)
|
|
50
|
+
- [[06-assets/_suggestions/llm-wiki-notes-assets|llm-wiki-notes-assets]] (06-assets/_suggestions/llm-wiki-notes-assets.md)
|
|
51
|
+
- [[07-topics/ready/llm-wiki-notes-topics|llm-wiki-notes-topics]] (07-topics/ready/llm-wiki-notes-topics.md)
|
|
52
|
+
- [[08-outputs/outlines/llm-wiki-notes-outline|llm-wiki-notes-outline]] (08-outputs/outlines/llm-wiki-notes-outline.md)
|
|
53
|
+
- [[09-runs/20260608-160603980-89f570/processing-summary|processing-summary]] (09-runs/20260608-160603980-89f570/processing-summary.md)
|
|
54
|
+
|
|
55
|
+
告警:
|
|
56
|
+
- grounding: 1 claim(s) lack a source_quote found in raw content.
|
|
57
|
+
|
|
58
|
+
Grounding:
|
|
59
|
+
- evidence_available: no
|
|
60
|
+
- evidence_channel: none
|
|
61
|
+
- needs_review: yes
|
|
62
|
+
- suspicion_markers: unsupported_claims
|
|
63
|
+
- claims_with_quotes: 0/1
|
|
64
|
+
|
|
65
|
+
下一步审阅:
|
|
66
|
+
- 请在 Obsidian 中人工审阅资料卡、Claim 建议、素材建议、选题和大纲。
|
|
67
|
+
- AIWiki CLI 不负责网页抓取稳定性。
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
---
|
|
2
|
+
aiwiki_id: "llm-wiki-notes:raw"
|
|
3
|
+
title: "LLM Wiki Notes"
|
|
4
|
+
type: "raw_article"
|
|
5
|
+
status: "to-review"
|
|
6
|
+
slug: "llm-wiki-notes"
|
|
7
|
+
source_type: "url"
|
|
8
|
+
source_url: "https://example.com/llm-wiki"
|
|
9
|
+
created_at: "2026-06-08T16:06:03.980Z"
|
|
10
|
+
captured_at: "2026-05-14T10:00:00+08:00"
|
|
11
|
+
run_id: "20260608-160603980-89f570"
|
|
12
|
+
content_fingerprint: "sha256:7e9fcf3257160956b260fe36c2c3dbdddf91b86856e989045eee547ff0019a9a"
|
|
13
|
+
wiki_entry: "[[05-wiki/source-knowledge/llm-wiki-notes|Wiki 条目]]"
|
|
14
|
+
source_card: "[[03-sources/article-cards/llm-wiki-notes|资料卡]]"
|
|
15
|
+
raw_note: "[[02-raw/articles/llm-wiki-notes|原文]]"
|
|
16
|
+
claims_note: "[[04-claims/_suggestions/llm-wiki-notes-claims|Claim 建议]]"
|
|
17
|
+
assets_note: "[[06-assets/_suggestions/llm-wiki-notes-assets|素材建议]]"
|
|
18
|
+
topics_note: "[[07-topics/ready/llm-wiki-notes-topics|选题]]"
|
|
19
|
+
outline_note: "[[08-outputs/outlines/llm-wiki-notes-outline|大纲]]"
|
|
20
|
+
run_summary: "[[09-runs/20260608-160603980-89f570/processing-summary|处理记录]]"
|
|
21
|
+
tags: ["aiwiki/raw"]
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
# LLM Wiki Notes
|
|
25
|
+
|
|
26
|
+
## AIWiki 链接
|
|
27
|
+
|
|
28
|
+
- Wiki 条目:[[05-wiki/source-knowledge/llm-wiki-notes|Wiki 条目]]
|
|
29
|
+
- 资料卡:[[03-sources/article-cards/llm-wiki-notes|资料卡]]
|
|
30
|
+
- 处理记录:[[09-runs/20260608-160603980-89f570/processing-summary|处理记录]]
|
|
31
|
+
|
|
32
|
+
这是一篇关于 LLM Wiki 的文章,讨论了 Agent-first 本地知识库、结构化条目和持续整理。
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
---
|
|
2
|
+
aiwiki_id: "llm-wiki-notes:source-card"
|
|
3
|
+
title: "LLM Wiki Notes"
|
|
4
|
+
type: "source_card"
|
|
5
|
+
status: "to-review"
|
|
6
|
+
slug: "llm-wiki-notes"
|
|
7
|
+
source_type: "url"
|
|
8
|
+
source_url: "https://example.com/llm-wiki"
|
|
9
|
+
url: "https://example.com/llm-wiki"
|
|
10
|
+
fetcher: "host-agent"
|
|
11
|
+
created_at: "2026-06-08T16:06:03.980Z"
|
|
12
|
+
captured_at: "2026-05-14T10:00:00+08:00"
|
|
13
|
+
run_id: "20260608-160603980-89f570"
|
|
14
|
+
content_fingerprint: "sha256:7e9fcf3257160956b260fe36c2c3dbdddf91b86856e989045eee547ff0019a9a"
|
|
15
|
+
wiki_entry: "[[05-wiki/source-knowledge/llm-wiki-notes|Wiki 条目]]"
|
|
16
|
+
source_card: "[[03-sources/article-cards/llm-wiki-notes|资料卡]]"
|
|
17
|
+
raw_note: "[[02-raw/articles/llm-wiki-notes|原文]]"
|
|
18
|
+
claims_note: "[[04-claims/_suggestions/llm-wiki-notes-claims|Claim 建议]]"
|
|
19
|
+
assets_note: "[[06-assets/_suggestions/llm-wiki-notes-assets|素材建议]]"
|
|
20
|
+
topics_note: "[[07-topics/ready/llm-wiki-notes-topics|选题]]"
|
|
21
|
+
outline_note: "[[08-outputs/outlines/llm-wiki-notes-outline|大纲]]"
|
|
22
|
+
run_summary: "[[09-runs/20260608-160603980-89f570/processing-summary|处理记录]]"
|
|
23
|
+
grounding_evidence_available: false
|
|
24
|
+
grounding_evidence_channel: "none"
|
|
25
|
+
grounding_needs_review: true
|
|
26
|
+
grounding_markers: ["unsupported_claims"]
|
|
27
|
+
grounding_claim_count: "1"
|
|
28
|
+
grounding_claim_quote_count: "0"
|
|
29
|
+
grounding_unsupported_claim_count: "1"
|
|
30
|
+
coverage_suspected_incomplete: false
|
|
31
|
+
aliases: ["LLM Wiki Notes"]
|
|
32
|
+
tags: ["aiwiki/source-card"]
|
|
33
|
+
---
|
|
34
|
+
|
|
35
|
+
# LLM Wiki Notes
|
|
36
|
+
|
|
37
|
+
## Obsidian 链接
|
|
38
|
+
|
|
39
|
+
- Wiki 条目:[[05-wiki/source-knowledge/llm-wiki-notes|Wiki 条目]]
|
|
40
|
+
- 原文:[[02-raw/articles/llm-wiki-notes|原文]]
|
|
41
|
+
- Claim 建议:[[04-claims/_suggestions/llm-wiki-notes-claims|Claim 建议]]
|
|
42
|
+
- 素材建议:[[06-assets/_suggestions/llm-wiki-notes-assets|素材建议]]
|
|
43
|
+
- 选题:[[07-topics/ready/llm-wiki-notes-topics|选题]]
|
|
44
|
+
- 大纲:[[08-outputs/outlines/llm-wiki-notes-outline|大纲]]
|
|
45
|
+
- 处理记录:[[09-runs/20260608-160603980-89f570/processing-summary|处理记录]]
|
|
46
|
+
|
|
47
|
+
## 摘要
|
|
48
|
+
|
|
49
|
+
这是一篇关于 LLM Wiki 的文章,讨论了 Agent-first 本地知识库、结构化条目和持续整理。
|
|
50
|
+
|
|
51
|
+
## Problem / Evidence / Reuse
|
|
52
|
+
|
|
53
|
+
- problem_solved: LLM Wiki 把资料整理成可持续维护的本地知识层。
|
|
54
|
+
- evidence_boundary: review required before treating analysis as fact
|
|
55
|
+
- reuse_scenarios: 研究, 写作
|
|
56
|
+
- content_fingerprint: sha256:7e9fcf3257160956b260fe36c2c3dbdddf91b86856e989045eee547ff0019a9a
|
|
57
|
+
|
|
58
|
+
## Grounding 状态
|
|
59
|
+
|
|
60
|
+
- 证据通道:none
|
|
61
|
+
- 需要复核:yes
|
|
62
|
+
- 疑似标记:unsupported_claims
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
---
|
|
2
|
+
aiwiki_id: "llm-wiki-notes:topics"
|
|
3
|
+
title: "LLM Wiki Notes Topics"
|
|
4
|
+
type: "topic_candidates"
|
|
5
|
+
status: "ready"
|
|
6
|
+
slug: "llm-wiki-notes"
|
|
7
|
+
source_url: "https://example.com/llm-wiki"
|
|
8
|
+
source_type: "url"
|
|
9
|
+
created_at: "2026-06-08T16:06:03.980Z"
|
|
10
|
+
captured_at: "2026-05-14T10:00:00+08:00"
|
|
11
|
+
run_id: "20260608-160603980-89f570"
|
|
12
|
+
content_fingerprint: "sha256:7e9fcf3257160956b260fe36c2c3dbdddf91b86856e989045eee547ff0019a9a"
|
|
13
|
+
wiki_entry: "[[05-wiki/source-knowledge/llm-wiki-notes|Wiki 条目]]"
|
|
14
|
+
source_card: "[[03-sources/article-cards/llm-wiki-notes|资料卡]]"
|
|
15
|
+
raw_note: "[[02-raw/articles/llm-wiki-notes|原文]]"
|
|
16
|
+
claims_note: "[[04-claims/_suggestions/llm-wiki-notes-claims|Claim 建议]]"
|
|
17
|
+
assets_note: "[[06-assets/_suggestions/llm-wiki-notes-assets|素材建议]]"
|
|
18
|
+
topics_note: "[[07-topics/ready/llm-wiki-notes-topics|选题]]"
|
|
19
|
+
outline_note: "[[08-outputs/outlines/llm-wiki-notes-outline|大纲]]"
|
|
20
|
+
run_summary: "[[09-runs/20260608-160603980-89f570/processing-summary|处理记录]]"
|
|
21
|
+
tags: ["aiwiki/topics"]
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
# 选题候选
|
|
25
|
+
|
|
26
|
+
- Wiki 条目:[[05-wiki/source-knowledge/llm-wiki-notes|Wiki 条目]]
|
|
27
|
+
- 资料卡:[[03-sources/article-cards/llm-wiki-notes|资料卡]]
|
|
28
|
+
- 大纲:[[08-outputs/outlines/llm-wiki-notes-outline|大纲]]
|
|
29
|
+
- LLM Wiki Notes
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
---
|
|
2
|
+
aiwiki_id: "llm-wiki-notes:wiki-entry"
|
|
3
|
+
type: "wiki_entry"
|
|
4
|
+
wiki_type: "source_knowledge"
|
|
5
|
+
source_role: "input"
|
|
6
|
+
represents_user_view: false
|
|
7
|
+
status: "active"
|
|
8
|
+
generation_mode: "agent_enriched"
|
|
9
|
+
quality: "enriched"
|
|
10
|
+
generated_by: "host_agent"
|
|
11
|
+
llm_enriched: true
|
|
12
|
+
title: "LLM Wiki Notes"
|
|
13
|
+
slug: "llm-wiki-notes"
|
|
14
|
+
source_url: "https://example.com/llm-wiki"
|
|
15
|
+
source_type: "url"
|
|
16
|
+
source_card: "03-sources/article-cards/llm-wiki-notes.md"
|
|
17
|
+
raw_file: "02-raw/articles/llm-wiki-notes.md"
|
|
18
|
+
claims_file: "04-claims/_suggestions/llm-wiki-notes-claims.md"
|
|
19
|
+
topics_file: "07-topics/ready/llm-wiki-notes-topics.md"
|
|
20
|
+
outline_file: "08-outputs/outlines/llm-wiki-notes-outline.md"
|
|
21
|
+
run_summary: "09-runs/20260608-160603980-89f570/processing-summary.md"
|
|
22
|
+
run_id: "20260608-160603980-89f570"
|
|
23
|
+
content_fingerprint: "sha256:7e9fcf3257160956b260fe36c2c3dbdddf91b86856e989045eee547ff0019a9a"
|
|
24
|
+
created_at: "2026-06-08T16:06:03.980Z"
|
|
25
|
+
updated_at: "2026-06-08T16:06:03.980Z"
|
|
26
|
+
summary: "LLM Wiki 把资料整理成可持续维护的本地知识层。"
|
|
27
|
+
topics: ["LLM Wiki", "Agent-first", "content fingerprint", "evidence boundary"]
|
|
28
|
+
claims: ["高质量知识提炼应由宿主 Agent 提供"]
|
|
29
|
+
grounding_evidence_available: false
|
|
30
|
+
grounding_evidence_channel: "none"
|
|
31
|
+
grounding_needs_review: true
|
|
32
|
+
grounding_markers: ["unsupported_claims"]
|
|
33
|
+
grounding_claim_count: "1"
|
|
34
|
+
grounding_claim_quote_count: "0"
|
|
35
|
+
grounding_unsupported_claim_count: "1"
|
|
36
|
+
coverage_suspected_incomplete: false
|
|
37
|
+
tags: ["aiwiki/wiki-entry"]
|
|
38
|
+
---
|
|
39
|
+
# LLM Wiki Notes
|
|
40
|
+
|
|
41
|
+
## Grounding 复核
|
|
42
|
+
|
|
43
|
+
- 证据通道:none
|
|
44
|
+
- 需要复核:yes
|
|
45
|
+
- 疑似标记:unsupported_claims
|
|
46
|
+
- Claim 引用覆盖:0/1
|
|
47
|
+
|
|
48
|
+
## 一句话总结
|
|
49
|
+
|
|
50
|
+
LLM Wiki 把资料整理成可持续维护的本地知识层。
|
|
51
|
+
|
|
52
|
+
## 核心观点
|
|
53
|
+
|
|
54
|
+
- Wiki Entry 是入库后的默认知识容器
|
|
55
|
+
- 宿主 Agent 负责理解原文
|
|
56
|
+
|
|
57
|
+
## 可复用知识点
|
|
58
|
+
|
|
59
|
+
### Agent-first 边界
|
|
60
|
+
|
|
61
|
+
CLI 负责落盘,Agent 负责理解。
|
|
62
|
+
|
|
63
|
+
## Reusable Judgments
|
|
64
|
+
|
|
65
|
+
### Review before reuse
|
|
66
|
+
|
|
67
|
+
- judgment: Unsupported analysis should stay reviewable before it becomes reusable knowledge.
|
|
68
|
+
- rationale: The host Agent may infer beyond the source.
|
|
69
|
+
- evidence boundary: needs review if reused as a factual claim
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
## Entities and Concepts
|
|
73
|
+
|
|
74
|
+
- entities: AIWiki CLI, Host Agent
|
|
75
|
+
- concepts: content fingerprint, evidence boundary
|
|
76
|
+
|
|
77
|
+
## Tensions
|
|
78
|
+
|
|
79
|
+
- automation speed vs evidence review
|
|
80
|
+
|
|
81
|
+
## 相关概念
|
|
82
|
+
|
|
83
|
+
- LLM Wiki
|
|
84
|
+
- Agent-first
|
|
85
|
+
|
|
86
|
+
## 适合用于什么场景
|
|
87
|
+
|
|
88
|
+
- 研究
|
|
89
|
+
- 写作
|
|
90
|
+
|
|
91
|
+
## 可转化的选题
|
|
92
|
+
|
|
93
|
+
- 为什么 Agent 需要本地 Wiki
|
|
94
|
+
|
|
95
|
+
## Suggested Links
|
|
96
|
+
|
|
97
|
+
- Grounding review workflow -> 05-wiki/source-knowledge/grounding-review (Connects this source to evidence review practice.)
|
|
98
|
+
|
|
99
|
+
## 来源
|
|
100
|
+
|
|
101
|
+
- Source Card: [[03-sources/article-cards/llm-wiki-notes|资料卡]]
|
|
102
|
+
- Raw: [[02-raw/articles/llm-wiki-notes|原文]]
|
|
103
|
+
- Run: [[09-runs/20260608-160603980-89f570/processing-summary|处理记录]]
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# AIWiki System Index
|
|
2
|
+
|
|
3
|
+
Use this file as the human and Agent entry point for the knowledge base.
|
|
4
|
+
|
|
5
|
+
## Core Areas
|
|
6
|
+
|
|
7
|
+
- [[02-raw/articles|Raw Articles]]
|
|
8
|
+
- [[03-sources/article-cards|Source Cards]]
|
|
9
|
+
- [[04-claims/_suggestions|Claim Suggestions]]
|
|
10
|
+
- [[05-wiki|Wiki Entries]]
|
|
11
|
+
- [[06-assets/_suggestions|Asset Suggestions]]
|
|
12
|
+
- [[07-topics/ready|Topic Pipeline]]
|
|
13
|
+
- [[08-outputs/outlines|Draft Outlines]]
|
|
14
|
+
- [[09-runs|Processing Runs]]
|
|
15
|
+
|
|
16
|
+
## Dashboards
|
|
17
|
+
|
|
18
|
+
- [[dashboards/AIWiki Home|AIWiki Home]]
|
|
19
|
+
- [[dashboards/Review Queue|Review Queue]]
|
|
20
|
+
- [[dashboards/Recent Runs|Recent Runs]]
|
|
21
|
+
- [[dashboards/Lint Report|Lint Report]]
|
|
22
|
+
|
|
23
|
+
## System Files
|
|
24
|
+
|
|
25
|
+
- [[_system/purpose|Purpose]]
|
|
26
|
+
- [[_system/log|Log]]
|
|
27
|
+
- [[_system/schemas/aiwiki-frontmatter|Frontmatter Schema]]
|
|
28
|
+
|
|
29
|
+
## Common Commands
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
aiwiki status
|
|
33
|
+
aiwiki next
|
|
34
|
+
aiwiki query "<topic>"
|
|
35
|
+
aiwiki context "<topic>"
|
|
36
|
+
aiwiki lint
|
|
37
|
+
```
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# AIWiki Knowledge Base Purpose
|
|
2
|
+
|
|
3
|
+
This file defines what this knowledge base is for. Host Agents should read it before ingesting, querying, or reorganizing content.
|
|
4
|
+
|
|
5
|
+
## Goal
|
|
6
|
+
|
|
7
|
+
Build a local, traceable AI knowledge base that turns useful articles, notes, and source material into Obsidian-ready Markdown.
|
|
8
|
+
|
|
9
|
+
## Suitable Materials
|
|
10
|
+
|
|
11
|
+
- Articles, notes, transcripts, and references that can become source cards, wiki entries, claims, topics, outlines, or reusable assets.
|
|
12
|
+
- External materials with clear source information.
|
|
13
|
+
- User-owned drafts or published work when the user explicitly says the material represents their own output.
|
|
14
|
+
|
|
15
|
+
## Unsuitable Materials
|
|
16
|
+
|
|
17
|
+
- Content without a usable source or context.
|
|
18
|
+
- Purely private, sensitive, illegal, or unsafe material.
|
|
19
|
+
- Generic web noise that cannot become reusable knowledge.
|
|
20
|
+
- Claims that cannot be tied back to evidence.
|
|
21
|
+
|
|
22
|
+
## Multi-Knowledge-Base Boundary
|
|
23
|
+
|
|
24
|
+
This base AIWiki workspace is a single knowledge base. If the user later creates multiple knowledge bases, each one should have its own purpose file and Agents should route material according to that local purpose.
|
|
25
|
+
|
|
26
|
+
## Agent Rules
|
|
27
|
+
|
|
28
|
+
- Respect this purpose before ingesting material.
|
|
29
|
+
- Keep evidence and inference separate.
|
|
30
|
+
- Do not treat external input as the user's own view unless the user says so.
|
|
31
|
+
- Prefer traceable source cards and wiki entries over unsupported summaries.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# AIWiki Frontmatter Schema
|
|
2
|
+
|
|
3
|
+
AIWiki 使用 Obsidian 原生 Properties 作为基础数据库层,Dataview 只作为可选增强。
|
|
4
|
+
|
|
5
|
+
## Shared Fields
|
|
6
|
+
|
|
7
|
+
- `aiwiki_id`: AIWiki 内部稳定标识。
|
|
8
|
+
- `type`: `source_card`, `raw_article`, `claim_suggestions`, `asset_suggestions`, `topic_candidates`, `draft_outline`, `processing_summary`。
|
|
9
|
+
- `status`: `to-review`, `ready`, `draft`, `reviewed`, `archived`, `fetch-failed`。
|
|
10
|
+
- `slug`: 来源标题或 URL 生成的 slug。
|
|
11
|
+
- `source_url`: 原始 URL,若没有则为空。
|
|
12
|
+
- `source_type`: `url`, `file`, `text` 等来源类型。
|
|
13
|
+
- `created_at`: AIWiki 写入时间。
|
|
14
|
+
- `captured_at`: 宿主 Agent 读取来源的时间。
|
|
15
|
+
- `run_id`: 本次处理记录目录名。
|
|
16
|
+
- `source_card`, `raw_note`, `claims_note`, `assets_note`, `topics_note`, `outline_note`, `run_summary`: Obsidian 内部链接字符串。
|
|
17
|
+
- `tags`: AIWiki 类型标签。
|
|
18
|
+
|
|
19
|
+
## Rule
|
|
20
|
+
|
|
21
|
+
正文中的 wikilink 用于人工阅读;frontmatter 字段是 Dataview 查询和数据库筛选的来源。
|