New:Microsoft Teams Notifications Are Now Available in Socket.Learn more →
Get Started

@tekbreed/tekmemo

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tekbreed/tekmemo

TekMemo memory runtime for AI apps and agents

alpha
latest
Source
npmnpm
Version
1.0.0-alpha.0
Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

Memory Layer

@tekbreed/tekmemo

npm version   Status: Alpha   npm downloads   CI   Docs   MIT License

What is this?

Unified core memory runtime. Core memory contracts, records, chunks, source references, manifest validation, local protocol helpers, and provider-neutral runtime primitives. Consolidates file-based storage, embeddings (OpenAI, VoyageAI), vector store integration (Upstash Vector), and reranking providers into a single package.

Installation

npm install @tekbreed/tekmemo

Quick Start

Initialize memory in your project and read the core memory:

import { bootstrapMemoryStore, readCoreMemory } from "@tekbreed/tekmemo";

// Initialize the store in a given directory
const store = await bootstrapMemoryStore({
  rootDir: "./.tekmemo",
});

// Use the store with core helpers
const core = await readCoreMemory(store);
console.log(core.content);

Configuration and Usage

The @tekbreed/tekmemo package is designed to be highly modular. You can import only the specific adapters and utilities you need.

  • Filesystem Store: import { createNodeFsMemoryStore } from "@tekbreed/tekmemo"
  • Agent Sandbox: import { createTekMemoAgentSession } from "@tekbreed/tekmemo"
  • Graph Memory: import { createInMemoryGraphStore } from "@tekbreed/tekmemo"
  • Vector Adapters: import { createUpstashRecallStore } from "@tekbreed/tekmemo"
  • Provider Adapters: import { createOpenAIEmbedder } from "@tekbreed/tekmemo"

For a complete breakdown of configuration options, interfaces, and architecture, see our Full Documentation.

Boundary

This package owns the TekMemo core contracts, memory store adapters, and runtime primitives. It does not own private SaaS concerns such as billing, tenancy, hosted dashboards, encrypted BYOK storage, or internal admin tooling. All public API capabilities are consolidated and exported directly from the root namespace of @tekbreed/tekmemo.

Contributing

See our central Contributing Guide and development scripts for details on formatting, linting, and testing within the monorepo.

License

MIT

Keywords

agents

FAQs

Package last updated on 15 Jun 2026

Related posts