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

@noob-factory/agent-skills

v0.4.0

Published

Agent-agnostic skill packs: noob-explain, analyze-repo, update-agents-context, and desktop-notifier. Installs into Claude Code, Gemini CLI, Codex, and puku-cli in one step.

Readme

@noob-factory/agent-skills

Four AI coding-assistant skills that work across Claude Code, Gemini CLI, Codex, and puku-cli — one install, every tool.

| Skill | What it does | | --- | --- | | noob-explain | Compact, diagram-first plain-English breakdowns of any system, doc, code path, ticket, or report. Supports -short / -medium / -long / -auto modes. Auto-saves big visual outputs to noob-explained/ in the user's current working directory. | | analyze-repo | Generates canonical project docs (README, ARCHITECTURE, AGENTS.md) from scratch when a repo has none. | | update-agents-context | Refreshes an existing AGENTS.md and companion context docs from current code after a feature, refactor, or API change. | | desktop-notifier | Surfaces OS-level desktop notifications (Windows toast / macOS Notification Center / Linux libnotify) when puku-cli needs user attention — permission prompts, idle prompts, agent awaiting input, multi-agent teammate prompts, and elicitation dialogs. Fires via a Notification hook with a 4-tier backend fallback chain. |

Skills are plain Markdown following the open SKILL.md spec — any agent that reads the spec picks them up automatically.


Default install: every supported agent at once

By default npm install copies the skills into all of:

flowchart LR
  Pkg["@noob-factory/agent-skills<br/>(npm install)"] --> Puku[".puku-cli/skills/"]
  Pkg --> Claude[".claude/skills/"]
  Pkg --> Gemini[".gemini/skills/"]
  Pkg --> Codex[".agents/skills/"]
  Puku -.skills.-> PukuAgent[puku-cli]
  Claude -.skills.-> ClaudeAgent[Claude Code]
  Gemini -.skills.-> GeminiAgent[Gemini CLI]
  Codex -.skills.-> CodexAgent[Codex]

Caption: one npm install writes the same skills into all four agent directories.

The noob-explain skill auto-saves big visual outputs to ./noob-explained/ in the user's current working directory (typically a project repo). The terminal always shows a headline. Add noob-explained/ to your project's .gitignore — these breakdowns are scratch notes, not committed docs.

| Agent | Skills directory (Windows shown; ~ works on macOS/Linux) | | --- | --- | | puku-cli | ~/.puku-cli/skills/ | | Claude Code | ~/.claude/skills/ | | Gemini CLI | ~/.gemini/skills/ | | Codex | ~/.agents/skills/ |


Install

# Global (recommended for personal use)
npm install -g @noob-factory/agent-skills

# Or as a project dev-dependency
npm install --save-dev @noob-factory/agent-skills

The postinstall step copies the skills into every detected agent dir. If an agent dir doesn't exist or isn't writable, it's skipped with a warning — the install never fails because of an optional target.

Pick a subset of agents

# Only Claude Code
npx @noob-factory/agent-skills install --only claude

# Everyone except Gemini and Codex
npx @noob-factory/agent-skills install --skip gemini,codex

# Single custom directory (overrides all defaults)
npx @noob-factory/agent-skills install --target ~/my-skills

CLI

agent-skills install [--target DIR] [--only AGENT] [--skip AGENT] [--force]
agent-skills list
agent-skills remove <name>... [--only AGENT]
agent-skills where
  • --only and --skip accept comma-separated agent keys: puku, claude, gemini, codex.
  • --target DIR switches to single-target mode (skips multi-agent defaults).
  • --force overwrites existing skills of the same name.

Render Mermaid diagrams in VS Code

The noob-explain skill emits Mermaid diagrams. GitHub renders them automatically. For local preview in VS Code, install the extension:

Markdown Preview Mermaid Support — extension ID bierner.markdown-mermaid

It's a one-click install from the VS Code marketplace, no config needed.


License

MIT