kaizen-cli 0.1.35

Distributable agent observability: real-time-tailable sessions, agile-style retros, and repo-level improvement (Cursor, Claude Code, Codex). SQLite, redact before any sync you enable.
Documentation
#!/bin/sh
# Run rustfmt for the whole workspace (matches CI: cargo fmt --all -- --check).
# Re-stages any staged .rs files so formatting is part of the commit.
set -e
cd "$(git -C "$(dirname "$0")" rev-parse --show-toplevel)"

staged="$(git diff --cached --name-only --diff-filter=ACM)"

printf '%s\n' "$staged" | grep -q '\.qnt$' && {
	if ! command -v quint >/dev/null 2>&1; then
		printf '%s\n' "pre-commit: quint not found; install @informalsystems/quint@0.32.0 to commit spec changes (CONTRIBUTING.md)." >&2
		exit 1
	fi
	scripts/check-quint-specs.sh
}

printf '%s\n' "$staged" | grep -q '\.rs$' || exit 0

if ! command -v cargo >/dev/null 2>&1; then
	printf '%s\n' "pre-commit: cargo not found; install Rust to format Rust code." >&2
	exit 1
fi

cargo fmt --all

git diff --cached --name-only --diff-filter=ACM | grep -E '\.rs$' | while IFS= read -r f; do
	[ -f "$f" ] && git add -- "$f"
done