| name | wiki-compile-page |
| description | SOP for wiki page creation/update — create or update a synthesized wiki page with edges and index update. |
| execution | sop |
| used-by | knowledge-compilation |
Wiki Compile Page
Create or update a synthesized wiki page. Wiki pages are living documents that evolve as understanding deepens. They link to sources (evidence) and connect to other concepts via edges.
HARD-GATE
Before writing, determine whether this is a CREATE or UPDATE operation.
- CREATE: vault_search must confirm no existing page covers this topic (score < 5.0)
- UPDATE: read the existing page first, then apply changes
Never blindly overwrite an existing page.
Tools
vault_search (existence check)
vault_add_edge (relationship creation)
vault_index (post-write index update)
- CC file write/edit (page creation or modification)
Protocol
Create Flow
- Search vault to confirm topic is not already covered
- Determine entity type (concept, claim, entity, relation, question, evidence, failure, topic)
- Write page to
<type>s/<slug>.md with appropriate frontmatter:
---
type: <entity_type>
title: "<descriptive title>"
created: <YYYY-MM-DD>
confidence: <0.0-1.0>
tags: [<relevant tags>]
---
- Body contains synthesized content with
[[wikilinks]] to related pages
- Add edges connecting this page to related pages
- Call
vault_index (incremental)
Update Flow
- Read existing page content
- Apply changes (add information, update confidence, add wikilinks)
- Add new edges if new relationships discovered
- Call
vault_index (incremental)
Yield
Returns: { operation: "create" | "update", path: string, edges_added: number }