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

opencode-nj-kit

v0.1.0

Published

Drop-in skills, subagents, slash commands, and global AGENTS.md for OpenCode. 20 specialist agents, 37 skills, 10 slash commands.

Downloads

60

Readme

opencode-nj-kit

A drop-in kit for OpenCode that installs:

  • AGENTS.md — global routing/enforcement instructions that make skills and subagents actually fire
  • 20 specialist subagents — frontend, backend, mobile, database, devops, security, debugger, orchestrator, and more
  • 37 skills — clean-code, systematic-debugging, tailwind, React/Next.js, API, DB, perf, sec, SEO, GEO, and more
  • 10 slash commands/plan, /debug, /test, /orchestrate, /deploy, etc.

Install

# One-shot, recommended
bunx opencode-nj-kit

# or
npx opencode-nj-kit

That's it. The CLI:

  1. Detects your OpenCode config dir ($XDG_CONFIG_HOME/opencode or ~/.config/opencode)
  2. Asks what to install (defaults: everything)
  3. Asks how to handle existing files (default: backup to .bak then overwrite)
  4. Adds "instructions": ["./AGENTS.md"] to your opencode.json if missing
  5. Done — open OpenCode and run /agents to see the new specialists

Commands

opencode-nj-kit              # init (interactive)
opencode-nj-kit init --yes   # non-interactive, backup mode
opencode-nj-kit list         # show what's bundled
opencode-nj-kit update       # re-copy from template
opencode-nj-kit uninstall    # remove kit files (.bak kept)

Flags

| Flag | Effect | |---|---| | --yes, -y | Non-interactive, accept defaults | | --force | Overwrite without backup | | --skip-existing | Never touch existing files | | --backup | Backup .bak before overwriting | | --dry-run | Show plan, write nothing |

What gets installed where

~/.config/opencode/
├── AGENTS.md              ← global instructions
├── agents/                ← 20 *.md agents (mode: all)
├── skills/<name>/SKILL.md ← 37 skills
└── commands/              ← 10 slash commands

opencode.json is patched in-place to ensure instructions: ["./AGENTS.md"] is set. If you don't have an opencode.json yet, the patch step is skipped silently.

Why a CLI installer instead of an OpenCode plugin?

OpenCode's plugin API (@opencode-ai/plugin) hooks runtime events — it doesn't ship skills/agents/commands. So the right shape for content packs is a shadcn-style copy-into-config installer: it gives users full ownership of the files, lets them customize, and keeps updates explicit.

Updating

bunx opencode-nj-kit@latest update

Existing files are backed up to *.bak before overwrite by default, so you can diff and merge your local changes back in.

Uninstall

bunx opencode-nj-kit uninstall

Removes everything the kit copied. Your .bak files stay so you can restore.

License

MIT