@diegopetrucci/pi-librarian
A pi GitHub research scout with a toggleable local repo checkout cache under the user's OS cache directory.
Package details
Install @diegopetrucci/pi-librarian from npm and Pi will load the resources declared by the package manifest.
$ pi install npm:@diegopetrucci/pi-librarian- Package
@diegopetrucci/pi-librarian- Version
0.1.2- Published
- May 23, 2026
- Downloads
- 308/mo · 94/wk
- Author
- diegopetrucci
- License
- MIT
- Types
- extension
- Size
- 36.9 KB
- Dependencies
- 0 dependencies · 3 peers
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
librarian
A pi GitHub research scout inspired by pi-librarian, with a local checkout cache enabled by default.
When the librarian tool runs, it can cache/reuse repository checkouts locally. Use /librarian-cache off to force GitHub API/search and temporary fetched files only, or /librarian-cache on to re-enable cached local checkouts.
Install
Standalone npm package
pi install npm:@diegopetrucci/pi-librarian
Collection package
pi install npm:@diegopetrucci/pi-extensions
GitHub package
pi install git:github.com/diegopetrucci/pi-extensions
Then reload pi:
/reload
Behavior
- Tool name:
librarian - Uses a restricted subagent with
bashandread - Uses
ghfor GitHub search/API access - Uses cached local checkouts by default
- Toggle cache behavior for future calls with
/librarian-cache on | off | toggle | status - Cached repos are removed lazily after 7 days without use
Commands
/librarian-cache status
/librarian-cache off
/librarian-cache on
/librarian-cache toggle
The command works in interactive mode, RPC mode, and print/JSON mode. It writes a global preference to ~/.pi/agent/extensions/librarian.json, so separate non-UI invocations use the same setting. In non-UI modes, command feedback is written to stderr so stdout remains usable for normal output or JSON events.
Cache location
macOS:
~/Library/Caches/pi-librarian/repos/github.com/<owner>/<repo>
Linux:
${XDG_CACHE_HOME:-~/.cache}/pi-librarian/repos/github.com/<owner>/<repo>
Windows:
%LOCALAPPDATA%\pi-librarian\repos\github.com\<owner>\<repo>
Override the cache root if needed:
export PI_LIBRARIAN_CACHE_ROOT="$HOME/Library/Caches/pi-librarian/repos"
Requirements
- GitHub CLI (
gh) installed and authenticated for private repositories you want to inspect gitfor local checkout caching- common shell tools such as
rg,jq, andbase64for best results
Notes
Do not install this alongside another extension that registers a librarian tool unless you intentionally want duplicate/conflicting tool names.