Yanzi is a CLI for recording intent, storing context, creating checkpoints, and rehydrating AI-assisted work.
yanzi project create my-project
yanzi project use my-project
yanzi capture --author "Ada" --prompt "hello" --response "world"
yanzi export --format html
open YANZI_LOG.htmlThis opens an interactive HTML UI. No separate UI install is required after Yanzi is installed. The exported file works offline.
Yanzi stores project history locally in SQLite. The main workflow is:
- capture prompt and response pairs
- add context documents or notes
- create checkpoints at stable boundaries
- rehydrate the active project from the latest checkpoint
It does not orchestrate agents or modify your code for you.
yanzi export --format html writes an interactive HTML file.
Artifacts are collapsible, search is built in, and checkpoints are separated in the timeline.
macOS:
brew install chuxorg/yanzi/yanzimacOS or Linux install script:
curl -sSL https://raw.githubusercontent.com/chuxorg/yanzi/main/install.sh | bashWindows:
- Download
yanzi-windows-amd64.zipfrom the latest release. - Extract
yanzi.exe. - Add the extract directory to
PATH.
Technical docs: https://chuxorg.github.io/yanzi/
Create and select a project:
yanzi project create demo
yanzi project use demoCapture a prompt and response:
yanzi capture \
--author "Ada" \
--prompt "Summarize the current task" \
--response "Add distribution docs and validate examples."Create a checkpoint and preview rehydration:
yanzi checkpoint create --summary "Initial project state"
yanzi rehydrate --dry-runOptional message example:
yanzi message send --to claude --from ada --channel handoff --content "Review the latest checkpoint."
yanzi message pull --to claude --channel handoff- Website and overview: https://chuxorg.github.io/yanzi/
- Quickstart: https://chuxorg.github.io/yanzi/quickstart/
- CLI reference: https://chuxorg.github.io/yanzi/cli/
- Install: https://chuxorg.github.io/yanzi/install/
Homebrew upgrades depend on the tap formula being refreshed. If brew upgrade yanzi does not move you to the latest release immediately, use the install script above.
MIT