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

claude-memory-kit

v1.0.0

Published

Zero-infrastructure persistent memory for Claude Code. iCloud-synced, human-readable, no databases.

Readme

claude-memory

Zero-infrastructure persistent memory for Claude Code. iCloud-synced, human-readable, no databases.

npx claude-memory install

The problem

Every Claude Code session starts blank. No memory of what you worked on, what decisions were made, what to do next.

Most solutions require running databases and services. This is overkill — and adds infrastructure that breaks.

claude-memory uses iCloud and markdown. That's it.


How it works

Open pinned project in Claude Code
          ↓
   New blank session starts
          ↓
  CLAUDE.md loads automatically
          ↓
Claude reads your memory file and greets you:

  "Project loaded. Last session Apr 14: fixed the auth bug.
   Next up: write tests, deploy to staging.
   What do you want to work on?"
          ↓
         Work
          ↓
      /wrap command
          ↓
  Memory file updated in iCloud
          ↓
  Next session picks up here

Your memory lives here

iCloud Drive/
└── Claude/
    ├── claude-memory/
    │   ├── _index.md          ← all projects at a glance
    │   ├── projects/
    │   │   ├── my-app.md      ← session history, decisions, next steps
    │   │   └── side-project.md
    │   └── system/
    │       └── CLAUDE.md      ← global instructions (auto-symlinked)
    └── commands/
        ├── wrap.md            ← /wrap session command
        └── route.md           ← /route model advisor

Plain markdown files. You can read them, edit them, search them. They sync to every device via iCloud automatically.


Install

# Set up everything on this machine
npx claude-memory install

# Wire any project folder
cd my-project
npx claude-memory add-project

# Full structure (rules, hooks, agents)
npx claude-memory add-project --full

# Check install health
npx claude-memory status

What add-project creates

Lean (default):

my-project/
├── CLAUDE.md          ← session-start protocol (reads your memory file)
└── CLAUDE.local.md    ← machine-specific overrides (gitignored)

Full (--full):

my-project/
├── CLAUDE.md
├── CLAUDE.local.md
└── .claude/
    ├── rules/         ← conventions.md, style.md
    ├── commands/      ← project-specific slash commands
    ├── hooks/         ← pre/post tool validation scripts
    └── agents/        ← sub-agent definitions

Why not claude-mem or mem0?

| | claude-memory | claude-mem | mem0-mcp-selfhosted | |--|--|--|--| | Infrastructure | None | SQLite + ChromaDB + worker | Qdrant + Neo4j + Ollama | | Cross-device | ✅ iCloud | ❌ Local only | ❌ Self-hosted | | Human readable | ✅ Markdown | ❌ Database | ❌ Database | | Memory quality | Curated (/wrap) | Auto (captures noise) | Auto | | Setup | npx claude-memory install | npx install | Docker stack |


Requirements

  • macOS with iCloud Drive enabled
  • Node.js 18+
  • Claude Code

License

MIT