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

@xiaofandegeng/rmemo

v2.2.0

Published

Repo memory + dev journal CLI: scan any project, persist conventions/progress, and generate an AI-ready context pack.

Readme

rmemo

面向任意代码仓库的“项目记忆 + 开发日志”CLI。

rmemo 会扫描仓库、把规则和进度沉淀到 .repo-memory/,并生成可直接给 AI 使用的上下文包,减少跨天开发丢失上下文。

English | 简体中文

安装

npm i -g @xiaofandegeng/rmemo

5 分钟上手

在你的项目根目录执行:

rmemo init --auto
rmemo start
rmemo done "今天完成了什么"
rmemo handoff

如果不想全局安装:

node /path/to/rmemo/bin/rmemo.js --root /path/to/your-repo init

日常工作流

rmemo start
rmemo check --staged
rmemo done "今天变更 / 下一步"
rmemo handoff
rmemo pr --base origin/main

建议一次性执行:

rmemo setup

会自动配置 sync 目标和 git hooks(pre-commitpost-commitpost-mergepost-checkout)。

关键产物

rmemo 主要维护 .repo-memory/ 下这些文件:

  • rules.md:团队/项目约定
  • todos.md:下一步与阻塞
  • journal/YYYY-MM-DD.md:每日进展日志
  • context.md:AI 上下文包
  • manifest.json / index.json:项目扫描元数据

集成能力

同步 AI 指令文件:

rmemo sync
rmemo sync --check

本地 HTTP 服务(面板 + API):

rmemo serve --root . --token devtoken --port 7357

以 MCP Server 方式运行:

rmemo mcp --root .
rmemo mcp --root . --allow-write

可选语义检索:

rmemo embed build
rmemo embed search "auth token refresh"

Monorepo 支持:

rmemo ws ls
rmemo ws batch handoff

稳定性契约

v1.0.0+ 开始:

  • CLI 命令名和已存在参数在次版本内保持稳定。
  • HTTP/MCP 响应结构向后兼容(可新增字段,不破坏旧字段)。
  • .repo-memory 目录结构可稳定用于自动化。

发版与质量校验

常用校验命令:

node --test
npm run pack:dry
npm run verify:release-ready

完整发版流程请看:

文档入口