@mjakl/pi-ooc

Pi extension that adds /ooc for out-of-context side questions using the current session context.

Packages

Package details

extension

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

$ pi install npm:@mjakl/pi-ooc
Package
@mjakl/pi-ooc
Version
1.0.0
Published
May 22, 2026
Downloads
194/mo · 15/wk
Author
mjakl
License
MIT
Types
extension
Size
28 KB
Dependencies
0 dependencies · 3 peers
Pi manifest JSON
{
  "extensions": [
    "./index.ts"
  ]
}

Security note

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

README

pi-ooc

Sometimes you want to ask pi a side question without dragging that detour back into your main conversation, or did you ever wonder what your agent is doing, but you don't want to interrupt it? Call /ooc what are you doing?, and its clone will tell you without hurting the progress of the main agent.

pi-ooc adds /ooc (think "out of context"), which opens an isolated side-agent with the full current session context, shows the result in an overlay, and keeps that whole exchange out of your main session history.

Think of it as: "use everything we know so far, but don't make this part of the main thread."

pi-ooc is intentionally minimal by design. If you want a more full-featured alternative, have a look at pi-btw.

Install

Option 1: Install from npm (recommended)

pi install npm:@mjakl/pi-ooc

Option 2: Install via git

pi install git:github.com/mjakl/pi-ooc

Option 3: Install local package

pi install ./

Usage

/ooc What assumptions have we made so far?
/ooc Give me three alternative designs for this refactor.
/ooc Inspect the repo and tell me where the auth flow starts.
/ooc Challenge the current plan and tell me what we're missing.

And of course my guilty pleasure: /ooc commit. A nice extra is to /ooc what are you doing? while the main agent is working on something that looks off.

What happens

When you run /ooc ...:

  1. pi waits for the current agent to become idle if needed
  2. a separate side-agent session is started
  3. that side-agent gets the full current session context
  4. it uses the current model and thinking level
  5. it can run tools just like a normal agent session
  6. its output is streamed into a TUI overlay
  7. when you close it, nothing from that exchange is appended to your main session

Why use it?

/ooc is useful when you want to:

  • ask a side question without cluttering the main thread
  • get a second opinion based on the current context
  • inspect the repo or run tools without turning that detour into part of the main conversation
  • challenge the current plan
  • explore alternatives before committing to a direction
  • do a quick isolated investigation and then return to your main flow

Important behavior

This is the part that matters most:

  • the /ooc conversation is not added to your current session history
  • the result is shown only in the overlay
  • the side-agent has the same context as your current session
  • the side-agent can use tools
  • if it uses tools that modify files or run commands, those effects are real

So /ooc is isolated from your conversation history, but not from your working directory.

Closing the overlay

If the side-agent is still running and you press Esc or q, pi-ooc will not close immediately.

Instead it shows a confirmation modal:

  • press Esc or q again to abort and close
  • press any other key to keep it running and continue reading

Once the side-agent is finished, Esc or q closes the overlay normally.

Keys inside the overlay

  • Esc or q - close
  • / - scroll
  • g / G - jump to top / bottom

In one sentence

/ooc gives you a fully context-aware side-agent in an overlay, without polluting your main session history.

License

MIT