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

recall-context

v0.2.0

Published

Persistent, evidence-backed codebase context for AI coding agents.

Readme

Recall

Stop explaining your codebase to AI every new session.

Recall scans a repository and generates persistent, evidence-backed context that Claude Code, Codex, Gemini CLI, Cursor, and other coding agents can reuse.

npm version npm downloads CI license latest release

Early public release. Commands, output format, and internals may still change between versions. See Current scope for what's supported today.

Quick start

npx recall-context init
npx recall-context context --stdout

Or install it once and use the shorter recall command:

npm install -g recall-context
recall init

The npm package is recall-context; it installs the recall and recall-context commands, which invoke the same CLI.

Requirements

  • Node.js 22 or newer.

What it generates

.recall/
├── manifest.json       # pointer to the current snapshot + memory files
├── architecture.md      # detected apps/packages/layers, entry points, dependency direction
├── conventions.md       # naming, aliases, linting/formatting, scripts
├── decisions.md         # human-editable decision log
├── features.md          # features backed by structural evidence (controllers, routes, jobs...)
├── glossary.md          # recurring domain terms extracted from identifiers
├── risks.md              # evidence-based risk findings (missing tests, circular deps, etc.)
├── technical-debt.md    # measurable debt findings with evidence and severity
└── snapshots/
    └── latest.json       # the deterministic scan result everything above is derived from

Every generated file wraps Recall's content in markers; anything you write outside them is yours and survives every recall update.

Before / after

Before, every new AI session:

New session → explain architecture → explain conventions → explain important files → repeat next session

After:

recall context --stdout

Paste or pipe the output into your coding agent.

Recall vs CLAUDE.md / AGENTS.md

| | CLAUDE.md / AGENTS.md | Recall | | ------------------- | ----------------------------- | -------------------------------------------------- | | Authored by | A human, by hand | Derived from repository evidence | | Stays current? | Can go stale silently | Detects and reports staleness (recall status) | | Shape | Typically one static document | Snapshot + multiple focused files | | Scans the repo? | No | Yes — deterministic, local scan | | Evidence paths | Not by default | Every claim traces back to source | | Works across agents | Depends on the file | Same output for any agent that reads Markdown/JSON |

Recall doesn't replace CLAUDE.md or AGENTS.md. Use CLAUDE.md/AGENTS.md for human-authored instructions — things only a person should decide. Use Recall for generated repository context and freshness checks — things that can be derived and kept honest automatically. Most projects will want both.

Commands

recall init                                  # analyze the repository and create .recall/
recall scan                                   # re-run deterministic analysis, save a snapshot
recall update                                 # refresh memory from the current repository state
recall status                                 # check whether memory is initialized and up to date
recall explain <path>                         # explain a file or directory's role
recall context                                # generate compact, agent-ready context
recall context --task "Add password reset"    # focus that context on a specific task
recall doctor                                 # validate the environment and memory state

See docs/cli-reference.md for every flag and exit code.

Safety

  • Local-first: everything runs on your machine, in your repository.
  • No account, sign-up, or API key required.
  • The CLI sends no telemetry. The documentation website is a separate application with its own operational analytics.
  • No AI provider is required or called by default (see docs/provider-interface.md).
  • Does not execute, import, or evaluate your project's source code or scripts.
  • Managed writes are restricted to .recall/, .gitignore, and any output path you explicitly pass.
  • Refuses to write through a symlinked .recall directory or a symlink escape anywhere in the write path.
  • Generated Markdown preserves human-authored content outside its <!-- recall:generated:* --> markers.

Current scope

Supported now: JavaScript, TypeScript, Node.js, NestJS, Next.js, pnpm/npm/Yarn, monorepos, both Git and non-Git repositories.

Not yet built: an MCP server, additional language ecosystems, deeper semantic (AST-based) analysis, an optional AI-assisted "why" layer, editor integrations. See docs/roadmap.md for the full list and what's deliberately deferred.

Demo

A 20–30 second terminal recording is planned but not yet produced — see docs/demo-script.md for the exact script and docs/assets/ for where the recording will live once made.

Learn more

A note on the name

Recall's longer-term vision includes tracking why decisions were made, not just what the code currently looks like. That's a future direction, not a current capability — today decisions.md records only what's structurally evidenced plus whatever a human writes into it by hand.

License

MIT