nomograph-jig 0.1.0

Agent-shape testing harness. Runs runtime-in-the-loop task batteries against a tool's CLI to measure first-try command success, tokens, turns, and invented-command count. TOML-driven, LLM-as-judge scored.
Documentation
BINARY := jig

.PHONY: build install clean test lint fmt check

build:
	cargo build --release
	cp target/release/$(BINARY) $(BINARY)

install:
	cargo install --path .

clean:
	cargo clean
	rm -f $(BINARY)

test: build
	cargo test

lint:
	cargo clippy --all-targets -- -D warnings

fmt:
	cargo fmt

check: build
	./$(BINARY) --help > /dev/null
	./$(BINARY) check examples/agent-shape.example.toml > /dev/null