Skip to main content
The Wiki toolchain is a command-line system for Markdown wikis. You keep writing in Obsidian, VS Code, or any editor, then use the CLI to validate documents, run semantic queries, render derived content, and build static sites.

What it does

  • Trust - check, lint, and fmt validate frontmatter, links, shapes, and conventions.
  • Intelligence - query, render, and export turn Markdown into queryable semantic data.
  • Publish - build, serve, and link support static site workflows and wikilink hygiene.

Use cases

  • Personal knowledge management and Obsidian vaults.
  • Internal company wikis.
  • LLM memory wikis maintained by agents.
  • Static documentation sites backed by semantic Markdown.

Repositories

RepositoryPurpose
wikiCLI, Python package, docs, and core implementation
wiki-templateGeneric starter workspace
llm-wiki-templateAgent-oriented wiki starter
wiki-mintlify-templateMintlify docs from a Wiki vault

Programmatic integration

The Wiki toolchain ships as an embeddable Python library and exposes JS-CLI bindings for JavaScript and TypeScript environments.
from wazootech_wiki import Wiki

wiki = Wiki("./my-vault")
wiki.check(strict=True)
wiki.build()

Install

pip install wazootech-wiki
wiki --help
npx wazootech-wiki --help

Learn more