### Development
```bash
# Make scripts executable
chmod +x scripts/*.sh
# Run comprehensive tests
make test
# Run only unit tests
make test-unit
# Run tests safely with build step
make test-safe
# Format code
cargo fmt
# Run clippy
cargo clippy
```