@wiki0/core 0.0.3 → 0.0.5

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/dist/topics.js ADDED
@@ -0,0 +1,55 @@
1
+ import { open_wiki_database } from './database.js';
2
+ export function list_topic_threads(root = '.', limit = 50) {
3
+ const db = open_wiki_database(root);
4
+ const rows = db
5
+ .prepare(`SELECT path, title, heading, page_tags FROM page_chunks
6
+ ORDER BY path, sequence`)
7
+ .all();
8
+ db.close();
9
+ const topics = new Map();
10
+ for (const row of rows) {
11
+ const path = String(row.path);
12
+ const heading = row.heading === null ? null : String(row.heading);
13
+ const tags = parse_tags(row.page_tags);
14
+ for (const topic of [...tags, ...(heading ? [heading] : [])]) {
15
+ const normalized_topic = topic.trim();
16
+ if (!normalized_topic)
17
+ continue;
18
+ const bucket = topics.get(normalized_topic) ?? {
19
+ paths: new Set(),
20
+ references: 0,
21
+ headings: new Set(),
22
+ };
23
+ bucket.paths.add(path);
24
+ bucket.references += 1;
25
+ if (heading)
26
+ bucket.headings.add(heading);
27
+ topics.set(normalized_topic, bucket);
28
+ }
29
+ }
30
+ return [...topics]
31
+ .map(([topic, bucket]) => ({
32
+ topic,
33
+ reference_count: bucket.references,
34
+ page_count: bucket.paths.size,
35
+ paths: [...bucket.paths].sort(),
36
+ summary: [...bucket.headings].slice(0, 5).join('; '),
37
+ }))
38
+ .sort((left, right) => right.reference_count - left.reference_count ||
39
+ left.topic.localeCompare(right.topic))
40
+ .slice(0, limit);
41
+ }
42
+ function parse_tags(value) {
43
+ if (value === null)
44
+ return [];
45
+ try {
46
+ const parsed = JSON.parse(String(value));
47
+ return Array.isArray(parsed)
48
+ ? parsed.filter((tag) => typeof tag === 'string')
49
+ : [];
50
+ }
51
+ catch {
52
+ return [];
53
+ }
54
+ }
55
+ //# sourceMappingURL=topics.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"topics.js","sourceRoot":"","sources":["../src/topics.ts"],"names":[],"mappings":"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"}
package/dist/types.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  export type WikiConfig = {
2
2
  root: string;
3
- wikiDir?: string;
4
- dbPath?: string;
3
+ wiki_dir?: string;
4
+ db_path?: string;
5
5
  };
