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

r2mo-ai

v1.0.120

Published

Rachel MXT ( OpenSpec )

Downloads

1,369

Readme

SDD - Spec Driven Development 工具(命令名:mxt

npm version | Downloads

For Rachel Momo / Serial Experiments Lain

R2MO

引导

R2MO-Lain

工具安装

前置条件:Node.js 18+(推荐 LTS 版本)

macOS / Linux

npm install -g r2mo-ai
mxt help

若遇到全局安装权限问题,建议优先使用 nvm 管理 Node;临时处理可使用:

sudo npm install -g r2mo-ai
mxt help

Windows

npm install -g r2mo-ai
mxt help

若遇到 PowerShell 执行策略限制:

Set-ExecutionPolicy -Scope CurrentUser RemoteSigned
npm install -g r2mo-ai
mxt help

卸载

npm uninstall -g r2mo-ai

Windows 提示:安装或卸载 mxt ai-cmd 前请关闭 Claude Code / Codex / OpenCode,避免文件锁定导致 EPERMEBUSY


核心功能

r2mo-aiSDD - Spec Driven Development 命令行工具,命令名为 mxt。它面向 R2MO / MXT 工作流,提供项目初始化、规范文档、OpenAPI 提取、代码生成辅助、Obsidian 文档打开,以及 Claude Code / Codex / OpenCode 的 AI 命令安装与闭环执行提示词。

本教程按 task-001 的结构拆分:README 只保留入口教程、保留图和闭环图、保留索引;docs/command/ 汇总 mxt xxx commands;docs/skills/ 汇总 mxt-* Skills;具体命令和 Skill 细节只放到子文档。


入口索引

本页只保留两个核心入口,不再展开命令参数、平台差异或 Skill 细节:

  • mxt xxx Commandsmxt CLI 命令总览与每个子命令文档索引。
  • mxt-* Skills — AI 闭环 Skills 总览、安装位置、配置信息与每个 Skill 文档索引。

闭环流程

mxt ai-cmd 安装的 AI 命令形成 plan → run → end → goon 闭环,loop 是自动闭环入口,sync / start / debug 为辅助命令。每个子命令和每个 Codex Skill 都有独立文档,便于逐页阅读与记录执行块。

flowchart TD
    A["task-xxx.md"] --> B["mxt:plan<br/>可选"]
    A --> C["mxt:run"]
    B --> C
    C --> D["mxt:end"]
    D --> E{"有待整改?"}
    E -- 有 --> F["mxt:goon"]
    F --> G["追加 Changes"]
    G --> D
    E -- 无 --> H["Done ✅"]

    classDef requirement fill:#e8f1ff,stroke:#4a7bd1,color:#12325b
    classDef optional fill:#fff4d6,stroke:#d4a72c,color:#5b4300
    classDef execute fill:#e8f7e8,stroke:#43a047,color:#123d1b
    classDef verify fill:#f3e8ff,stroke:#8e5ad7,color:#41215f
    classDef remediate fill:#ffe8e8,stroke:#d45a5a,color:#5d1f1f
    classDef done fill:#e6fffb,stroke:#1aa39a,color:#0f4f4a

    class A requirement
    class B optional
    class C execute
    class D,E verify
    class F,G remediate
    class H done

闭环命令的具体写法和 Skill 说明已经拆到子文档里;这里仅保留流程图,便于首页快速理解整体循环。

发布

./publish.sh "release: update docs"

脚本会执行版本号更新、npm 发布、git 提交和推送。发布前请确认已登录 npm、拥有包权限,并且工作区只包含本次发布内容。

参考链接