con un clic
wiki-compile-page
// SOP for wiki page creation/update — create or update a synthesized wiki page with edges and index update.
// SOP for wiki page creation/update — create or update a synthesized wiki page with edges and index update.
SOP wrapping vault_add_edge — create a typed relationship between two vault pages.
SOP wrapping vault_query_graph — traverse knowledge graph from a node to explore its neighborhood and context.
SOP for source page creation — write immutable source page capturing raw material, then update search index.
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-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 |
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.
vault_search (existence check)vault_add_edge (relationship creation)vault_index (post-write index update)<type>s/<slug>.md with appropriate frontmatter:
---
type: <entity_type>
title: "<descriptive title>"
created: <YYYY-MM-DD>
confidence: <0.0-1.0> # required for claim/evidence types
tags: [<relevant tags>]
---
[[wikilinks]] to related pagesvault_index (incremental)vault_index (incremental)Returns: { operation: "create" | "update", path: string, edges_added: number }