@lpirito/pi-diffloop

Pair programming with Pi, be aware of every change made to the codebase.

Package details

extension

Install @lpirito/pi-diffloop from npm and Pi will load the resources declared by the package manifest.

$ pi install npm:@lpirito/pi-diffloop
Package
@lpirito/pi-diffloop
Version
0.0.25
Published
Apr 18, 2026
Downloads
2,775/mo · 103/wk
Author
lpirito
License
MIT
Types
extension
Size
120.8 KB
Dependencies
2 dependencies · 4 peers
Pi manifest JSON
{
  "extensions": [
    "./src/index.ts"
  ]
}

Security note

Pi packages can execute code and influence agent behavior. Review the source before installing third-party packages.

README

diffloop

diffloop is a Pi extension that slows down the agentic coding workflow on purpose by presenting each code change to the developer, with a reason attached to it.

What it does

This extension intercepts Pi edit and write tool calls and replaces the default fire-and-forget flow with an interactive review step.

For each proposed file change, diffloop:

  • requires a reason (captured through set_change_reason)
  • shows a preview before execution
  • lets you:
    • approve the change
    • steer the change with an inline prompt
    • edit the proposal before execution
    • deny the change

Installation

pi install npm:@lpirito/pi-diffloop

Why use it

When working with coding agents, I kept running into two extremes:

  • I write a long markdown file full of rules, conventions, and constraints, hoping the agent will stay aligned.
  • I prompt for a bugfix or feature and wait for the result, only to receive a large batch of changes all at once.

Both approaches can work, but they often come with the same problem: context loss.

The agent may go further than expected, touch more files than intended, or make reasonable local decisions that drift away from what you had in mind. By the time it returns, you are no longer reviewing a small decision, you are reconstructing a chain of reasoning that is not your own.

That is the problem diffloop is "meant" to solve.

It intentionally slows the workflow down so you can stay close to the agents decisions, review changes as they are proposed, and understand both what is changing and why before the change is applied.

A note on usage

diffloop is still an experiment for me, and Im grateful to Pi for providing such solid tools to explore ideas like this.

That said, constant review can become its own kind of fatigue. If every step requires approval, there is always the risk of falling into the habit of pressing "Accept" without really reviewing the change.

Im still exploring whether this kind of intentional slowness has a real place in agentic coding workflows, especially for developers who want to stay close to the code without losing context.

Ideas, feedback, and criticism are all welcome 😁

Review flow

When the agent proposes an edit or write:

  1. diffloop intercepts the tool call
  2. it builds a preview of the change
  3. it opens a review UI
  4. you choose one of the available actions

Review scope (optional)

By default, diffloop reviews all edit and write proposals.

You can scope review to specific files using diffloop-config.json next to the installed package (same directory Pi resolves for the extension).

Config shape:

{
  "enabled": true,
  "reviewScope": {
    "includePatterns": ["*.ts", "*.tsx"],
    "excludePatterns": ["**/*.snap"],
    "includeExtensions": [".ts", ".tsx"],
    "excludeExtensions": [".lock"]
  }
}

Out-of-scope paths bypass diffloop review and run through Pi's normal tool execution.

Agent prompt behavior

This extension does not re-register the edit and write tools.

Instead, it registers a small helper tool called set_change_reason and prompts the agent to call it before each edit/write proposal.

It pushes the agent to provide reasons that are:

  • specific
  • grounded in existing code or repository patterns
  • explicit about behavior impact
  • not generic prose

Slash command

/diffloop off
/diffloop on
/diffloop toggle
/diffloop status

Development

npm install
npm run build
npm run typecheck