Skip to main content

Documentation Index

Fetch the complete documentation index at: https://aidocs.zorid.app/llms.txt

Use this file to discover all available pages before exploring further.

Zorid stores derived metadata in .zorid/index/index.sqlite. The index is rebuildable at any time from canonical Markdown, .zbase, and .ztype files.

Tables (v0)

TablePurpose
filesOne row per Markdown file: path, mtime, hash, title, frontmatter blob
fieldsNormalized field values per file, with inferred and declared types
tagsTag occurrences and counts
linksWiki/Markdown link edges (source path → target path or unresolved target)
embedsEmbedded paths (including .zbase) per file
headingsOutline entries with depth and offset
typesResolved .ztype definitions and field schemas
views.zbase base + view metadata; renderer config stored as config_json

Indexing flow

IndexEngine contract

packages/index-api defines the IndexEngine interface. packages/indexer-js provides the v0 reference implementation. crates/index-core + crates/index-wasm are reserved for a later Rust acceleration layer behind the same contract.

Source

Full index schema and migration rules on GitHub.