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

minimax-skills

v0.1.1

Published

两个 Claude Code / Codex 技能:minimax(把 MiniMax-M3 当前端出码引擎)+ session-handoff(在 Codex 和 Claude Code 之间交接对话)。通过 npx 本地安装,你的 API key 留在本地、永不进包。

Readme

minimax-skills

两个给 Claude Code / Codex 用的技能,一条命令本地安装:

  • minimax —— 把 MiniMax-M3(Frontier Coding、前端尤其强)当成一个前端出码引擎:一句话 / 一张截图 → 一份自包含 HTML。
  • session-handoff —— 把当前对话提取成交接文件,让 Codex 和 Claude Code 互相接着干,不用重讲一遍。

安装

直接用 npm 安装:

npx -y minimax-skills@latest install

它会:

  1. 把两个技能铺到 ~/.claude/skills/
  2. 问你要一次 MiniMax API key(从 https://platform.minimaxi.com 控制台拿),写进本地 ~/.claude/skills/minimax/config/secrets.mdchmod 600);
  3. 软链到 ~/.codex/skills/,Claude Code 和 Codex 双端都能用。

装完新开一个会话即可。

不想把 key 落文件?跳过那一步,直接:

export MINIMAX_API_KEY=sk-你的key

环境变量优先级最高。

跟你的 AI 说人话就行:

  • 「用 minimax 做个 XXX 页面」
  • 「把这张截图做成网页」(M3 原生多模态)
  • 「把这个对话交接给 Codex / Claude Code」

开发者直接命令行:

python3 ~/.claude/skills/minimax/scripts/mm_gen.py --prompt "做一个记账周报页" --out page.html

前置

  • Node ≥ 16.7(只在安装时用)
  • Python 3(minimax 出码引擎运行时需要;Mac/Linux 一般自带)
  • 一个 MiniMax 账号 + API key

文件结构

README.md                         # 安装和使用说明
SKILL.md                          # 根说明
index.html                        # 展示页
bin/install.js                    # 本地安装器
skills/minimax/                   # MiniMax 前端出码 skill
skills/session-handoff/           # Claude Code / Codex 会话交接 skill

安全

  • 这个 npm 包里没有任何真实 API key,只有 secrets.example.md 占位模板。
  • 你的 key 只存在你自己机器上的 secrets.md(已 .gitignore)或环境变量里。
  • 重装不会覆盖你已有的 secrets.md

许可

MIT