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

@airouter.ch/ltm-claw

v1.0.2

Published

Long-term memory (LTM) access for OpenClaw without bloating session context (using subagents). v1: session grep search. v2+: typed memories, hybrid search, knowledge graph.

Readme

ltm-claw

Long-term memory (LTM) access for OpenClaw without bloating session context using subagents (sidecar).


Overview

ltm-claw gives your OpenClaw agent persistent, queryable memory across sessions. It is installed as an OpenClaw plugin and exposes tools for storing and retrieving memories.

v1 (current): grep-based session history search via subagent — no external dependencies.

v2 (coming): Typed memories + hybrid BM25/vector search using a local llama-server embedding endpoint.

v3: Graph traversal + reflection.

v4: Self-evolution + memory hygiene.

See ROADMAP.md for full milestones.


Installation

v1 has no external dependencies (no SQLite, no embeddings). Just the subagent grep pipeline.

Host requirements: python3 and jq must be available in PATH.

openclaw plugins install @airouter.ch/ltm-claw

Configuration

Defaults are set during installation in ~/.openclaw/openclaw.json:

{
  "plugins": {
    "entries": {
      "ltm-claw": {
        "enabled": true,
        "config": {
          "retrievalTimeoutSeconds": 60,
          "workspaceDir": "/tmp/ltm-claw"
        }
      }
    }
  }
}

Tools

ltm_search

Search session history via grep + subagent.


Usage

ltm_search is triggered automatically when you ask about past conversations, prior work, or anything that would require context from earlier sessions. Examples:

"Hey, didn't we talk about Rickrolling someone last week?"

## a3f9c812 (2026-03-18)

Never gonna give you up — the session discussed deploying a Never Gonna Give You Up
autoresponder as a mitigation for a specific trigger phrase. The decision was to flag
it as low-priority幽默 rather than implement it as a production rule.

"What did we decide on the Ultimate Answer again?"

## 7b2d1e45 (2026-03-21)

42. The session confirmed 42 as the agreed-upon answer, contingent on the universe
not changing its numbering system. Further research into alternative numbering systems
was deemed out of scope but noted for v3 graph traversal.

Project docs

| File | Purpose | |------|---------| | README.md | This file — overview, install, tools | | ROADMAP.md | Version milestones |


💜 Sponsors

AI Router Switzerland — unlimited API access with flatrate pricing. Main sponsor of the infrastructure and research behind ltm-claw.


📄 License

This project is licensed under the MIT License.