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

omnimem

v0.2.26

Published

OmniMem CLI and bootstrap runner

Readme

OmniMem(中文说明)

English: README.md

OmniMem 是一套可复用、低耦合的 AI Agent 记忆基础设施,支持跨工具、跨设备、跨项目与跨账号。

3 分钟上手

  1. 安装:
bash scripts/install.sh
  1. 启动 WebUI + 守护进程:
~/.omnimem/bin/omnimem start
  1. 打开:
  • http://127.0.0.1:8765
  1. 在 WebUI 完成 GitHub 同步登录(可选):
  • Configuration -> GitHub Quick Setup -> Sign In via GitHub

OAuth Broker 一键部署

部署到 Cloudflare Worker 部署到 Vercel 部署到 Railway Fly.io 模板

部署完成后,把 broker URL 填到 WebUI Configuration -> OAuth Broker URL。 说明:Cloudflare 可能先展示通用 monorepo 警告页面,这属于正常提示,可继续操作。

部署页面需要填写的关键项:

  • Cloudflare Worker:
    • Variables/Secrets 中设置 GITHUB_OAUTH_CLIENT_ID
  • Vercel:
    • Environment Variables 增加 GITHUB_OAUTH_CLIENT_ID(至少 Production)。
  • Railway:
    • Variables 增加 GITHUB_OAUTH_CLIENT_ID
  • Fly.io:
    • App 名称可自定义且需唯一。
    • 设置 secret:fly secrets set GITHUB_OAUTH_CLIENT_ID=...

快速健康检查(把 <BROKER_URL> 替换成你的地址):

curl -sS -X POST "<BROKER_URL>/v1/github/device/start" \
  -H 'Content-Type: application/json' \
  -d '{}' | jq .

预期:返回类似 missing client_id 的 JSON 错误(说明 broker 端点可达)。

npm 使用

无需全局安装直接运行:

npm exec -y --package=omnimem --call "omnimem start"

或全局安装:

npm i -g omnimem
omnimem start

Agent 模式

omnimem codex
omnimem claude
omnimem codex --context-profile low_quota --quota-mode critical --show-context-plan
omnimem context-plan --prompt "summarize architecture and risks" --context-profile balanced --quota-mode auto

排障命令:

omnimem doctor
omnimem stop

常见问题

  • 需要手动创建 SSH key 或 token 吗?
    • 常规流程不需要。可直接用 WebUI 的 GitHub OAuth 登录。
  • 记忆同步是否经过服务器中转?
    • 不会。记忆同步仍是本机 Git 操作。
  • OAuth broker 是做什么的?
    • 仅用于简化 GitHub OAuth 登录,不在记忆数据链路中。
  • OAuth broker 一键部署按钮在哪?
    • 已在本 README 上方给出。完整说明见 docs/oauth-broker.zh-CN.md

文档索引

  • 中文文档入口:docs/README.zh-CN.md
  • English docs entry: docs/README.md