Skip to content

LlmWikis knowledge page

Page Schema Standard

A page schema standard keeps a wiki from becoming a folder of confident essays. Each compiled page should tell the next reader what kind of page it is, what source status it has, which claims are unresolved, and when it needs review.

Starter frontmatter

---
title: "Two-Step Ingest Pipeline"
type: runbook
status: reviewed
source_status: source-linked
source_trace:
  - raw/2026-04-source.md#section-ingest
contradictions: []
confidence_label: reviewed
last_reviewed: 2026-04-27
reviewer: human
related:
  - wiki/operations/ingest.md
  - wiki/schema/page-schema-standard.md
tags:
  - ingest
  - provenance
---

Required fields

Field Allowed values Why it matters
type source-summary, concept, entity, synthesis, contradiction, runbook, decision Lets the agent choose the right edit and lint behavior.
status draft, reviewed, needs-update, contradicted, archived Prevents draft pages from reading like public truth.
source_status source-linked, source-needed, derived, canonical-linked Shows how much source confidence the page deserves.
source_trace Paths, URLs, anchors, or line references Lets a person check the claim after the model leaves.
contradictions List of page paths or claim IDs Preserves disagreement without hiding it in prose.
last_reviewed ISO date Supports freshness linting and stale-page warnings.

Recommended optional fields

Field Use when Example
owner A team page needs an accountable domain owner. docs-platform
reviewer A page has passed human or subject-matter review. human-reviewed
supersedes A page replaces an older page, policy, or runbook. wiki/runbooks/old-ingest.md
blocked_by A draft cannot move forward until a decision or source exists. needs legal source
freshness_rule The topic is time-sensitive. review every 30 days

Claim status labels

source-linkedThe claim has a traceable source locator.
source-neededThe claim is useful but not yet supported enough to trust.
contradictedAt least one source or page conflicts with the claim.
human-approvedA reviewer approved the claim for the current context.

Lint rules for the schema

  • Block reviewed status when source_trace is empty.
  • Warn when a page has contradictions but no visible contradiction section.
  • Warn when last_reviewed is older than the topic freshness rule.
  • Warn when a page has no inbound link from index.md.

This is a practical LlmWikis page schema, not a universal standard or official UAIX profile. Projects can copy it, reduce it, or map it into JSON/YAML as long as they preserve the source, status, contradiction, and review concepts.