poe2-agent 0.3.2

AI agent for Path of Exile 2 build analysis
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Run all pre-commit checks
precommit: fmt-check clippy test

# Check formatting
fmt-check:
    cargo fmt -- --check

# Lint
clippy:
    cargo clippy -- -D warnings

# Run tests
test:
    cargo test

# Auto-fix formatting
fmt:
    cargo fmt