pi-almanac
v0.1.0
Published
Pi extension for exporting current session JSONL files for cross-machine resume workflows
Maintainers
Readme
pi-almanac
pi-almanac is a small Pi package that adds commands to export your current session JSONL file for cross-machine continuation.
Commands
/export-jsonl [path]/almanac-export [path](alias)
If path is omitted, the command writes a file in the current working directory:
./almanac-YYYYMMDD-HHMMSS.jsonl
If path is a directory (or ends with /), the same default filename is created inside that directory.
Install
pi install /absolute/path/to/pi-almanacor after publishing:
pi install npm:pi-almanacWorkflow (work -> home)
On machine A (mid-session):
/export-jsonl ~/almanac/my-task.jsonlCopy that file to machine B, then continue:
pi --session ~/almanac/my-task.jsonlNotes
- This exports Pi's native session format (JSONL).
- It does not replace Pi's built-in
/export, which exports HTML.
