npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

ai-memory-booster

v1.0.7

Published

AI Memory Booster - A memory-enhanced AI chat module with storage capabilities.

Readme

AI Memory Booster

AI Memory Booster is an AI-powered memory enhancement module that enables long-term AI memory and retrieval of conversations using embeddings and vector databases.

Online demo https://aimemorybooster.com

📚 Table of Contents

🚀 Features

  • Fully deployable on-premise: Run locally to maintain full control, meet strict compliance, and ensure enhanced data privacy.
  • Self-learning capability: Continuously adapts to user environments for more personalized performance over time.
  • Permanent long-term memory: Retains information across sessions and system restarts.
  • Offline functionality: Operates without internet access, improving performance and reducing external dependencies.
  • LLM-agnostic: Integrates with any LLM based on your infrastructure or budget.
  • Simple to manage: Configure easily using a JSON file or via the built-in admin portal.
  • Seamless integration: Provides an NPM package, REST API, and a web interface for plug-and-play deployment.
  • Fully user-owned: Avoids reliance on third-party AI services, lowering costs and boosting independence.

📦 Installation

🔤 Quick Setup for MacOS/Linux Users

For MacOS or Linux users, we provide a script to automate the setup process:

./install.sh

This script will:

  • Install dependencies
  • Setup environment variables (.env.local)
  • Launch required services (e.g., ChromaDB)

Make sure the script has executable permission:

chmod +x install.sh

Manual Install Instruction

Pre-requisites

Before running AI Memory Booster, ensure that you have Ollama and ChromaDB installed.

Install Ollama

Follow the official installation guide at: https://ollama.ai/

Install ChromaDB

Ensure ChromaDB is installed and running:

pip install chromadb
chroma run --path ./chroma_db

Install AI Memory Booster via npm:

npm install ai-memory-booster

🎯 Usage

AI Memory Booster provides the following methods:

Store Memory

Injects a memory entry into AI Memory Booster.

await AI_Memory.storeMemory("Today is Wednesday and it is raining", "Today is Wednesday, how's the weather?", "It is raining");

Retrieve Memory

Fetches relevant stored memories based on a user's message.

const memory = await AI_Memory.retrieveMemory("How's the weather today?");
console.log(memory);

Response Example:

{
  "id": "99c326e8-e234-4049-8661-3d9427944071",
  "distance": 0.1, // The distance between the query and result (smaller is better)
  "summary": "Today is Wednesday and it is raining",
  "userMessage": "Today is Wednesday, how's the weather?",
  "aiMessage": "It is raining",
  "timestamp": 1740999657717
}

Forget Memory

Deletes a memory entry by ID.

const success = await AI_Memory.forget("99c326e8-e234-4049-8661-3d9427944071");
console.log(success); // true if deleted, false if ID is null

Forget All Memories

Deletes all stored memory entries.

const success = await AI_Memory.forgetAll();
console.log(success); // true if deleted, false if no memories exist

Get LLM Specification

Retrieves details about the current LLM module.

const llmSpec = await AI_Memory.getLlmSpec();
console.log(llmSpec);

Chat with AI Memory Booster

Interacts with the AI while using stored memory (For chat).

const response = await AI_Memory.chat("How's the weather today?");
console.log(response); // "It is raining today!"

Generate content with AI Memory Booster

Interacts with the AI while using stored memory (For generating text content).

const response = await AI_Memory.generate("How's the weather today?");
console.log(response); // "It is raining."

🔧 Configuration

AI Memory Booster allows full customization through config.json. Users can modify AI model settings, server configurations, memory management, and ChromaDB parameters. The configuration can be updated in two ways:

  • Directly modifying config.json
  • Using AI Memory Booster UI for easy configuration updates

Example config.json:

{
  "aiModel": "llama3.2", // The primary AI model (must be downloaded first)
  "learnFromChat": true, // Determines if AI should learn from conversations
  "host": "localhost", // The host address when running AI Memory Booster as an API service
  "port": 4000, // The port for the AI Memory Booster API service
  "baseKeepAlive": 3000, // Duration (ms) the LLM module stays active after each call
  "extendedKeepAlive": 10000, // Extended duration (ms) the LLM remains active if no other requests arrive
  "similarityResultCount": 3, // Number of similar records retrieved from the database
  "categorySureThreshold": 49, // Threshold for AI to confidently classify a response
  "maxUserMessageCharacterLimit": 10000, //Max user message length allowed
  "summaryCharacterLimit": 256, // Maximum character length for conversation summaries
  "dimension": 768, // Dimensionality of vector embeddings
  "similarityThreshold": 0.7, // Threshold for similarity-based searches
  "consolidateConversationThreshold": 256, // Threshold for summarizing conversations
  "chromaDBHost": "http://localhost:8000", // ChromaDB service URL (host and port)
  "tenant": "default_tenant", // ChromaDB tenant name
  "collection": "ai_memory_booster", // ChromaDB collection name used by AI Memory Booster
  "rolePrompt": "You are a personal assistant. 'AI' represents you, and 'User' represents the person currently talking to you. When the user says 'I', 'mine', 'me' or 'my', it refers to the user, not you ('AI'). Do not fabricate responses.", // Prompt for how AI should respond based on past memory
  "debug": false, // If turn on the debug message
  "archive": false, // If turn on the memory archive mode
}

ConfigManager Usage:

Users can dynamically get and set configurations via configManager:

const port = AI_Memory.configManager.getPort();
console.log(`Running on port: ${port}`);

AI_Memory.configManager.setPort(8080);
console.log(`Updated port: ${AI_Memory.configManager.getPort()}`);

🔧 Development

Clone and install dependencies:

git clone https://github.com/aotol/ai-memory-booster.git
cd ai-memory-booster
npm install

To start AI Memory Booster as a standalone API service:

npx ai-memory-booster start

To launch AI Memory Booster UI, go to:

cd ai-memory-booster/web/ai-memory-ui/
npm run dev

Make sure you have set the environment variable: AI_MEMORY_BOOSTER_API_URL to identify where AI Memory Booster API service is running.

e.g.:

export AI_MEMORY_BOOSTER_API_URL="http://localhost:4000"

Alternatively, create a .env.local file under ai-memory-ui directory and set the content to:

AI_MEMORY_BOOSTER_API_URL=http://localhost:4000

📜 License

MIT License - AI Memory Booster versions 1.x.x are free and open-source under the MIT License.

Note: Starting from version 2.0.0, AI Memory Booster will be available as a commercial version with multi-tenant (user) support and advanced features. For commercial licensing and inquiries about 2.0.0 and above, please contact [email protected].

📩 Contact

Author: Aotol Pty Ltd
Email: [email protected]
Website: https://github.com/aotol/ai-memory-booster


🚀 Start building with AI Memory Booster today!