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

memory-lucia

v2.5.4

Published

Advanced memory system for OpenClaw agents with priority analysis, learning tracking, decision recording, and skill evolution

Readme

Memory Lucia

npm version GitHub License

Local SQLite-based memory system for OpenClaw agents. All data stored locally with no external dependencies.

📦 Installation

npm install memory-lucia

🚀 Quick Start

const MemoryAPI = require('memory-lucia');

const api = new MemoryAPI('./memory.db');
await api.init();

// Track learning progress
await api.startLearning(msgId, convId, message);
await api.updateLearningProgress(learningId, { progress: 50 });

// Record a decision
await api.recordDecision(msgId, convId, {
  summary: 'Choose SQLite over PostgreSQL',
  context: 'For local deployment',
  expectedOutcome: 'Simpler setup'
});

// Get dashboard
const dashboard = await api.getDashboard();
console.log(dashboard);

✨ Features

  • 🎯 Priority Analysis - Analyze and store message priorities
  • 📚 Learning Tracking - Track learning progress and milestones
  • 🎯 Decision Recording - Record decisions with outcomes and reviews
  • 📈 Skill Evolution - Monitor skill usage and growth
  • 💾 Version Management - Automatic backups with rollback
  • 📊 Dashboard - Unified view of all memory data

📖 Core Modules

1. Priority Module

Analyze and store message priorities.

const analysis = await api.analyzePriority(message);
await api.storePriority(msgId, convId, analysis);
const highPriority = await api.getHighPriority(10);

2. Learning Module

Track learning topics and progress.

const learning = await api.startLearning(msgId, convId, message);
await api.addMilestone(learning.id, { title: 'Completed Chapter 1' });
const active = await api.getActiveLearning(5);

3. Decision Module

Record and review decisions.

await api.recordDecision(msgId, convId, decisionData);
await api.updateDecisionOutcome(decisionId, { actualOutcome: 'Success' });
const pending = await api.getPendingDecisions();

4. Evolution Module

Monitor skill usage.

await api.recordSkillUsage('skill-name', 'category', 'success');
const topSkills = await api.getTopSkills(10);

📚 Documentation

🗄️ Database

SQLite backend with tables:

  • memory_priorities - Priority analysis
  • memory_learning - Learning tracking
  • memory_decisions - Decision records
  • memory_evolution - Skill usage

🔗 Links

  • npm: https://www.npmjs.com/package/memory-lucia
  • GitHub: https://github.com/wen521/memory-lucia-
  • Issues: https://github.com/wen521/memory-lucia-/issues

📋 Version

Current: 2.5.4

📄 License

MIT © Chief of Staff