agent-orchestrator 0.2.1

Core library for the Agent Orchestrator — task scheduling, runner, and persistence
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
COVERAGE_MIN ?= 90

.PHONY: build test coverage coverage-html

build:
	cargo build

test:
	cargo test --lib --bins

coverage:
	cargo llvm-cov --lib --fail-under-lines $(COVERAGE_MIN) --ignore-filename-regex 'build.rs'

coverage-html:
	cargo llvm-cov --lib --html --fail-under-lines $(COVERAGE_MIN) --ignore-filename-regex 'build.rs'