Releases: croviatrust/causari
Releases · croviatrust/causari
Release list
v0.1.0 - Trace intent. Debug causality.
Causari v0.1.0 — initial public release
Intent-addressable code for AI agents.
This is the first public cut of Causari. It is functional, cross-platform,
and ready for early adopters who want to instrument their AI-agent workflows
with causal provenance.
Install
One line (Linux / macOS)
curl -sSf https://causari.dev/install.sh | shOne line (Windows / PowerShell)
iwr -useb https://causari.dev/install.ps1 | iexBoth scripts verify the SHA256 of the downloaded binary against
SHA256SUMS.txt attached to this release.
From source
cargo install --git https://github.com/croviatrust/causariPrebuilt binaries
| Target | Asset |
|---|---|
| Linux x86_64 | re-v0.1.0-x86_64-unknown-linux-gnu.tar.gz |
| Linux aarch64 | re-v0.1.0-aarch64-unknown-linux-gnu.tar.gz |
| macOS x86_64 (Intel) | re-v0.1.0-x86_64-apple-darwin.tar.gz |
| macOS aarch64 (Apple Silicon) | re-v0.1.0-aarch64-apple-darwin.tar.gz |
| Windows x86_64 | re-v0.1.0-x86_64-pc-windows-msvc.zip |
| Checksums | SHA256SUMS.txt |
Highlights
- Content-addressable event ledger with BLAKE3 hashing — every agent
action becomes an immutable, queryable event. - Bidirectional causal graph —
re tracewalks the upstream cone
(intellectual ancestry of a line),re impactwalks the downstream cone
(blast radius of an event). - 15+ CLI subcommands:
init,record,log,show,revert,
diff,why,watch,bisect,fork,trace,find,impact,
lens,mcp. - Built-in MCP server — Causari exposes
causari_record,
causari_recall,causari_whyto Claude Desktop, Claude Code, Cursor,
Cline and Windsurf. - Cross-platform: Linux (x86_64, aarch64), macOS (Intel, Apple Silicon),
Windows (x86_64). - Licensed under BSL 1.1, converting to Apache 2.0 four years after the
release of each version. Production use is allowed; reselling Causari as
a hosted service is not.
Quick start
# install
curl -sSf https://causari.dev/install.sh | sh
# in any project
re init
re record -m "first action"
re logOr run any of the four end-to-end demos:
./scripts/demo.sh # full lifecycle
./scripts/demo-trace.sh # upstream causal cone
./scripts/demo-bidir.sh # downstream impact + lens + revert preview
./scripts/demo-mcp.sh # MCP server end-to-endWhat's next
- A
causari.devlanding site — live now. - More agent runtimes integrated with the MCP server.
- Signed releases (Sigstore).
- Homebrew / Scoop / nix taps.
Feedback, issues and PRs welcome — see CONTRIBUTING.md.