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

code-recall-tui

v1.0.2

Published

Terminal UI for browsing code-recall memories, rules, and code entities

Readme

code-recall-tui

Terminal UI for browsing your code-recall database

Explore memories, rules, code entities, and search through everything your AI agent has learned.

npm License: MIT Bun


Installation

bun install -g code-recall-tui

Usage

Run from the root of a project that has a .code-recall/memory.db file:

code-recall-tui

Or specify a project path:

code-recall-tui --project /path/to/your/project

You can also set the project path via environment variable:

CODE_RECALL_PROJECT_PATH=/path/to/project code-recall-tui

Screens

Dashboard

Overview of your code-recall data at a glance:

  • Total memories, rules, failed decisions, and warnings
  • Category breakdown (decisions, patterns, warnings, learnings)
  • Recent activity feed
  • Failed approaches panel

Memories

Browse all stored memories with category filtering:

  • Filter by: All, Decisions, Patterns, Warnings, Learnings
  • Navigate tabs with [ and ]
  • Press Enter to view full memory details

Memory Detail

Full view of a single memory including:

  • Category and outcome status
  • Content, rationale, and context
  • Tags, file path, and recorded outcome

Rules

Browse all active rules/guardrails with their trigger patterns and constraint counts.

Rule Detail

Full view of a rule showing:

  • Trigger pattern
  • Must Do constraints
  • Must Not constraints
  • Ask First questions

Code Entities

Browse analyzed source files and their extracted code structure:

  • Split view: file list + entity details
  • Color-coded entity types (classes, functions, interfaces, etc.)
  • Signatures and line ranges

Search

Full-text search across all memories using SQLite FTS5.


Keyboard Shortcuts

| Key | Action | |-----|--------| | 1 | Go to Dashboard | | 2 | Go to Memories | | 3 | Go to Rules | | 4 | Go to Code Entities | | / | Go to Search | | Escape | Go back | | Enter | Select / Open detail | | Tab | Toggle panel focus (where applicable) | | [ / ] | Switch tabs (Memories screen) | | q | Quit |


Requirements

  • Bun v1.0 or higher
  • An existing .code-recall/memory.db database (created by the code-recall MCP server)
  • macOS: SQLite with extension support (via Homebrew: brew install sqlite)

How It Works

code-recall-tui opens your .code-recall/memory.db database in read-only mode -- it never modifies your data. It's a standalone viewer that is completely independent from the code-recall MCP server.


License

MIT License - see LICENSE for details.