@quant-pi/ext

Small, hand-written, composable modules for pi-agent — inspired by mini.nvim, focused on simple, predictable building blocks for coding agents.

Package details

extension

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

$ pi install npm:@quant-pi/ext
Package
@quant-pi/ext
Version
0.1.1
Published
May 5, 2026
Downloads
41/mo · 41/wk
Author
tokiory
License
unknown
Types
extension
Size
3.1 KB
Dependencies
0 dependencies · 1 peer
Pi manifest JSON
{
  "extensions": [
    "./extensions"
  ]
}

Security note

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

README

quant-pi

🧩 Small, hand-written, composable modules for pi-agent — inspired by mini.nvim, focused on simple, predictable building blocks for coding agents.

Structure

Each feature lives in its own extension folder:

extensions/
  mono-plan/
    index.ts
  notify-on-done/
    index.ts
  plan-mode/
    index.ts

Use as a pi package

Install locally or from a path:

pi install /absolute/path/to/quant-pi
# or
pi install -l /absolute/path/to/quant-pi

Enable only specific extensions with package filtering in settings.json:

{
  "packages": [
    {
      "source": "/absolute/path/to/quant-pi",
      "extensions": [
        "+extensions/notify-on-done/index.ts",
        "+extensions/plan-mode/index.ts"
      ]
    }
  ]
}