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

@sse-qa/cli

v0.3.4

Published

All-in-one CLI, MCP, and backend runtime for solid-state electrolyte QA (agent-only).

Readme

@sse-qa/cli

固态电解质(SSE)文献问答 — 单 npm 包:CLI + MCP + 后端运行时(fastQA + highThinkingQA)。

安装

npm install -g @sse-qa/cli
export PATH="$(npm config get prefix)/bin:$PATH"
# 若 prefix 为 ~/.npm-global:export PATH="$HOME/.npm-global/bin:$PATH"

若出现 allow-scripts 提示:

npm approve-scripts @sse-qa/cli

快速开始

sse-qa init
# 编辑 ~/.sse-qa/config.yaml 与 ~/.sse-qa/secrets.env(LLM_API_KEY 等)

sse-qa config validate
sse-qa server install
sse-qa server start
sse-qa doctor --json

注册 MCP(Claude)

SSE_QA_BIN="$(command -v sse-qa)"   # 建议绝对路径
claude mcp add sse-qa \
  --env SSE_QA_AUTO_START=1 \
  -- "$SSE_QA_BIN" mcp --auto-start

Cursor / Codex 示例:包内 examples/

命令

| 命令 | 说明 | |------|------| | init | 生成 ~/.sse-qa/config.yaml + secrets.env | | config show\|validate | 查看 / 校验配置 | | doctor / setup-check | 全量自检 + user_guidance | | server install\|start\|stop\|status | 内嵌后端(Docker / native) | | mcp | MCP stdio(Claude / Cursor / Codex) | | ask-fast / ask-thinking | CLI 直连问答 | | health | 后端健康检查 |

MCP 工具

| 工具 | 说明 | |------|------| | setup_check | 配置与依赖自检 | | health_check | 健康 + 配置摘要 | | ask_fast | fastQA 文献快答 | | ask_thinking | highThinkingQA 深度分析 |

用户自备(不在 npm 包内)

| 项 | 说明 | |----|------| | LLM API Key | ~/.sse-qa/secrets.envLLM_API_KEY | | Chroma 向量库 | config.yaml 中绝对路径;collection:lfp_papers / md_papers / sse_literature | | Neo4j | 可选,图谱 QA |

从结构化 MD 批量入库(需 clone GitHub 仓库中的脚本):

git clone https://github.com/BaBaoZhooou/SSE_QA ~/sse-qa
python3 ~/sse-qa/scripts/ingest_sse_md_chroma.py \
  --source /path/to/your/md_papers \
  --out ~/.sse-qa/data/chroma

包内结构

  • dist/sse-qa CLI + MCP
  • runtime/backend/ — fastQA、highThinkingQA Python 服务
  • runtime/docker/ — Docker Compose
  • runtime/templates/ — 配置 Schema
  • examples/ — MCP 配置示例

故障排查

| 现象 | 处理 | |------|------| | sse-qa: command not found | 将 npm global 的 bin 目录加入 PATH;MCP 注册使用 sse-qa 绝对路径 | | Collection [lfp_papers] does not exist | 运行 ingest 脚本或配置已有 Chroma 路径 | | MCP 连接失败 | 使用 sse-qa 绝对路径;先 sse-qa server start |

更多见 仓库 README §10 故障排查