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

pakhale

v0.7.0

Published

Pratik's personal CLI — coding-agent workflow setup and more

Downloads

1,064

Readme

pakhale

My personal CLI. It keeps my coding agents — Claude Code and opencode — set up the same way on every machine, from one file.

npx pakhale setup agents          # set up this machine
npx pakhale setup agents plan     # dry run — show every change, write nothing

Running plan first is always safe: it reads the machine and prints exactly what would change.

What it sets up

config.ts is the whole source of truth. It lists the agents I use and the capabilities I want them to have — plugins, skills, MCP servers — plus my shared instructions and settings. Applying it installs whatever is missing and leaves everything else alone.

Agents package things differently, so each capability says how it reaches each agent:

{
  name: 'plannotator',
  deliver: {
    'claude-code': { via: 'claude-plugin', marketplace: 'plannotator', plugin: 'plannotator' },
    opencode: { via: 'opencode-plugin', package: '@plannotator/opencode@latest' },
  },
}

| via | Reaches | | --- | --- | | skills | any agent that reads SKILL.md | | mcp | any agent | | claude-plugin | Claude Code | | opencode-plugin | opencode |

Leaving an agent undeclared is an error rather than a silent skip, so adding a new agent tells me about every gap at once.

Just the skills

The skills in skills/ are plain SKILL.md files, so they need neither this CLI nor my settings. Any agent that reads skills can install them straight from this repo:

npx skills add pratikpakhale/pakhale -g                    # all of them
npx skills add pratikpakhale/pakhale -g -s deslop stackup  # or pick

npx pakhale setup agents stays the full path — the same skills plus plugins, MCP servers, instructions and settings.

Options

  • plan or -n, --dry-run — show every change, write nothing
  • -a, --agent <id> — set up one agent (repeatable)
  • --all — every configured agent, no prompt
  • --force — resolve every conflict in the config's favour, no prompts
  • --home <dir> — apply against a different home directory
  • -h, --help — full usage

With a terminal and no --agent, it asks which agents to set up — space to toggle, a for all. Piped or scripted, it applies to every configured agent without asking.

Safe by default

  • Re-running changes nothing. Every artifact is checked before it is written, installers included.
  • Nothing of yours is overwritten silently. Setup remembers what it last wrote; anything else it finds — an existing CLAUDE.md, a setting changed by hand — is a conflict, and it asks: keep yours, use the config's (backed up first), or see the diff, with one answer for all remaining if you prefer. Piped runs keep yours; --force takes the config's.
  • Settings you added yourself survive. Keys config.ts does not name are preserved.
  • A config file it cannot parse is left alone rather than flattened.
  • Agents you do not have installed are skipped, never created.
  • Anything it displaces is backed up to .setup-backups/<timestamp>/.

Development

bun install
bun src/cli.ts setup agents plan   # run from source
bun run test                       # ~5s, no network, never touches your real ~
bun run typecheck
bun run build                      # dist/cli.js (Node >=20)

ARCHITECTURE.md covers how it works inside — the config vocabulary, the plan/diff/commit split, and how to add another agent.