extensions/ext-toggle.ts: /ext lists ~/.pi/agent/extensions/ with active/disabled markers and toggles individual extensions by renaming between name.ts and name.ts.off (pi only auto-discovers *.ts). Calls ctx.reload() so the change takes effect without restarting pi. Subdirectory-style extensions (name/index.ts) are listed read-only in v1 — toggling a directory cleanly is more work than the rename trick is worth. install.sh: --uninstall now matches both *.ts and *.ts.off symlinks pointing into this repo, so a disabled extension is still cleaned up. README.md / AGENTS.md: Document ext-toggle alongside the others; AGENTS notes the API surface used (registerCommand, ui.select/confirm/notify, reload) and the rename-not-delete design decision.
12 KiB
AGENTS.md
What this is
A version-controlled collection of custom and modified pi coding-agent extensions,
symlinked into ~/.pi/agent/extensions/ by install.sh.
Companion to pi-toolkit (bring-up,
keybindings, env loader) — that repo gets pi running; this repo adds behaviour on
top of it. Also related to skillset
which does the same job for agent skills.
Read README.md first for the user-facing walk-through.
This file is for agents modifying the repo.
Structure
extensions/
ssh-controlmaster.ts # ControlMaster SSH remote execution (see below)
confirm-destructive.ts # Confirm before dangerous bash commands and session actions
git-checkpoint.ts # Git stash checkpoint per turn, restorable on /fork
notify.ts # Native terminal notification when agent finishes
ext-toggle.ts # /ext slash command — list & toggle extensions at runtime
install.sh # Idempotent installer — symlinks extensions/ into ~/.pi/agent/extensions/
package.json # pi package manifest — enables `pi install /path` as an alternative
README.md # User-facing docs.
AGENTS.md # This file.
LICENSE # MIT.
Conventions
- One
.tsfile per extension, flat underextensions/. If an extension grows multiple files, use a subdirectory with anindex.tsentry point — pi's auto-discovery handles both shapes. - Extensions are symlinked, not copied.
ln -s <repo>/extensions/foo.ts ~/.pi/agent/extensions/foo.ts. Edits flow through git without a re-install step. The symlink is what pi loads at startup. - Existing files at link destinations are backed up with a timestamp
(
.bak.YYYYMMDD-HHMMSS) before a new symlink is created. Never silently overwrite. install.shis idempotent. Re-running it is always safe. Links already pointing into this repo are left alone (link_into_repoguard).--only/--skipflags for subset installs.--onlyis an explicit allowlist;--skipstarts with everything and removes named entries;--onlywins if both are given. Names are bare (no.ts).- No always-on side effects at module load time. Extensions should be inert
unless the user passes a flag or the relevant event fires. The
--sshflag inssh-controlmaster.tsis the model: the module loads on every pi session but does nothing unless--sshis present. - Extension flag names must be globally unique across all installed extensions.
Prefix with a short namespace if there's any risk of collision
(e.g.
ssh-for ssh-related flags).
What install.sh does
require_pi_installed— aborts with exit 4 if~/.pi/agent/is missing. Creates~/.pi/agent/extensions/proactively.- Calls
build_install_setto resolve which extensions to install based on--only/--skipflags (default: all.tsfiles inextensions/). - For each selected extension: symlinks
extensions/<name>.ts→~/.pi/agent/extensions/<name>.ts. Backs up any pre-existing real file or foreign symlink.
Uninstall: removes symlinks that point into this repo, leaves everything else untouched.
Adding a new extension
- Drop a
.tsfile intoextensions/. No other config needed —install.shdiscovers all.tsfiles automatically. - Export a default factory function
(pi: ExtensionAPI) => void. See the pi extensions docs and built-in examples. - Register any CLI flags via
pi.registerFlag()so they appear inpi --help. - Keep the extension inert without its flag (or equivalent trigger). Don't run side effects unconditionally at load time.
- Update
README.md— add an entry under the Extensions section documenting flags, use cases, requirements, and how it works. - Re-run
./install.sh— it picks up the new file and symlinks it. In a running pi session,/reloadis enough; no restart needed.
Extension-specific notes
ssh-controlmaster.ts
Overrides the four native pi tools (read, write, edit, bash) to execute
on a remote machine via SSH when --ssh user@host is passed.
Key design decisions:
-
ControlMaster negotiation via
ssh -G.
Before starting any connection,readSshConfig(remote)runsssh -G <host>and inspects thecontrolmasterandcontrolpathfields. If the effective config already hasControlMaster autooryes, the system socket is reused (ownsmaster: false). Otherwise, the extension starts its own master at/tmp/pi-cm-<pid>.sock(ownsmaster: true). Thesession_shutdownhandler only callsssh -O exitwhenownsmasteris true — it never tears down a connection it didn't create. -
Password auth via
--ssh-ask-pass.
When the flag is set,ctx.ui.input()prompts for a password before connecting. The password is passed to SSH viaSSH_ASKPASS: a temp script at/tmp/pi-askpass-<pid>.sh(chmod 700) is written, SSH is spawned withSSH_ASKPASS+SSH_ASKPASS_REQUIRE=force(plusDISPLAY=dummyfor older OpenSSH), and the script is deleted in afinallyblock. Input is not masked — visible while typing. -
Path mapping.
Remote paths are derived by replacing the localcwdwithremoteCwdin every path argument. This works cleanly when pi is started from a directory that has a matching counterpart on the remote. Use theuser@host:/pathform when the paths diverge. -
ownsmastervs system master and--ssh-ask-pass.
If the system already has a ControlMaster configured for the target host,--ssh-ask-passis silently ignored — the system master handles auth independently and the socket is just reused.
confirm-destructive.ts
Always-on (no flag). Two layers:
-
Bash gate — intercepts
tool_callforbashand checks the command against a pattern list. On match, shows aselectdialog. Blocks in non-interactive mode by default. Patterns: recursiverm,sudo,chmod/chown 777,dd if=,mkfs,git push --force, writes to/dev/*,truncate --size 0. -
Session gate — hooks
session_before_switchandsession_before_fork. Confirms before/new(clear) and/resume(switch, only if there are unsaved messages). Always confirms before/fork.
When adding new patterns, add to the DANGEROUS array at the top of the file.
Each entry has a pattern (RegExp) and a label shown in the dialog.
git-checkpoint.ts
Always-on. Silently skips when the cwd is not inside a git repo.
- At
turn_start: runsgit stash create(non-destructive — creates a stash object without touching the working tree). Stores the stash ref keyed to the current session entry ID. Empty output (nothing to stash) is silently ignored. - At
session_before_fork: if a checkpoint exists for the selected entry, offers togit stash applyit. - Status bar shows
⎇ N checkpointswhen checkpoints are present. - Checkpoints are in-memory only — they do not survive a pi restart, but stash objects remain in the git repo and can be applied manually.
notify.ts
Always-on. Records agent_start timestamp; on agent_end checks if elapsed
time exceeds --notify-min-secs (default 8). Silently skips short responses.
Terminal detection order: KITTY_WINDOW_ID → OSC 99 (Kitty) →
WT_SESSION → Windows toast → OSC 777 (iTerm2, WezTerm, Ghostty).
Notification text: Pi — Done (Ns) where N is the rounded elapsed seconds.
ext-toggle.ts
Registers /ext slash command. Lists files in ~/.pi/agent/extensions/,
shows ● (active) / ○ (disabled) plus dir/symlink hints, and lets the
user toggle individual extensions by renaming them between name.ts and
name.ts.off. Calls ctx.reload() after a toggle so the change takes
effect without restarting pi.
Key design decisions:
- Rename, not delete. Disabling a built-in produces a
name.ts.offsymlink/file that's invisible to pi's*.tsdiscovery glob but trivially reversible. No state stored elsewhere. - Symlink-friendly.
fs.renameSyncrenames the symlink itself; the repo target is untouched. Toggling an extension installed by this repo is reversible without re-runninginstall.sh. - Subdir extensions are read-only in v1.
name/index.tsshapes show up in the listing with a[dir]tag but cannot be toggled — the cleanest disable for a directory would need a hidden-prefix or move-aside dance that adds more failure modes than it's worth for now. install.sh --uninstallmatches both*.tsand*.ts.off. Means a disabled extension is still cleaned up on uninstall, regardless of which state it was left in.- Listing is recomputed on every
/extinvocation. No cache, no event subscription — cheap enough for the tens of files this directory will ever contain.
API used:
pi.registerCommand(name, { description, handler })— registers/ext.ctx.ui.select(title, items)— picker; returns selected string orundefined.ctx.ui.confirm(title, message)— yes/no dialog returningboolean.ctx.ui.notify(message, level)— transient toast.ctx.reload()— reloads extensions/skills/prompts/themes; same as/reload.
No flags, no agent_* event handlers — fully passive until /ext is invoked.
No framework. Manual:
./install.sh --help
./install.sh --yes # fresh install
./install.sh --yes # re-run (idempotent — all "already linked")
./install.sh --only ssh-controlmaster --yes # subset
./install.sh --skip ssh-controlmaster --yes # inverse subset
./install.sh --uninstall --yes # remove
./install.sh --yes # reinstall
Manual extension tests (requires a reachable SSH host):
# Key-based auth
pi --ssh user@host
# Explicit remote path
pi --ssh user@host:/etc
# Password auth
pi --ssh user@host --ssh-ask-pass
# Verify status bar shows ⚡ own master or ⚡ system master
# Verify /reload works without restarting pi
Gotchas
ctx.ui.input()does not mask input. Passwords typed via--ssh-ask-passare visible in the terminal. A masked alternative would require a customctx.ui.custom()component.- Socket path length limit on macOS. Unix socket paths are capped at ~104
characters.
/tmp/pi-cm-<pid>.sockis safe. Don't use paths under$HOMEwhich can be long. ssh -Gstrips theuser@prefix before querying config. ThereadSshConfighelper does this automatically. Don't passuser@hostdirectly tossh -G.SSH_ASKPASS_REQUIRE=forcerequires OpenSSH 8.4+.DISPLAY=dummyis set as a fallback for older versions. Both are needed for full compatibility.- Extensions loaded globally affect every pi session. Extensions without
an activating flag (e.g. a
session_starthook that always fires) will run on every invocation. Keep that surface small. pi install /pathandinstall.shsymlinks are mutually exclusive for the same extension.pi installmanages its own copy;install.shmanages a symlink. Pick one per machine.
Related repos
pi-toolkit— pi bring-up: settings template, keybindings, shell env loader. Install this first.mempalace-toolkit— persistent memory layer. Installsmempalace.tsinto~/.pi/agent/extensions/separately from this repo.skillset— same pattern for agent skills rather than extensions.opencode-devbox— Docker containers; composes toolkits via independent install.sh calls.