oppi-mirror

Pi extension for mirroring live terminal sessions into Oppi.

Packages

Package details

extension

Install oppi-mirror from npm and Pi will load the resources declared by the package manifest.

$ pi install npm:oppi-mirror
Package
oppi-mirror
Version
0.4.0
Published
Jun 2, 2026
Downloads
not available
Author
chaosdonkey
License
MIT
Types
extension
Size
86.9 KB
Dependencies
1 dependency · 1 peer
Pi manifest JSON
{
  "extensions": [
    "./extensions/oppi-mirror.ts"
  ]
}

Security note

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

README

oppi-mirror

oppi-mirror is a Pi extension that mirrors an interactive terminal pi session into Oppi. The terminal keeps execution ownership; Oppi can watch output, send prompts, steer the active turn, queue follow-ups, answer extension UI, and stop or abort through the bridge.

Install

pi install npm:oppi-mirror

Use npm:oppi-mirror@0.4.0 only when you want to pin a specific release; pinned package specs are skipped by pi update.

For local development from an Oppi checkout:

pi install ./pi-extensions/oppi-mirror
# or one run only:
pi -e ./pi-extensions/oppi-mirror

If local package loading reports a missing runtime dependency, install package dependencies once:

cd pi-extensions/oppi-mirror && npm install

If Pi is already running, reload extensions:

/reload

Use

Start the Oppi server once so the extension can read ~/.config/oppi/config.json, then start Pi in an interactive terminal:

pi

Check or control the bridge from Pi:

/oppi-mirror status
/oppi-mirror stop
/oppi-mirror start

Configuration

By default, the extension reads the local Oppi server URL and token from ~/.config/oppi/config.json.

Override the connection for one process:

OPPI_MIRROR_URL=http://127.0.0.1:8787 \
OPPI_MIRROR_TOKEN=your-token \
pi

Disable automatic startup in ~/.pi/agent/settings.json:

{
  "oppiMirror": {
    "autoStart": false
  }
}

Or disable it for one process:

OPPI_MIRROR_AUTO_START=false pi

Compatibility

Mirror supports terminal-owned prompt, steer, follow-up, stop, queue, model, thinking, compaction, tree navigation, command-list, and standard Pi extension UI flows. Session-file replacement remains terminal-owned: use terminal Pi for /new, /fork, and /resume/switch.

Mirror forwards Pi-native extension UI from terminal sessions. For example, a tool_call handler can ask through ctx.ui.confirm() or an ask flow, and Oppi renders the response path natively.

Requirements

  • Oppi server 0.4.0 or newer
  • Interactive terminal pi; print, JSON, RPC, and server-owned SDK sessions are not mirror sessions

See the full mirror contract and compatibility matrix in the Oppi repo: https://github.com/duh17/oppi/blob/main/docs/oppi-mirror.md