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

@jiankarlin/continuum

v0.2.3

Published

Continuum delivery CLI for status, UI, Claude plugin install, and Codex launch.

Downloads

559

Readme

@jiankarlin/continuum

@jiankarlin/continuum 是 Continuum 的统一用户入口。

它负责四类用户命令:

  • continuum start
  • continuum stop
  • continuum status
  • continuum ui
  • continuum claude install
  • continuum codex
  • continuum mna

这层只做交付、安装和启动编排,不承担三大服务的业务实现。

平台支持

当前 continuum start 仅支持 Windows 平台,依赖 winget 和 PowerShell 进行 Docker 安装和进程管理。

其他平台用户请:

  • 手动运行各服务(storage、retrieval-runtime、visualization)
  • 或使用 Docker Compose 自行编排

命令说明

  • continuum start 会拉起 Continuum 自己管理的单一 Docker 容器
  • 容器内部统一运行 PostgreSQL + pgvectorstoragestorage workerretrieval-runtimevisualization
  • 数据库使用 Continuum 自己的容器和默认端口 54329,不会直接占用用户已有 PostgreSQL 实例
  • 向量检索直接连接用户提供的第三方 OpenAI-compatible embeddings API
  • 默认绑定到 127.0.0.1(仅本机访问),可通过 --bind-host 0.0.0.0 允许局域网访问
  • continuum stop 停止并移除 managed 容器,清理状态文件
  • continuum start 会在 stack 就绪后再启动 memory-native-agent
  • continuum mna 用来单独安装、启动、停止、查看日志和读取 token
  • continuum ui 会优先连接已经通过 continuum start 启动好的页面;如果本地没有运行中的页面,才回退到包内自带的可视化产物

第三方向量配置

continuum start 启动前,需要先提供下面两个必填项:

  • EMBEDDING_BASE_URL
  • EMBEDDING_MODEL

如果服务端需要鉴权,再补:

  • EMBEDDING_API_KEY

示例:

$env:EMBEDDING_BASE_URL="https://api.openai.com/v1"
$env:EMBEDDING_MODEL="text-embedding-3-small"
$env:EMBEDDING_API_KEY="your-key"
continuum start

也可以通过参数直接传入:

continuum start --embedding-base-url https://api.openai.com/v1 --embedding-model text-embedding-3-small

安全说明

默认情况下,所有服务端口绑定到 127.0.0.1,仅本机可访问。如果需要局域网内其他设备访问(如手机测试),可以使用:

continuum start --bind-host 0.0.0.0

注意:使用 0.0.0.0 会将服务暴露到局域网,请确保在可信网络环境下使用。

continuum mna

可直接单独操作 memory-native-agent

continuum mna install
continuum mna start
continuum mna stop
continuum mna logs
continuum mna token

默认地址是 http://127.0.0.1:4193,默认数据目录是 ~/.mna