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

pi-perms

v2.1.0

Published

Pi CLI extension — configurable permission policy from .agents/permissions.json and native agent configs

Readme

pi-perms

npm version License CI

Pi CLI extension that enforces a cross-agent permission policy from .agents/permissions.json.

Uses agent-perms for evaluation and policy loading. See the agent-perms README for the full schema, rule syntax, and codec documentation.

Install

pnpm add pi-perms

Pi loads the extension automatically via the pi.extensions field in package.json — no additional configuration needed.

How it works

  1. Subscribes to tool_call events from Pi
  2. Loads the merged permission policy from .agents/permissions.json + .agents/permissions.local.json
  3. Evaluates the tool call against the policy (deny-first)
  4. Blocks denied calls, passes ask calls through Pi's default confirmation, and allows everything else

Policy file

Create .agents/permissions.json in your project root:

{
  "rules": [
    { "tool": "Bash", "pattern": "git status", "tier": "allow" },
    { "tool": "Bash", "pattern": "npm run test:*", "tier": "allow" },
    { "tool": "Read", "tier": "allow" },
    { "tool": "Grep", "tier": "allow" },
    { "tool": "Bash", "pattern": "sudo:*", "tier": "deny" },
    { "tool": "Bash", "pattern": "rm -rf /", "tier": "deny" },
    { "tool": "Bash", "pattern": "git push:*", "tier": "ask" },
    { "tool": "Bash", "pattern": "npm publish:*", "tier": "ask" }
  ]
}

Claude Code's permissions.allow/deny/ask arrays are also accepted — the loader normalises them into rules.

| File | Purpose | Git | |---|---|---| | .agents/permissions.json | Team-shared policy | Committed | | .agents/permissions.local.json | Personal overrides | Gitignored |

Rule syntax

Rules use structured objects with tool, optional pattern, and tier. In permissions compat arrays, they use Tool(pattern) strings:

| Pattern | Matches | |---|---| | Read | All file reads | | Bash(git status) | Exactly git status | | Bash(npm:*) | Commands starting with npm | | Bash(git commit *) | git commit followed by anything | | Bash(domain:evil.com) | Commands containing evil.com |

Evaluation order: deny → ask → allow. Deny short-circuits before all other tiers.

Dependencies

Development

pnpm install
pnpm test             # 20 tests (unit + e2e)
pnpm typecheck
pnpm lint

Source structure

src/
  extension.ts        # Pi extension factory — subscribes to tool_call events
  test/
    e2e.test.ts       # End-to-end tests with mock ExtensionAPI
    evaluate.test.ts  # Unit tests for extractInput()

The evaluator and loader live in agent-perms — pi-perms is a thin wiring layer that connects them to Pi's extension API.