원클릭으로
wiki-ingest-source
// SOP for source page creation — write immutable source page capturing raw material, then update search index.
// SOP for source page creation — write immutable source page capturing raw material, then update search index.
SOP wrapping vault_add_edge — create a typed relationship between two vault pages.
SOP for wiki page creation/update — create or update a synthesized wiki page with edges and index update.
SOP wrapping vault_query_graph — traverse knowledge graph from a node to explore its neighborhood and context.
SOP wrapping vault_lint — run batch validation, report issues, optionally auto-fix safe problems.
SOP wrapping vault_search — BM25 full-text search across vault pages. Returns ranked results with snippets.
Tactic for compiling research findings into vault pages — orchestrates page creation, updates, edge linking, and index maintenance. Minimum yield ≥3 page operations per invocation.
| name | wiki-ingest-source |
| description | SOP for source page creation — write immutable source page capturing raw material, then update search index. |
| execution | sop |
| used-by | knowledge-compilation |
Create an immutable source page capturing raw research material (paper notes, web content, experimental data). Sources are never edited after creation — they preserve the original material.
vault_search (deduplication check)vault_index (post-creation index update)sources/<slug>.md with frontmatter:
---
type: source
title: "<descriptive title>"
created: <YYYY-MM-DD>
origin: <url or citation>
tags: [<relevant tags>]
---
vault_index (incremental) to make the page searchableReturns: { created: string, indexed: boolean }