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

avtc-pi-parallel-work-guardrail

v1.0.4

Published

Lets you block or approve agent-called git operations that would disrupt parallel work — worktree-aware, with auto-decide after timeout.

Readme

avtc-pi-parallel-work-guardrail

Lets you block or approve agent-called git operations that would disrupt parallel work — worktree-aware, with auto-decide after timeout.

Features

  • 10 disruptive categories — stash, checkout/restore, branch-switch, destructive reset, rebase, amend, merge/pull, push, redirect workarounds, and plumbing restore
  • 5 modes, including hands-off auto-decide — off, ask (prompt), block, or ask with auto-allow / auto-block after 15 min of no response
  • Worktree-aware — 6 categories are allowed without a prompt inside a git worktree, since worktree-scoped ops don't collide with the main branch
  • Bypass-resistant — disruptive ops can't slip past it via git -C, --git-dir, --work-tree, or by being buried in &&, ||, ;, pipes, or subshells
  • Confirmation dialog — confirmable operations are routed through a prompt before they run

The confirmation dialog for a disruptive operation (routed via showSelectWithNote, auto-resolves to Block on timeout):

select with note confirmation

Categories

| Category | Blocked commands | Relaxed in worktree? | |---|---|---| | Stash | git stash, stash push, stash pop, stash drop, stash clear, stash branch | No | | Checkout/restore | git checkout --, git restore | Yes | | Branch switch | git checkout, git switch (all variants) | Yes | | Destructive reset | git reset --hard, reset --mixed <ref>, bare reset <ref> | No | | Rebase | git rebase, git pull --rebase (excludes --abort/--continue/--skip) | No | | Amend | git commit --amend | Yes | | Merge | git merge, git pull (non-rebase) | Yes | | Push | git push | No | | Redirect workaround | git show ... > file, git cat-file ... > file | Yes | | Plumbing restore | git checkout-index, git read-tree --reset -u | Yes |

Commands

| Command | Description | |---|---| | /parallel-work-guardrail:settings | Open the settings UI (guardrail mode selection) |

Configuration

Settings are stored in ~/.pi/agent/avtc-pi-parallel-work-guardrail-settings.json (global) or <cwd>/.pi/avtc-pi-parallel-work-guardrail-settings.json (project overrides win) and edited via /parallel-work-guardrail:settings. Requires avtc-pi-settings-ui and avtc-pi-ui-components (installed automatically as dependencies).

| Key | Type | Default | Description | |-----|------|---------|-------------| | parallelWorkGuardrail | string | "ask" | Guardrail mode: "off" (skip all checks), "ask" (prompt user, waits indefinitely), "block" (auto-block every disruptive command), "ask-allow-15m" (prompt + auto-allow after 15m of no response), "ask-block-15m" (prompt + auto-block after 15m) |

Installation

pi install npm:avtc-pi-parallel-work-guardrail

Full suite

Check out the full suite of related extensions, avtc-pi — deterministic feature development, subagent delegation, working-memory, behavioral learning, parallel-work guardrails, durable decisions, notifications, and more.

Developed with Z.ai — get 10% off your subscription via this referral link.

License

MIT