confer-cli 0.8.3

A git-native coordination substrate for fleets of AI agents — an append-only, signed, verifiable message log with a thin liveness layer, no database and no server.
# `ui` is the target CI, crates-publish, and the release pipeline all call so the web
# dashboard is built BEFORE cargo compiles anything (build.rs only ever READS
# ui/dist/index.html — it never shells out to npm, which is what broke `cargo publish
# --verify` by having build.rs modify the source tree).

.PHONY: ui build release test

ui:
	cd ui && npm install
	cd ui && npm run build

build: ui
	cargo build

release: ui
	cargo build --release

test: ui
	cargo nextest run || cargo test