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

@globalcaos/openclaw-memory-enhancements

v0.1.0

Published

Same concept, twentieth time — why search again? O(1) hippocampus index layered on upstream memory-core.

Readme

Memory Enhancements

Same concept, twentieth time — why search again? O(1) hippocampus index layered on upstream memory-core.

Upstream's memory-core is a solid chassis — hybrid FTS + vector + MMR + temporal decay, markdown-first source of truth. This plugin adds four layered wins without touching its source.

  1. Hippocampus O(1) concept index (live in v0.1) — pre-computed anchor → chunk map. When a query contains a known concept, retrieval skips the hybrid search entirely and returns in constant time. Upstream always pays the full FTS + vector + MMR cost; this plugin recognizes "we've seen this twenty times" and short-circuits.
  2. Task-conditioned retrieval scoring (scaffolded for v0.2) — biases retrieval toward the current task context, not just the query text. If the agent is fixing cron, results lean cron-shaped even when the immediate query doesn't say "cron".
  3. Contradiction-gate on writes (scaffolded for v0.2) — before the nightly deep-dreaming sweep promotes short-term recalls to durable MEMORY.md, candidates are checked against existing facts. warn logs; block vetoes the promotion. Stops slow self-corruption by wishful thinking.
  4. Compaction-aware capture (live in v0.1, ingestion landing in v0.2) — snapshots messages on the way out of the context window so nothing important is lost to truncation.

Remove the plugin and memory-core works exactly as upstream ships it. You just lose the four wins.

Install

openclaw plugins install @globalcaos/openclaw-memory-enhancements

Enable it in openclaw.json:

"plugins": {
  "allow": ["tinkerclaw-memory-enhancements"],
  "entries": { "tinkerclaw-memory-enhancements": { "enabled": true } }
}

Pairs Well With

  • @globalcaos/openclaw-total-recall — ENGRAM is the deeper episodic store; this plugin is the fast lookup. Use both for full coverage: O(1) by-concept on the head, retrieval-by-similarity over the long tail.
  • @globalcaos/openclaw-identity-persistence — the contradiction gate keeps your agent's self-model coherent. SOUL.md says one thing today; durable memory can't slowly disagree.
  • @globalcaos/openclaw-fractal-reflection — reflections become candidate writes. The contradiction gate catches the ones that disagree with established memory before they become beliefs.

👉 https://github.com/globalcaos/tinkerclaw 👉 https://thetinkerzone.com

Clone it. Fork it. Break it. Make it yours.