pi-insomnia
Prevent macOS idle sleep while Pi agents are working.
Package details
Install pi-insomnia from npm and Pi will load the resources declared by the package manifest.
$ pi install npm:pi-insomnia- Package
pi-insomnia- Version
0.1.1- Published
- Jun 9, 2026
- Downloads
- not available
- Author
- mocito
- License
- MIT
- Types
- extension
- Size
- 17.8 KB
- Dependencies
- 0 dependencies · 1 peer
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-insomnia
A source-distributed Pi package that prevents macOS idle sleep while the Pi agent is working.
[!WARNING] Pi packages can execute arbitrary code through extensions. Review package source before installing any third-party Pi package.
Features
- Automatically starts a macOS sleep assertion when a Pi agent run starts.
- Automatically releases the assertion when the agent run ends.
- Cleans up on Pi session shutdown, reloads, and quits.
- Uses the macOS built-in
/usr/bin/caffeinatecommand; no third-party runtime dependency is required. - Shows a small
☕ sleep inhibitedfooter status while active in UI modes. - No slash commands, tools, or manual activation needed.
Platform support
pi-insomnia currently targets macOS. On non-macOS platforms it silently no-ops.
On macOS, the extension launches:
/usr/bin/caffeinate -i -w <pi-pid>
-i prevents idle system sleep while the process is running. -w <pi-pid> also ties the assertion to the Pi process so the helper exits if Pi exits unexpectedly. The extension still explicitly terminates the helper when the agent becomes idle.
Installation
Install from npm:
pi install npm:pi-insomnia
Install project-locally with Pi's -l flag:
pi install -l npm:pi-insomnia
During local development from this monorepo:
pi install /path/to/pi-mono/packages/pi-insomnia
For a one-off test run without installing:
pi -e /path/to/pi-mono/packages/pi-insomnia --print "explain what this package does"
This is an npm-compatible TypeScript Pi package. There is no runtime build step.
Configuration
| Variable | Purpose |
|---|---|
PI_OFFLINE=1 |
Disables install/update telemetry. |
PI_TELEMETRY=0 |
Disables install/update telemetry. |
pi-insomnia has no behavior configuration. If the package is installed and Pi is running on macOS, sleep inhibition is automatic while the agent is working.
Notes
- The extension inhibits idle system sleep, not display sleep. It does not use
caffeinate -d. - The extension does not request elevated privileges.
- On startup, Pi Insomnia sends a best-effort install/update telemetry ping once per package version unless Pi telemetry is disabled, offline mode is enabled, or Pi runs in CI.
Development
npm install
npm run check
npm run pack:dry-run