Rust SDK and CLI for multi-agent deliberation systems — ships the `quorum` binary (run / status / trace / tui / init) plus the underlying agent, LLM, tool, prompt, and worker library.
# quorum-rs Makefile
# Works standalone (from crate directory) and when included from the workspace root.
.PHONY:check testcheck:## Check quorum-rs@cargo check -p quorum-rstest:## Test quorum-rs@echo"Testing quorum-rs..."@cargo test -p quorum-rs@echo"quorum-rs tests passed"