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

system-design-mentor

v0.1.3

Published

Portable agent skill for structured System Design mentoring (Cursor, Claude Code, Codex)

Readme

System Design Mentor

Agent skill for structured System Design practice: mock architecture interviews, trade-off debates, failure analysis, quick-fire drills, flawed architecture reviews, and capacity estimation.

Works with Cursor, Claude Code, and Codex.

Quick start

Requires Node.js 18+ (node -v).

Use a personal practice folder — not a shared team codebase — so your progress files stay separate from work projects.

mkdir my-system-design-practice && cd my-system-design-practice
npx system-design-mentor init

The installer asks which agent to use, copies the skill, and creates profile.md and progress.md if they do not exist.

After install

Start a session right away with one of the prompts below — the mentor uses sensible defaults until you share your target role, stack, or language in chat. Reload the IDE or start a new Codex session if the skill does not appear.

Install targets

Use --target for non-interactive installs:

| Agent | Target | Skill path | | ----------- | ------------------------- | -------------------------------------- | | Cursor | cursor-project | .cursor/skills/system-design-mentor/ | | Claude Code | claude-project | .claude/skills/system-design-mentor/ | | Codex | codex-project | .agents/skills/system-design-mentor/ |

npx system-design-mentor init --target cursor-project

Update the skill

Updates only the installed skill files. Your profile.md and progress.md are not changed.

npx system-design-mentor@latest update

Your practice folder

After init, the layout looks like this:

my-system-design-practice/
  .cursor/skills/system-design-mentor/   # or .claude/skills/... / .agents/skills/...
  profile.md          # mentee profile (agent updates from chat)
  progress.md         # session log (agent updates after sessions)
  tasks/              # mock interviews; one NN-slug.md per new System Design Task session

Example prompts

Cursor — invoke explicitly:

/system-design-mentor Run a Staff-level mock architecture interview.

Codex — invoke explicitly:

$system-design-mentor Run a Staff-level mock architecture interview.

Or ask naturally in any supported agent:

Let's do capacity estimation for a realtime chat system.
Run a failure analysis drill for a Kafka consumer lag incident.
Review my architecture and push back like a Staff/Architect interviewer.

Advanced: Git submodule

Only if you already use Git and prefer submodules over npx copies:

mkdir -p .cursor/skills
git submodule add https://github.com/evsamsonov/system-design-mentor.git .cursor/skills/system-design-mentor

Use the same target paths for Claude Code or Codex from the table above. Update later with git submodule update --remote.

License

MIT. See LICENSE.