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

mnemo-mem

v0.1.2

Published

Give your AI agents a git repo as a brain. Local-first persistent memory for OpenCode, Claude Code, Cursor & Codex — MCP server + auto-capture plugin.

Readme

mnemo

npm version npm downloads CI license MIT PRs welcome

Give your AI agents a git repo as a brain.

mnemo is persistent, local-first memory for AI agents (OpenCode, Claude Code, Cursor, Codex…). Agents remember by writing Markdown files into a git repo — so you get auditability, branching, snapshots, and rollback for free.

demo

$ mm new "We chose Postgres" --body "over Mongo, because of transactions" --tags decision,db --importance 0.9
wrote main/20260811-221936-2d37

$ mm search "which database did we pick"
20260811-221936-2d37  0.81  [main]  We chose Postgres

$ mm log
4e246fa  mem: add 20260811-221936-2d37 - We chose Postgres

$ mm undo        # revert the last change — history is preserved
$ mm branch exp  # fork an alternative memory timeline

Why

LLM agents are stateless: every session forgets everything. You repeat decisions, preferences, and context over and over — burning tokens and letting the agent re-open settled questions.

mnemo fixes the pain points:

  • Cross-session onboarding — a new session reads yesterday's memories and starts knowing.
  • Multi-agent shared reality — the planner writes decisions, the implementer reads them.
  • Auditabilitygit log shows exactly what the agent knew, and when. (The requirement the agent community keeps asking for in 2026.)
  • Token economy — recall the 3 memories that matter instead of re-reading the whole project.
  • 100% local — memory is a folder on your machine. No cloud, no lock-in.

How

              ┌─────────────────────┐
  agent ─────▶│  MCP server (mm mcp) │──┐
              └─────────────────────┘  │
              ┌─────────────────────┐  │   .mnemo/          (a git repo)
  OpenCode ──▶│  plugin (auto)       │──┼──▶ memories/<agent>/<id>.md
  plugin      │  capture + seed      │  │        └── frontmatter + markdown
              └─────────────────────┘  │   search: BM25 + recency + importance
  human ─────▶│  mm CLI               │──┘   audit:  git log / diff / revert
              └─────────────────────┘

Every memory is a human-readable Markdown file with metadata, and every mutation is a git commit. Search is classic BM25 plus a recency/importance rank — zero dependencies, ~90% recall@1 on synthetic corpora.

Install & use

npm i -g mnemo-mem

# in your project:
mm init
mm setup-opencode        # installs the OpenCode plugin + MCP config, then restart OpenCode

The OpenCode plugin makes memory automatic: at the end of a session it summarizes what was decided/learned and stores it; at the start of the next session it seeds the agent with the recent highlights. You don't maintain memory — it happens.

For other agents, add the MCP server:

{ "mcpServers": { "mnemo": { "command": "mm", "args": ["mcp"] } } }

And drop prompts/AGENTS.md into your project so agents know to call recall before work and remember after decisions.

CLI reference

mm init / new / ls / search / cat / rm
mm log | undo | revert <commit> | snapshot <tag> | tags | branches | branch | switch
mm mcp | setup-opencode

Documentation

Roadmap

  • [x] Core store (Markdown + frontmatter, per-agent profiles)
  • [x] Git substrate (auto-commit, branches, undo, snapshots)
  • [x] Search (BM25 + recency/importance ranking, optional embeddings)
  • [x] MCP server + OpenCode plugin (auto-capture + auto-recall)
  • [ ] Consolidation (auto-compress many small memories into an executive summary)
  • [ ] Semantic search defaults, more embedders
  • [ ] Benchmarks on real agent sessions

Develop

npm install
npm test              # vitest — 32 tests
npm run build         # tsc
npm run benchmark     # recall@k on 100/1000-memory corpora
bash scripts/demo.sh  # watch it work
vhs -o demo.gif scripts/demo.tape   # regenerate the README GIF (needs vhs + ttyd)

License

MIT — © 2026 JoaquimLegal