Skip to main content
Wazoo is building infrastructure for software that can remember, explain, and evolve. The projects are different entry points into the same system: documents become data, data becomes context, and context becomes a world model that agents can use without guessing.

The problem

Most AI products still treat context as a temporary blob of text. That creates familiar failures:
  • Memory is locked inside vendor-specific backends.
  • Documents are readable by humans but weakly typed for machines.
  • Agents retrieve text snippets without knowing the facts behind them.
  • Teams cannot easily verify where an answer came from.

The Wazoo approach

Wazoo projects use semantic standards and practical developer tools to make context inspectable.

Represent

Linked Markdown turns ordinary Markdown into typed, queryable documents.

Validate

The Wiki toolchain checks links, frontmatter, shapes, and graph integrity before publish.

Store

Worlds stores graph facts with search and SPARQL for agent workflows.

Port

MemSDK lets applications swap memory backends without rewriting their memory layer.

How the pieces fit

Markdown and app events
        |
        v
Linked Markdown + Wiki toolchain
        |
        v
Validated semantic graph data
        |
        v
Worlds and memory adapters
        |
        v
Agents, apps, docs, and consoles
Worlds is the storage and reasoning layer in that stack. Linked Markdown defines semantic documents, the Wiki toolchain validates and publishes them, and MemSDK lets applications use Worlds as one portable memory backend instead of hard-coding a single provider.

What to explore first

  • If you need agent knowledge graphs, start with Worlds.
  • If you maintain a wiki or docs vault, start with the Wiki toolchain.
  • If you design semantic document formats, start with Linked Markdown.
  • If you are integrating memory providers, start with MemSDK.