@tekmemo/graph
v0.2.1
Published
Provider-neutral graph memory primitives for TekMemo.
Readme
@tekmemo/graph
Purpose
Graph memory. Provider-neutral graph-memory contracts, nodes, edges, relationship traversal, and local/in-memory graph behavior.
Install
npm install @tekmemo/graphQuick start
import { createGraphNode, createGraphEdge } from "@tekmemo/graph";
const auth = createGraphNode({ id: "auth", label: "Authentication" });
const edge = createGraphEdge({ from: "auth", to: "billing", type: "depends_on" });Boundary
This package owns its package-level contract only. It does not own TekMemo Cloud billing, dashboards, tenancy, hosted database storage, or provider secrets unless explicitly stated by its package name.
For hosted memory, use @tekmemo/cloud-client. For local file-backed memory, use tekmemo with @tekmemo/fs. For MCP tools, use @tekmemo/mcp-server.
License
MIT.
