pi-upgrade

内容来源:README.md(说明文档) · 原始地址 · 查看安装指南

原始内容

pi-upgrade

A pi extension that adds an /upgrade command for upgrading the core pi-coding-agent CLI to the latest npm release.

Install

pi install npm:pi-upgrade

Or from GitHub:

pi install git:github.com/maxpetretta/pi-upgrade

Usage

/upgrade

Flags:

  • /upgrade --force — reinstall even if already on latest
  • /upgrade --dry-run — show what would run without doing it

After a successful upgrade, the extension shows a 5-second restart countdown and automatically relaunches pi on the current session in interactive TUI mode. In non-interactive modes, it falls back to the normal manual restart message.

What it does

  1. Finds the running pi binary and walks up to its package.json
  2. Detects the package manager from the install path (npm, pnpm, yarn, bun)
  3. Prefers the package manager sibling to the current Node runtime
  4. Checks the npm registry for the latest published version
  5. Runs the appropriate global install command
  6. Automatically relaunches pi on the current session after a successful upgrade when interactive TUI mode is available
  7. Otherwise tells you to restart pi afterward

Why restart?

/reload only reloads extensions, skills, prompts, and themes. The core pi runtime is already loaded in memory, so a process restart is needed to pick up the new version.

Development

This package uses Bun for local development.

bun install
bun run lint
bun run typecheck
bun test

License

MIT