NUU Meshalpha 0.1.0

A cognitive data primitive for humans, LLMs, and machines. Mesh is any collection of markdown documents and media blobs, from a single file to an entire knowledge base. Documents are referenced with [[wikilinks]] and media files are embedded with ![[target]]. Mesh normalizes data into a flat namespace with pre-computed indexes, backlinks, tags, types, all resolving in O(1). Fractal by nature and storage-agnostic by design.

mesh.ts
import { buildMesh, resolveLink } from "@nuucognition/mesh-core"// Load documents from any sourceconst mesh = buildMesh(documents, blobs)// O(1) link resolutionconst result = resolveLink(mesh, "My Document")// Pre-computed backlinksconst backlinks = mesh.indexes.backlinks.get("My Document")// Validate the entire graphconst diagnostics = validateMesh(mesh)
npm i @nuucognition/mesh-core
Documents to Mesh diagram
Documents to MeshMultiple documents are normalized into a unified graph with resolved cross-document links.