quorum-rs 0.7.0-rc.6

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.
1
2
3
4
5
6
7
8
9
10
11
12
# quorum-rs Makefile
# Works standalone (from crate directory) and when included from the workspace root.

.PHONY: check test

check: ## Check quorum-rs
	@cargo check -p quorum-rs

test: ## Test quorum-rs
	@echo "Testing quorum-rs..."
	@cargo test -p quorum-rs
	@echo "quorum-rs tests passed"