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

@paw-workflow/cli

v0.4.0

Published

CLI installer for Phased Agent Workflow (PAW) agents and skills

Readme

@paw-workflow/cli

CLI installer for Phased Agent Workflow (PAW) agents and skills.

Installation

# Install to GitHub Copilot CLI
npx @paw-workflow/cli install copilot

# Install to Claude Code CLI
npx @paw-workflow/cli install claude

This installs PAW agents and skills to the target CLI's configuration directory (~/.copilot/ or ~/.claude/).

You can install to both targets:

npx @paw-workflow/cli install copilot
npx @paw-workflow/cli install claude

Commands

install

Install PAW agents and skills to a target environment.

paw install copilot          # GitHub Copilot CLI
paw install claude           # Claude Code CLI
paw install copilot --force  # Skip confirmation prompts

list

Show installed version and components (checks all targets).

paw list

upgrade

Check for updates and upgrade all installed targets.

paw upgrade

uninstall

Remove all PAW agents and skills from all installed targets.

paw uninstall
paw uninstall --force  # Skip confirmation prompt

Requirements

What Gets Installed

  • Agents: PAW workflow orchestrators (PAW.agent.md, PAW-Review.agent.md)
  • Skills: Activity and utility skills for specification, planning, implementation, and review workflows

Files are installed to:

| Target | Agents | Skills | Manifest | |--------|--------|--------|----------| | copilot | ~/.copilot/agents/ | ~/.copilot/skills/ | ~/.paw/copilot-cli/manifest.json | | claude | ~/.claude/agents/ | ~/.claude/skills/ | ~/.paw/claude-cli/manifest.json |

License

MIT

Development

Setup

cd cli
npm install

Build

Build the distribution (processes conditionals, injects version metadata):

npm run build

This creates dist/ with processed agents and skills for the npm package.

Plugin Distribution

The Copilot CLI plugin reads plugin.json from the repository root on main. The agents/ and skills/ directories on main serve as the canonical source for plugin installation:

copilot plugin install lossyrob/phased-agent-workflow

Users wanting versioned/stable installs should use the npm CLI (npx @paw-workflow/cli@<version>).

Test locally

Run the CLI directly without installing:

# Show help
node bin/paw.js --help

# Install to Copilot CLI (from local build)
node bin/paw.js install copilot

# Install to Claude Code CLI (from local build)
node bin/paw.js install claude

# List installed version
node bin/paw.js list

Run tests

npm test

Lint

npm run lint

Publishing

Publishing is automated via GitHub Actions on tag push:

git tag cli-v0.0.1
git push origin cli-v0.0.1

This triggers npm publish — publishes @paw-workflow/cli to npm and creates a GitHub Release.

Requires NPM_TOKEN secret configured in the repository.