batty-cli 0.1.0

Hierarchical agent command system for software development
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.PHONY: lint lint-fix docs-generate docs-serve

lint:
	cargo fmt -- --check
	cargo clippy --all-targets --all-features -- -D warnings

lint-fix:
	cargo fmt
	cargo clippy --fix --allow-dirty --allow-staged

docs-generate:
	./scripts/generate-docs.sh

docs-serve:
	mkdocs serve