| 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 |
Wiki Ingest Source
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.
HARD-GATE
Before creating a source page, search the vault for existing sources covering the same material.
If vault_search returns a match with score > 8.0 for the source title, STOP and report the duplicate.
Tools
vault_search (deduplication check)
vault_index (post-creation index update)
- CC file write (page creation)
Protocol
- Search vault for existing source with similar title/content
- If duplicate found → report and abort
- Write source page to
sources/<slug>.md with frontmatter:
---
type: source
title: "<descriptive title>"
created: <YYYY-MM-DD>
origin: <url or citation>
tags: [<relevant tags>]
---
- Body contains raw material (quotes, data, notes) — no synthesis
- Call
vault_index (incremental) to make the page searchable
- Return path of created source
Source Page Rules
- Immutable after creation. Never edit source pages.
- Verbatim content. Preserve original wording, data, structure.
- Attribution required. Origin field must trace back to the original.
- No interpretation. Synthesis belongs in wiki pages, not sources.
Yield
Returns: { created: string, indexed: boolean }