6
6
  export type WikiLink = {
7
7
  raw: string;
@@ -35,21 +35,24 @@ export type PageFrontmatterOptions = {
35
35
  };
36
36
  export type IndexResult = {
37
37
  root: string;
38
- dbPath: string;
39
- pageCount: number;
40
- linkCount: number;
41
- indexedAt: string;
42
- schemaVersion: number;
38
+ db_path: string;
39
+ page_count: number;
40
+ link_count: number;
41
+ indexed_at: string;
42
+ schema_version: number;
43
+ package_version: string;
43
44
  };
44
45
  export type IndexStatus = {
45
46
  root: string;
46
- dbPath: string;
47
+ db_path: string;
47
48
  exists: boolean;
48
- indexedAt: string | null;
49
- schemaVersion: number | null;
50
- currentSchemaVersion: number;
51
- pageCount: number;
52
- indexedPageCount: number;
49
+ indexed_at: string | null;
50
+ schema_version: number | null;
51
+ current_schema_version: number;
52
+ package_version: string | null;
53
+ current_package_version: string;
54
+ page_count: number;
55
+ indexed_page_count: number;
53
56
  stale: boolean;
54
57
  reasons: string[];
55
58
  };
@@ -59,15 +62,27 @@ export type SearchResult = {
59
62
  snippet: string;
60
63
  rank: number;
61
64
  };
65
+ export type ChunkSearchResult = SearchResult & {
66
+ chunk_id: number;
67
+ heading: string | null;
68
+ body: string;
69
+ start_line: number;
70
+ end_line: number;
71
+ page_priority?: number;
72
+ page_status?: string | null;
73
+ page_tags?: string[];
74
+ };
75
+ export type ShowChunkResult = ChunkSearchResult;
62
76
  export type ContextResult = {
63
77
  query: string;
64
- results: SearchResult[];
78
+ results: ChunkSearchResult[];
79
+ warnings: string[];
65
80
  markdown: string;
66
81
  };
67
82
  export type BacklinkResult = {
68
83
  path: string;
69
84
  title: string;
70
- rawText: string;
85
+ raw_text: string;
71
86
  alias: string | null;
72
87
  embed: boolean;
73
88
  };
@@ -79,7 +94,7 @@ export type GraphEdge = {
79
94
  from: string;
80
95
  to: string;
81
96
  target: string;
82
- rawText: string;
97
+ raw_text: string;
83
98
  alias: string | null;
84
99
  embed: boolean;
85
100
  status: 'resolved' | 'unresolved';
@@ -92,12 +107,17 @@ export type GraphResult = {
92
107
  export type FactConfidence = 'unknown' | 'low' | 'medium' | 'high' | 'verified';
93
108
  export type Fact = {
94
109
  id: number;
95
- pagePath: string | null;
110
+ page_path: string | null;
96
111
  category: string;
97
112
  summary: string;
98
113
  body: string | null;
99
114
  confidence: FactConfidence;
100
- createdAt: string;
115
+ source_path: string | null;
116
+ source_heading: string | null;
117
+ source_start_line: number | null;
118
+ source_end_line: number | null;
119
+ source_quote: string | null;
120
+ created_at: string;
101
121
  };
102
122
  export type FactWriteOptions = {
103
123
  root?: string;
@@ -106,6 +126,8 @@ export type FactWriteOptions = {
106
126
  summary: string;
107
127
  body?: string;
108
128
  confidence?: FactConfidence;
129
+ source?: string;
130
+ source_quote?: string;
109
131
  };
110
132
  export type ReviewResult = {
111
133
  path: string;
@@ -124,17 +146,14 @@ export type LintIssue = {
124
146
  export type LintResult = {
125
147
  root: string;
126
148
  ok: boolean;
127
- issueCount: number;
149
+ issue_count: number;
128
150
  issues: LintIssue[];
129
151
  };
130
152
  export type WikiSourceType = 'general' | 'codebase' | 'docs' | 'research' | 'notes';
131
153
  export type WikiPlanOptions = {
132
- sourceType?: WikiSourceType;
154
+ source_type?: WikiSourceType;
133
155
  scope?: string;
134
- };
135
- export type WikiBootstrapOptions = WikiPlanOptions & {
136
- root?: string;
137
- overwrite?: boolean;
156
+ sources?: string[];
138
157
  };
139
158
  export type WikiPlanPage = {
140
159
  title: string;
@@ -143,16 +162,51 @@ export type WikiPlanPage = {
143
162
  tags: string[];
144
163
  };
145
164
  export type WikiPlanResult = {
146
- sourceType: WikiSourceType;
165
+ source_type: WikiSourceType;
147
166
  scope: string;
148
167
  workflow: string;
149
168
  pages: WikiPlanPage[];
150
- nextSteps: string[];
169
+ next_steps: string[];
151
170
  };
152
- export type WikiBootstrapResult = {
171
+ export type WikiDocumentSyncOptions = {
172
+ root?: string;
173
+ sources: string[];
174
+ overwrite?: boolean;
175
+ index?: boolean;
176
+ include?: string[];
177
+ ignore?: string[];
178
+ derive_facts?: boolean;
179
+ propose_pages?: boolean;
180
+ };
181
+ export type WikiDocumentSync = {
182
+ source: string;
183
+ page: string;
184
+ kind: 'markdown' | 'text' | 'pdf' | 'docx' | 'unsupported';
185
+ status: 'created' | 'updated' | 'unchanged' | 'changed' | 'warning';
186
+ warnings: string[];
187
+ };
188
+ export type WikiDocumentSyncResult = {
153
189
  root: string;
154
- plan: WikiPlanResult;
190
+ sources: string[];
155
191
  created: string[];
156
192
  skipped: string[];
157
- indexed: IndexResult;
193
+ proposed_pages: string[];
194
+ derived_facts: Fact[];
195
+ synced_sources: WikiDocumentSync[];
196
+ indexed: IndexResult | null;
197
+ };
198
+ export type WikiEvent = {
199
+ id: number;
200
+ operation: string;
201
+ summary: string;
202
+ target: string | null;
203
+ details: string | null;
204
+ created_at: string;
205
+ };
206
+ export type TopicThreadResult = {
207
+ topic: string;
208
+ reference_count: number;
209
+ page_count: number;
210
+ paths: string[];
211
+ summary: string;
158
212
  };
@@ -1,4 +1,3 @@
1
- import type { WikiBootstrapOptions, WikiBootstrapResult, WikiPlanOptions, WikiPlanResult } from './types.js';
2
- export declare const wiki_building_workflow_markdown = "# Wiki building workflow\n\nUse this workflow when a user asks to build, bootstrap, generate, or improve a wiki from source material. A codebase is one source type; the same workflow applies to docs, notes, research, transcripts, or any mixed knowledge corpus.\n\n## Steps\n\n1. Clarify the source scope only if it is ambiguous.\n2. Inspect source material before writing pages.\n3. Propose a small page plan with names, purposes, and review flags.\n4. Create an index page that explains the corpus and links to major sections.\n5. Create focused pages for concepts, workflows, decisions, sources, and open questions.\n6. Use [[WikiLinks]] to connect related pages instead of duplicating context.\n7. Use frontmatter for title, aliases, tags, status, and review markers.\n8. Add structured facts for durable claims, decisions, or constraints.\n9. Run index_wiki after page creation.\n10. Run lint_wiki and fix unresolved links or duplicate names.\n11. Run review_wiki and surface pages that still need human review.\n\n## Quality bar\n\n- Prefer many focused pages over one giant dump.\n- Mark uncertain pages with needs-review instead of inventing confidence.\n- Preserve citations or source paths when facts come from external material.\n- Make the wiki navigable for humans and retrievable for agents.\n";
1
+ import type { WikiPlanOptions, WikiPlanResult } from './types.js';
2
+ export declare const wiki_building_workflow_markdown = "# Wiki building workflow\n\nUse this workflow when a user asks to plan, sync, generate, or improve a wiki from source material. A codebase is one source type; the same workflow applies to docs, notes, research, transcripts, or any mixed knowledge corpus.\n\n## Steps\n\n1. Clarify the source scope only if it is ambiguous.\n2. Inspect source material before writing pages.\n3. Propose a small page plan with names, purposes, and review flags.\n4. Create an index page that explains the corpus and links to major sections.\n5. Create focused pages for concepts, workflows, decisions, sources, and open questions.\n6. Use [[WikiLinks]] to connect related pages instead of duplicating context.\n7. Use frontmatter for title, aliases, tags, status, and review markers.\n8. Add structured facts for durable claims, decisions, or constraints.\n9. Run sync after source discovery, then index_wiki after page creation.\n10. Run lint_wiki and fix unresolved links or duplicate names.\n11. Run review_wiki and surface pages that still need human review.\n\n## Quality bar\n\n- Prefer many focused pages over one giant dump.\n- Mark uncertain pages with needs-review instead of inventing confidence.\n- Preserve citations or source paths when facts come from external material.\n- Make the wiki navigable for humans and retrievable for agents.\n";
3
3
  export declare function plan_wiki(options?: WikiPlanOptions): WikiPlanResult;
4
- export declare function bootstrap_wiki(options?: WikiBootstrapOptions): WikiBootstrapResult;
package/dist/workflow.js CHANGED
@@ -1,12 +1,6 @@
1
- import { existsSync, readdirSync } from 'node:fs';
2
- import { join } from 'node:path';
3
- import { index_wiki } from './indexer.js';
4
- import { serialize_frontmatter } from './markdown.js';
5
- import { create_page } from './pages.js';
6
- import { page_file_path, resolve_wiki_root } from './paths.js';
7
1
  export const wiki_building_workflow_markdown = `# Wiki building workflow
8
2
 
9
- Use this workflow when a user asks to build, bootstrap, generate, or improve a wiki from source material. A codebase is one source type; the same workflow applies to docs, notes, research, transcripts, or any mixed knowledge corpus.
3
+ Use this workflow when a user asks to plan, sync, generate, or improve a wiki from source material. A codebase is one source type; the same workflow applies to docs, notes, research, transcripts, or any mixed knowledge corpus.
10
4
 
11
5
  ## Steps
12
6
 
@@ -18,7 +12,7 @@ Use this workflow when a user asks to build, bootstrap, generate, or improve a w
18
12
  6. Use [[WikiLinks]] to connect related pages instead of duplicating context.
19
13
  7. Use frontmatter for title, aliases, tags, status, and review markers.
20
14
  8. Add structured facts for durable claims, decisions, or constraints.
21
- 9. Run index_wiki after page creation.
15
+ 9. Run sync after source discovery, then index_wiki after page creation.
22
16
  10. Run lint_wiki and fix unresolved links or duplicate names.
23
17
  11. Run review_wiki and surface pages that still need human review.
24
18
 
@@ -103,15 +97,15 @@ const source_pages = {
103
97
  ],
104
98
  };
105
99
  export function plan_wiki(options = {}) {
106
- const source_type = options.sourceType ?? 'general';
100
+ const source_type = options.source_type ?? 'general';
107
101
  const scope = options.scope ?? 'user-provided source material';
108
102
  const pages = [...common_pages, ...source_pages[source_type]];
109
103
  return {
110
- sourceType: source_type,
104
+ source_type: source_type,
111
105
  scope,
112
106
  workflow: wiki_building_workflow_markdown,
113
107
  pages,
114
- nextSteps: [
108
+ next_steps: [
115
109
  'Inspect the source material and adjust this plan before writing pages.',
116
110
  'Create or update the index page first so later pages have a navigation target.',
117
111
  'Create focused pages with frontmatter and wikilinks.',
@@ -119,85 +113,4 @@ export function plan_wiki(options = {}) {
119
113
  ],
120
114
  };
121
115
  }
122
- export function bootstrap_wiki(options = {}) {
123
- const root = resolve_wiki_root(options.root);
124
- const plan = plan_wiki(options);
125
- const created = [];
126
- const skipped = [];
127
- const detected_sources = detect_source_inventory(root, plan.sourceType);
128
- for (const page of plan.pages) {
129
- if (!options.overwrite &&
130
- existsSync(page_file_path(page.path, root))) {
131
- skipped.push(page.path);
132
- continue;
133
- }
134
- create_page(page.path, page_template(page, plan, detected_sources), {
135
- root,
136
- overwrite: options.overwrite,
137
- });
138
- created.push(page.path);
139
- }
140
- return {
141
- root,
142
- plan,
143
- created,
144
- skipped,
145
- indexed: index_wiki(root),
146
- };
147
- }
148
- function page_template(page, plan, detected_sources) {
149
- if (page.path === 'index')
150
- return index_template(page, plan);
151
- const frontmatter = serialize_frontmatter({
152
- title: page.title,
153
- tags: page.tags,
154
- });
155
- if (page.path === 'sources/index') {
156
- return `${frontmatter}# ${page.title}\n\n${page.purpose}\n\n## Source scope\n\n${plan.scope}\n\n## Detected sources\n\n${format_source_inventory(detected_sources)}\n\n## Ingestion notes\n\n- Record source paths, URLs, owners, and freshness before extracting durable facts.\n`;
157
- }
158
- if (page.path === 'questions/open-questions') {
159
- return `${frontmatter}# ${page.title}\n\n${page.purpose}\n\n## Source scope\n\n${plan.scope}\n\n## Questions\n\n- What source material has not been inspected yet?\n- Which claims need citations or owner confirmation?\n- Which pages should move from needs-review to verified?\n`;
160
- }
161
- return `${frontmatter}# ${page.title}\n\n${page.purpose}\n\n## Source scope\n\n${plan.scope}\n\n## Evidence\n\n- Add source-backed details here with citations or file paths.\n\n## Candidate facts\n\n- Add durable claims here before promoting them with add_fact.\n`;
162
- }
163
- function index_template(page, plan) {
164
- const frontmatter = serialize_frontmatter({
165
- title: page.title,
166
- tags: page.tags,
167
- });
168
- const links = plan.pages
169
- .filter((planned_page) => planned_page.path !== page.path)
170
- .map((planned_page) => `- [[${planned_page.path}|${planned_page.title}]] — ${planned_page.purpose}`)
171
- .join('\n');
172
- return `${frontmatter}# ${page.title}\n\nWiki for ${plan.scope}.\n\n## Start here\n\n${links}\n\n## Workflow\n\nUse [[workflows/index|Workflows]] to capture repeatable processes, [[sources/index|Sources]] to track inspected material, and [[questions/open-questions|Open questions]] for uncertain claims.\n`;
173
- }
174
- function detect_source_inventory(root, source_type) {
175
- const candidates = ['README.md', 'package.json', 'docs'];
176
- if (source_type === 'codebase')
177
- candidates.push('packages');
178
- const sources = [];
179
- for (const candidate of candidates) {
180
- const candidate_path = join(root, candidate);
181
- if (!existsSync(candidate_path))
182
- continue;
183
- if (candidate === 'packages') {
184
- for (const entry of readdirSync(candidate_path, {
185
- withFileTypes: true,
186
- })) {
187
- if (entry.isDirectory()) {
188
- sources.push(`packages/${entry.name}/package.json`);
189
- }
190
- }
191
- continue;
192
- }
193
- sources.push(candidate);
194
- }
195
- return sources;
196
- }
197
- function format_source_inventory(sources) {
198
- if (sources.length === 0) {
199
- return '- No local sources detected automatically; add source paths or URLs here.';
200
- }
201
- return sources.map((source) => `- \`${source}\``).join('\n');
202
- }
203
116
  //# sourceMappingURL=workflow.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"workflow.js","sourceRoot":"","sources":["../src/workflow.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"workflow.js","sourceRoot":"","sources":["../src/workflow.ts"],"names":[],"mappings":"AAOA,MAAM,CAAC,MAAM,+BAA+B,GAAG;;;;;;;;;;;;;;;;;;;;;;;;CAwB9C,CAAC;AAEF,MAAM,YAAY,GAAmB;IACpC;QACC,KAAK,EAAE,OAAO;QACd,IAAI,EAAE,OAAO;QACb,OAAO,EACN,mEAAmE;QACpE,IAAI,EAAE,CAAC,OAAO,CAAC;KACf;IACD;QACC,KAAK,EAAE,SAAS;QAChB,IAAI,EAAE,eAAe;QACrB,OAAO,EAAE,sDAAsD;QAC/D,IAAI,EAAE,CAAC,SAAS,CAAC;KACjB;IACD;QACC,KAAK,EAAE,UAAU;QACjB,IAAI,EAAE,gBAAgB;QACtB,OAAO,EACN,2DAA2D;QAC5D,IAAI,EAAE,CAAC,UAAU,CAAC;KAClB;IACD;QACC,KAAK,EAAE,WAAW;QAClB,IAAI,EAAE,iBAAiB;QACvB,OAAO,EACN,2DAA2D;QAC5D,IAAI,EAAE,CAAC,UAAU,CAAC;KAClB;IACD;QACC,KAAK,EAAE,gBAAgB;QACvB,IAAI,EAAE,0BAA0B;QAChC,OAAO,EACN,6DAA6D;QAC9D,IAAI,EAAE,CAAC,cAAc,EAAE,WAAW,CAAC;KACnC;CACD,CAAC;AAEF,MAAM,YAAY,GAA2C;IAC5D,OAAO,EAAE,EAAE;IACX,QAAQ,EAAE;QACT;YACC,KAAK,EAAE,uBAAuB;YAC9B,IAAI,EAAE,uBAAuB;YAC7B,OAAO,EACN,oEAAoE;YACrE,IAAI,EAAE,CAAC,cAAc,EAAE,cAAc,CAAC;SACtC;QACD;YACC,KAAK,EAAE,sBAAsB;YAC7B,IAAI,EAAE,gBAAgB;YACtB,OAAO,EACN,gEAAgE;YACjE,IAAI,EAAE,CAAC,SAAS,EAAE,UAAU,CAAC;SAC7B;KACD;IACD,IAAI,EAAE;QACL;YACC,KAAK,EAAE,mBAAmB;YAC1B,IAAI,EAAE,wBAAwB;YAC9B,OAAO,EACN,oEAAoE;YACrE,IAAI,EAAE,CAAC,eAAe,EAAE,cAAc,CAAC;SACvC;KACD;IACD,QAAQ,EAAE;QACT;YACC,KAAK,EAAE,mBAAmB;YAC1B,IAAI,EAAE,mBAAmB;YACzB,OAAO,EACN,4DAA4D;YAC7D,IAAI,EAAE,CAAC,UAAU,EAAE,cAAc,CAAC;SAClC;KACD;IACD,KAAK,EAAE;QACN;YACC,KAAK,EAAE,eAAe;YACtB,IAAI,EAAE,gBAAgB;YACtB,OAAO,EACN,0DAA0D;YAC3D,IAAI,EAAE,CAAC,OAAO,EAAE,cAAc,CAAC;SAC/B;KACD;CACD,CAAC;AAEF,MAAM,UAAU,SAAS,CACxB,UAA2B,EAAE;IAE7B,MAAM,WAAW,GAAG,OAAO,CAAC,WAAW,IAAI,SAAS,CAAC;IACrD,MAAM,KAAK,GAAG,OAAO,CAAC,KAAK,IAAI,+BAA+B,CAAC;IAC/D,MAAM,KAAK,GAAG,CAAC,GAAG,YAAY,EAAE,GAAG,YAAY,CAAC,WAAW,CAAC,CAAC,CAAC;IAE9D,OAAO;QACN,WAAW,EAAE,WAAW;QACxB,KAAK;QACL,QAAQ,EAAE,+BAA+B;QACzC,KAAK;QACL,UAAU,EAAE;YACX,wEAAwE;YACxE,gFAAgF;YAChF,sDAAsD;YACtD,gEAAgE;SAChE;KACD,CAAC;AACH,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wiki0/core",
3
- "version": "0.0.3",
3
+ "version": "0.0.5",
4
4
  "description": "Core wiki0 Markdown wiki indexing and retrieval primitives",
5
5
  "homepage": "https://github.com/spences10/wiki0/tree/main/packages/core#readme",
6
6
  "license": "MIT",
@@ -27,6 +27,8 @@
27
27
  "access": "public"
28
28
  },
29
29
  "dependencies": {
30
+ "mammoth": "^1.12.0",
31
+ "pdf-parse": "^2.4.5",
30
32
  "yaml": "^2.9.0"
31
33
  },
32
34
  "devDependencies": {