Longterm Wiki
Updated 2026-03-13HistoryData
Page StatusDocumentation
Edited today172 words1 backlinksUpdated quarterlyDue in 13 weeks
19QualityStub14ImportancePeripheral9.5ResearchMinimal
Summary

Internal documentation providing guidelines for creating minimal placeholder pages (stubs) in the knowledge base, including when to use them, required formatting, and when to convert them to full pages. Covers basic content structure and validation procedures.

Content3/13
LLM summaryScheduleEntityEdit history3Overview
Tables0/ ~1Diagrams0Int. links1/ ~3Ext. links0/ ~1Footnotes0/ ~2References0/ ~1Quotes0Accuracy0RatingsN:0.5 R:2 A:3 C:4Backlinks1
Change History3
Route internal pages through /wiki/E<id>#1823 weeks ago

Migrated internal pages from `/internal/` to `/wiki/E<id>` URLs so they render with full wiki infrastructure (breadcrumbs, metadata, quality indicators, sidebar). Internal MDX pages now redirect from `/internal/slug` to `/wiki/E<id>`, while React dashboard pages (suggested-pages, updates, page-changes, etc.) remain at `/internal/`. Follow-up review: cleaned up dead code, hid wiki-specific UI on internal pages, fixed breadcrumbs, updated all bare-text `/internal/` references.

Add PageStatus and info boxes to internal pages#1853 weeks ago

Enabled PageStatus rendering, Data links, and Feedback widgets on internal pages by removing the `isInternal` guards in the wiki page renderer. Added `evergreen`, `update_frequency`, and `lastEdited` frontmatter to all ~40 internal pages so update schedules and staleness indicators are visible.

Internal pages entity infrastructure#1424 weeks ago

Added full entity infrastructure to internal pages (style guides, architecture docs, research reports, schema docs). Internal pages now have the `internal` entity type, get auto-assigned E* numeric IDs (E698-E731), are included in the search index, and participate in backlinks/related graph computation. Includes review fixes: filtering internal pages from public explore/home, converting all 7 remaining .md files, adding `internal` to data/schema.ts, and updating all `shouldSkipValidation`/`pageType === 'documentation'` checks.

Issues1
StructureNo tables or diagrams - consider adding visual content

Stub Pages Style Guide

Stub Pages Style Guide

Stub pages are intentionally minimal placeholders. They mark topics that exist in the conceptual space but don't warrant full pages.

When to Use Stubs

Use pageType: stub for:

  • Placeholders - Topics to be expanded later
  • Brief profiles - People, orgs that don't need full pages
  • Redirect pointers - Topics covered elsewhere
  • Deprecated concepts - Historical items kept for links

Required Frontmatter

---
title: "Topic Name"
description: "Brief explanation of what this is."
pageType: stub
seeAlso: "primary-page-slug"  # Optional: points to main coverage
---

Minimal Content

Stubs should have:

  1. One paragraph explaining what this is
  2. Why it's a stub (placeholder, covered elsewhere, etc.)
  3. Link to primary coverage if applicable

Example:

---
title: "Narrow AI Safety"
pageType: stub
seeAlso: "ai-safety"
---

# Narrow AI Safety

Safety considerations for narrow (non-general) AI systems. This topic is intentionally minimal as the primary focus of LongtermWiki is transformative AI.

For comprehensive coverage, see [AI Safety](/knowledge-base/ai-safety/).

When NOT to Use Stubs

Don't use stubs as an excuse for incomplete work. If a topic deserves coverage, write a real page. Stubs are for topics that should be minimal.

Quality Rating

Stubs are excluded from quality scoring. They don't appear in quality reports or improvement queues.

Converting Stubs to Full Pages

When ready to expand:

Task({
  subagent_type: 'general-purpose',
  prompt: `Convert stub at [PATH] to a full page.

  1. Determine appropriate page type (risk, response, model)
  2. Read the relevant style guide
  3. Research the topic
  4. Replace stub content with full structure
  5. Remove pageType: stub from frontmatter
  6. Add quality and importance ratings`
})

Validation

Stubs are skipped by content validators. To list all stubs:

grep -r "pageType: stub" src/content/docs/ | wc -l