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-git-worktree

v0.1.1

Published

Git worktree isolation and ephemeral scratchpad extension for Pi Coding Agent

Downloads

339

Readme


🌿 Overview

pi-git-worktree brings isolated branch scratchpads and sandbox execution to Pi Coding Agent using native Git worktrees.

When AI coding agents perform multi-file refactoring, large dependency upgrades, or autonomous subagent iterations, modifying the primary workspace can lead to dirty Git trees, broken local builds, and accidental commits.

pi-worktree spawns temporary, branch-backed worktrees under .pi/worktrees/<taskName>. The agent can write files, execute test suites, and benchmark performance in isolation. When verified, changes merge cleanly back into your active branch with one command.

                  ┌──────────────────────┐
                  │    Primary Branch    │  (Your Editor - Stays Clean!)
                  │      (main/dev)      │
                  └──────────┬───────────┘
                             │
                  /worktree create auth-test
                             │
                             ▼
                  ┌──────────────────────┐
                  │  Isolated Worktree   │  (Pi Agent Sandbox)
                  │ .pi/worktrees/auth/  │  - Edits code
                  └──────────┬───────────┘  - Runs test suites
                             │
                  /worktree apply auth-test
                             │
                             ▼
                  ┌──────────────────────┐
                  │ Clean Merged Commit  │
                  └──────────────────────┘

✨ Features

  • 🌿 Zero Dirty Trees: Keep your current working directory clean while the agent tests risky changes.
  • 🔀 Atomic Merge: Review the diff with /worktree diff and merge with /worktree apply.
  • 🗑️ One-Command Cleanup: /worktree discard cleanly tears down the worktree and branch.
  • Native Git Integration: Uses native git worktree commands without third-party dependencies.
  • 🤖 Agent Autonomous Tool (create_isolated_worktree): Subagents can automatically allocate an isolated sandbox.

🚀 Installation

Via Pi Package Registry (Recommended)

pi install npm:pi-git-worktree

Direct from GitHub

pi install git:https://github.com/lleontor705/pi-worktree.git

From Local Source

git clone https://github.com/lleontor705/pi-worktree.git
cd pi-worktree
npm install && npm run build
pi install ./

📖 Usage & Commands

Slash Commands

| Command | Description | | :--- | :--- | | /worktree list | Lists all active secondary worktrees and their branches. | | /worktree create <name> | Creates a new isolated worktree branched from HEAD. | | /worktree diff <name> | Previews changes made in the worktree against current HEAD. | | /worktree apply <name> | Prompts for confirmation and merges worktree changes into the active branch. | | /worktree discard <name> | Deletes the worktree directory and removes the ephemeral branch. |

Agent Autonomous Tool (create_isolated_worktree)

When Pi detects a complex or risky task:

// Prompt:
"Refactor our database ORM layer to use Kysely instead of Prisma and run the test suite."

Pi will call:

{
  "taskName": "kysely-migration"
}

Pi switches its working directory to .pi/worktrees/kysely-migration, performs the migration, runs the test suite, and only when verified prompts you to merge!


🏗️ Architecture & Development

# Clone
git clone https://github.com/lleontor705/pi-worktree.git
cd pi-worktree

# Install & Build
npm install
npm run build

📄 License

MIT © Luis Leon