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

rayprism

v0.2.1

Published

Multi-branch AI Agent framework — one command to scaffold your AI workspace

Readme

RayPrism

面向 AI Agent 工作流的多分支框架模板——选择分支、一键实例化、AI 即刻开工。

快速开始

# 一行创建项目(自动下载,无需安装)
npx rayprism init dev my-app

# 进入项目,开始工作
cd ~/Projects/my-app

其他分支同理:

npx rayprism init ink my-blog              # 内容创作
npx rayprism init pro my-report            # 专业文档
npx rayprism init ops my-infra             # 运维管理

💡 Tips

  • 首次运行会自动从 GitHub 下载模板到 ~/.rayprism/framework/,后续使用缓存
  • 频繁使用?全局安装更方便:npm i -g rayprism,之后直接 rayprism init ...

核心概念

RayPrism 是框架模板,不是具体项目。

  • branches/ 下的四个分支模板是只读的类定义
  • 通过 rayprism init 将模板实例化为独立的项目空间
  • 框架升级通过 rayprism upgrade 一键完成,不影响项目产出
RayPrism/(框架,只读)          实例化项目(可写)
========================         ========================
branches/                        my-app/
├── pro/                         ├── framework/ → branches/dev/  🔗
├── ink/       rayprism init     ├── .agents/skills/  (合并视图)
├── dev/       ──────────────→   ├── .claude/rules/   (合并视图)
└── ops/                         ├── overrides/       (自定义扩展)
                                 └── workspace/       (所有产出)

四个分支

| 分支 | 适合场景 | 主力技能 | |------|---------|---------| | pro | 知识整理 / Obsidian 笔记 | obsidian-markdown, obsidian-bases, json-canvas | | ink | 公众号 / 内容创作 | ray-content-wechat-generating, ray-multi-party-mode | | dev | 工程开发 / 代码 | ray-util-antigravity-bridging, vercel-react-best-practices | | ops | 系统运维 / 排障 | tavily-search, agent-browser |

项目管理

rayprism list              # 查看可用分支
rayprism projects          # 列出所有已创建项目
rayprism status            # 查看当前项目信息(在项目目录内)
rayprism upgrade           # 升级框架到最新版本
rayprism unregister <name> # 从注册表移除项目

框架结构

RayPrism/
├── package.json           ← npm 包配置
├── bin/rayprism.js        ← CLI 入口
├── src/                   ← CLI 源码
│
├── README.md              ← 当前文件
├── AGENTS.md              ← AI Agent 主规则
├── CLAUDE.md              ← Claude Code 规则入口
│
└── branches/              ← 四分支纯净模板(只读)
    ├── pro/               ← 知识管理 / Obsidian
    ├── ink/               ← 内容创作流水线
    ├── dev/               ← 工程开发
    └── ops/               ← 系统运维

文档

License

MIT