oxo-call 0.10.3

Model-intelligent orchestration for CLI bioinformatics — call any tool with LLM intelligence
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.PHONY: ci fmt clippy build test

## Run all local CI quality-gate checks (mirrors the "Test" job in ci.yml).
## Every check must pass before calling report_progress / git push.
ci: fmt clippy build test

fmt:
	cargo fmt -- --check

clippy:
	cargo clippy -- -D warnings

build:
	cargo build

test:
	cargo test -- --test-threads=1