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

aide-memory

v0.6.4

Published

Persistent memory layer for AI coding agents — your agent remembers what you taught it

Readme

aide-memory

Auto-captured, auto-recalled, path-scoped memory for AI coding agents and teams.

Website: https://aide-memory.dev

Docs: https://aide-memory.dev/docs

Install: npm install -g aide-memory && aide-memory init


The problem

Coding with agents has made developers significantly more productive. But it's created a new kind of friction.

You explain how the feature you're building ties into the rest of the system, the way you like to structure your code, the patterns to follow in this area. The agent gets it. You ship great work together. Next session, it's a blank slate. You re-explain the same things.

Critical decisions being made during conversations aren't being captured. Preferences, corrections, area knowledge, guidelines. So much valuable context doesn't persist, doesn't flow to the next session, to a different tool, or to a teammate's agent when they pick up work in the same area.

Rules files (CLAUDE.md, .cursorrules) help, but they have real limits:

  • No unified convention or structure. A team guideline, a personal preference, an area decision, and a stack fact all blur into one file. The whole file gets injected on every turn, even when most of it might not be relevant to the area the agent is working in.
  • Corrections don't make it back. What you teach the agent in conversation doesn't make it back into the rules file on its own.
  • Tool-specific. What you teach your agent in Claude Code doesn't carry to Cursor unless you copy the file over manually.
  • Unscoped recall. The whole file lands in context, or nothing does. There's no prompt for the agent to pull a relevant subset based on the file it just opened.

aide-memory fills these gaps. It sits alongside your rules files, not above or below. Rules files for static, always-on guidance. aide-memory for the dynamic, scoped knowledge that grows with the codebase.


How it works

Capture happens automatically

Six hooks fire across the session lifecycle, installed by aide-memory init:

  • UserPromptSubmit: detects corrections ("no, use X instead") and prompts the agent to store them scoped to the code area
  • Stop: periodic reflection ("anything worth remembering?") on a tunable schedule picks up decisions and findings
  • SessionStart: injects top preferences, guidelines, and priority-always memories so the agent starts with context
  • PreToolUse: before the agent reads or edits a file, checks if relevant memories exist for that path and prompts recall
  • PostToolUse: records what was recalled so re-reads don't re-prompt
  • PreCompact: clears session tracking before context compaction so post-compact reads re-prompt cleanly. The rules file separately tells the agent to save active plans, decisions, and constraints before compaction summarizes the session.

Recall is scoped

Memories attach to code areas via glob scopes (src/components/dashboard/**, packages/api/**). When the agent opens a file, aide-memory matches the path against stored scopes and surfaces what's relevant to that area.

Four layers organize the knowledge:

| Layer | What it captures | Example | |---|---|---| | preferences | How a contributor likes to work | "Prefer modular component structure, separate concerns into smaller files" | | technical | Facts not obvious from code | "Dashboard data fetching uses React Query with stale-while-revalidate" | | area_context | Decisions tied to code areas | "Settings panel uses progressive disclosure; new sections follow the expand/collapse pattern" | | guidelines | Team-wide principles | "Mock external calls at the network boundary in tests, not at the function boundary" |

Recall ranks area_context first (most specific), then technical, then preferences, then guidelines. Scoped memories rank above project-wide ones.

Git-synced for teams

Memories are JSON files under .aide/memories/. Commit, push, pull. A post-checkout git hook rebuilds the local cache after git pull so your teammate's agent picks up your context on their next file read. Personal preferences (preferences/personal/) are gitignored. Team conventions travel with the repo.

Cross-tool

Claude Code and Cursor read the same .aide/memories/ directory. A memory captured in one tool is available in the other. Codex, Copilot, and Windsurf get a rules template at launch; deeper integration may come based on user feedback.


Quick start

# 1. Install and initialize
npm install -g aide-memory
aide-memory init

# 2. Restart your editor so the MCP server registers
#    Claude Code: start a fresh session
#    Cursor: Cmd+Q, reopen, enable in Settings > MCP

# 3. Store a memory
aide-memory remember "Dashboard uses skeleton loading, not spinners" \
  --layer area_context --scope "src/components/dashboard/**"

# 4. Recall context for a path
aide-memory recall src/components/dashboard/

# 5. Share with your team
git add .aide/memories/
git commit -m "Capture dashboard conventions"
git push

Full walkthrough: https://aide-memory.dev/docs/quick-start


What's in the box

  • 7 MCP tools: aide_recall, aide_remember, aide_update, aide_forget, aide_search, aide_memories, aide_import
  • 13 CLI commands: init, recall, remember, update, forget, search, list, stats, recall-log, config, sync, migrate, cleanup
  • 6 hooks wired into the editor at init (SessionStart, PreToolUse, PostToolUse, UserPromptSubmit, Stop, PreCompact)
  • 4 typed memory layers with personal/shared split for preferences
  • FTS5 keyword search plus optional semantic search via Transformers.js or Ollama
  • Version update notice on SessionStart (Claude Code) + auto-regenerated Cursor rules file when a newer aide-memory is on npm

Tunable

aide-memory ships with defaults you can adjust:

  • How often the agent gets prompted to reflect and store context (hooks.stop.schedule; hooks.stop.mode = "off" silences scheduled prompts entirely)
  • Whether a detected correction escalates to a Stop reminder if the agent doesn't store it (hooks.correction.escalate = "off" default, or "block" for an explicit follow-up)
  • How specific a scope needs to be before a memory surfaces per-file vs session-start-only
  • How much context gets injected at session start
  • Which hooks are active (disable per-file blocking, turn off correction detection)
  • Personal vs shared preferences (gitignored or committed, configurable per-project)

aide-memory init seeds .aide/config.json with all public settings. Full reference: https://aide-memory.dev/docs/configuration


Privacy

Memory content stays on your machine. Telemetry is on by default — only event types and machine-anonymous counts (event name, hash of hostname:username for deduplication, platform, arch, Node version) are sent. The sender IP is not transmitted, so location is not derived from events. To turn it off: AIDE_TELEMETRY=off or aide-memory config telemetry.enabled false.


Editor support

| Editor | Status | |---|---| | Claude Code | Reference adapter. Start a fresh session after init so the MCP server registers. | | Cursor | Full hook + MCP wiring. Cmd+Q and reopen after init, then toggle aide-memory ON in Settings > MCP. | | Windsurf, Codex, Copilot | Rules template at launch. Deeper integration may come based on user feedback. |

Per-editor details: https://aide-memory.dev/docs/supported-editors


Requirements

  • Node.js 18 or later
  • npm (global install recommended; npx works as a quick try but path resolution can break across Node version upgrades or npx cache cleans)

No Docker. No external databases. No API keys. No cloud accounts.


License

Free to use. See LICENSE for terms.


Documentation

Full docs: https://aide-memory.dev