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-autonomy-profiles

v0.3.0

Published

Standalone Auto Mode commands, permission modes, and guardrails for Pi

Downloads

990

Readme

pi-autonomy-profiles

Standalone Auto Mode and manual approval guardrails for Pi, inspired by Claude Code.

This package is distributed as a Pi package. It ships the TypeScript extension entrypoint directly; Pi loads package extensions with its TypeScript runtime, so there is no build output to publish.

Install from npm

pi install npm:pi-autonomy-profiles

Commands

  • /autonomy auto — enable standalone Auto Mode
  • /autonomy manual — use manual approvals
  • /autonomy status — show effective status and config paths
  • /autonomy defaults — print a starter config

What it does

  • Runs as a standalone extension
  • Implements its own deny → ask → allow checks before each tool call
  • Prompts from the extension UI for manual approval modes
  • Stores session-scoped approvals in memory
  • Blocks protected path writes such as .git, .claude, .pi, shell startup files, package manager config, and MCP config
  • Provides a simple Auto Mode/manual command surface while still supporting advanced config modes
  • Adds deterministic Auto Mode guardrails for obvious risky bash operations: curl | bash, sudo, recursive force delete, force/main pushes, infra mutations, production deploys, external POST/upload, and cloud/IAM destructive commands
  • Pauses Auto Mode after repeated guardrail denials, falling back to manual prompts until /autonomy auto is run again

This is a local deterministic approximation, not Claude Code’s hosted classifier. It cannot infer natural-language organization rules as deeply as Claude Code Auto Mode, but it is installable as a single standalone Pi extension.

Configuration

Global config:

~/.pi/agent/extensions/pi-autonomy-profiles/config.json

Project config:

<project>/.pi/extensions/pi-autonomy-profiles/config.json

Project config is honored only for trusted projects. It can tighten rules or choose a more restrictive non-auto mode, but it cannot grant new capabilities: project-local allow, additionalDirectories, trustedDomains, trustedPaths, allowCommands, and mode: "auto" are ignored so a repository cannot grant itself autonomy.

Example:

{
  "$schema": "https://raw.githubusercontent.com/hafiezul/pi-autonomy-profiles/main/schemas/autonomy.schema.json",
  "mode": "default",
  "permissions": {
    "deny": [
      "Bash(curl * | *sh*)",
      "Bash(wget * | *sh*)",
      "Bash(git push * --force*)",
      "Edit(.env)",
      "Write(.env)"
    ],
    "allow": ["Read(*)"]
  },
  "autoMode": {
    "trustedDomains": ["api.internal.example.com", "*.corp.example.com"],
    "trustedPaths": []
  }
}

Permission rule syntax is intentionally Claude-like:

  • Bash(pattern) matches bash commands with * wildcards
  • Read(pattern) matches read, grep, find, and ls path inputs
  • Edit(pattern) matches edit and write path inputs
  • bare tool names such as bash, edit, or * match whole tools

Rule precedence is non-overridable built-in blockers first, then deny, ask, out-of-scope write checks, allow, and finally mode defaults. Built-in protected-write and Auto Mode guardrails still block even if an allow rule is present.

The command UI intentionally focuses on auto and manual. Advanced config-only modes remain supported for existing configs and power users: acceptEdits, plan, and dontAsk.

Local development

npm install
npm run check
pi install /path/to/pi-autonomy-profiles

Release checklist

npm install
npm run check
npm pack --dry-run
npm publish --dry-run
npm publish

The package has a prepack check, so npm pack and npm publish run TypeScript validation before creating the tarball.