pi-mom

MOM skills for Pi — installs MOM's user-invocable memory skills into the Pi coding agent

Packages

Package details

skill

Install pi-mom from npm and Pi will load the resources declared by the package manifest.

$ pi install npm:pi-mom
Package
pi-mom
Version
0.2.0
Published
Jun 11, 2026
Downloads
1,116/mo · 42/wk
Author
vmarino
License
MIT
Types
skill
Size
22.3 KB
Dependencies
0 dependencies · 0 peers

Security note

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

README

pi-mom

MOM skills for MOM (Memory Oriented Machine) on the Pi coding agent.

Installs MOM's user-invocable memory skills into Pi:

  • /mom-status — check MOM health, Ledger stats, and vault watermark
  • /mom-project — bind the current directory to a MOM project id for scoped memory
  • /mom-fold — fold newly captured sessions into the markdown vault (end-of-session save)
  • /mom-rebuild — rebuild the vault from scratch over the full captured history

Installation

pi install npm:pi-mom

Or let mom init handle it automatically when it detects Pi in your project.

Requirements

How it works

MOM captures your Pi sessions in the background (via the mom watch daemon) and folds them into a navigable markdown vault under .mom/vault/. These skills are thin wrappers over MOM's CLI and the vault files — the agent reads the vault directly with its file tools. There is no MCP server: as of MOM v0.50 memory is delivered entirely through the per-project markdown vault and the always-loaded context block.

The skill files here are kept byte-identical to the canonical copies in momhq/mom via scripts/verify-skills-sync.sh.

Related