hooks/pi/README.md
Part of
hooks/— see alsosrc/hooks/for installation code
RTK's Pi extension is a rewrite-only token optimizer. It mutates bash commands to their
rtk-prefixed equivalents, saving 60–90% context tokens.
Permission gating is intentionally out of scope. RTK does not block, confirm, or audit
commands — that concern belongs to a dedicated permission extension (e.g. one that gates
rm -rf, sudo, etc.). This separation keeps RTK's hook fast, predictable, and composable
with other Pi extensions.
ExtensionAPI (not a shell hook, no zx dependency)tool_call event, narrows to bash tool via isToolCallEventTypertk rewrite via pi.exec; mutates event.input.command in-place if rewrite differsundefined (pass through); RTK never blocks executionrtk >= 0.23.0; warns and registers no-op if too old or missing.pi/extensions/rtk.ts by rtk init --agent pi (project-local) or ~/.pi/agent/extensions/rtk.ts by rtk init --agent pi --global# Remove project-local install (run from the project root)
rtk init --uninstall --agent pi
# → removes .pi/extensions/rtk.ts
# Remove global install
rtk init --uninstall --agent pi --global
# → removes ~/.pi/agent/extensions/rtk.ts
Uninstall is idempotent — re-running when nothing is installed is a no-op. Only the extension file is managed by install/uninstall.
# Load the extension directly without installing
pi -e ./hooks/pi/rtk.ts
# Verify rewrites are active — ask the agent to run a command, then check history
rtk gain --history # should show rtk-prefixed commands with savings %
# Test RTK_DISABLED passthrough
RTK_DISABLED=1 pi -e ./hooks/pi/rtk.ts
# → commands pass through unchanged; no rewrites in rtk gain --history
# Test version guard — temporarily shadow rtk with a stub that prints "rtk 0.22.0"
# → extension logs a warning at startup and registers a no-op; pi starts normally
rtk rewrite (the Rust registry), not in this filepi.exec for subprocess management — consistent with Pi's extension API