diff options
| author | Paul Buetow <paul@buetow.org> | 2026-03-21 09:56:45 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-03-21 09:56:45 +0200 |
| commit | 8fdba30d44037a91623c7cf05da7f1e2a298c47e (patch) | |
| tree | f1f863325c6abede8da8a6413cc180618ea06037 /pi/agent/extensions/handoff/README.md | |
| parent | ebe3566cefcccd288faa000cfe9bda298542cc5d (diff) | |
import pi.dev stuff
Diffstat (limited to 'pi/agent/extensions/handoff/README.md')
| -rw-r--r-- | pi/agent/extensions/handoff/README.md | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/pi/agent/extensions/handoff/README.md b/pi/agent/extensions/handoff/README.md new file mode 100644 index 0000000..1f70211 --- /dev/null +++ b/pi/agent/extensions/handoff/README.md @@ -0,0 +1,45 @@ +# Handoff + +Focused session handoff for Pi. + +This is the upstream `handoff.ts` example installed as a local extension in +your dotfiles-backed Pi tree. It generates a compact, self-contained prompt for +starting a new session without manually rewriting the whole context. + +## What It Does + +- adds `/handoff <goal>` +- reads the current session branch +- asks the active model to summarize the relevant context for a new thread +- opens the generated handoff prompt for editing +- creates a new session and drops the edited prompt into the new editor + +## Usage Flows + +### Flow 1: Split off the next implementation phase + +```text +/handoff implement the next phase of the WireGuard cleanup work +``` + +Pi generates a fresh prompt with the relevant context, opens it for editing, +creates a new session, and leaves the draft ready to submit. + +### Flow 2: Move into a review-only thread + +```text +/handoff independently review the recent hyperstack changes for concrete bugs and missing tests +``` + +### Flow 3: Continue with a narrower subproblem + +```text +/handoff investigate only the SSH host verification path and ignore the rest +``` + +## Notes And Limits + +- This is for interactive Pi sessions with UI support. +- It uses the currently selected model to generate the handoff prompt. +- It is a session-to-session context transfer helper, not the same thing as the + fresh subagent extension. |
