# Contributing to robinxx_map
Thank you for your interest! This project follows **Spec-Driven Development (SDD)** with strict safety and performance guardrails.
## 🛠Development Workflow
1. **Fork & Branch**: Create `feat/<feature>` or `fix/<issue>` from `main`.
2. **Validate Locally**:
```bash
cargo check
cargo test
cargo clippy -- -D warnings
RUSTDOCFLAGS="-D warnings" cargo doc --no-deps
cargo fmt --check
cargo bench
```
3. **Submit PR**: Attach benchmark deltas if performance-sensitive. Ensure 100% public API doctests pass.
4. **Review**: Maintainers verify invariants, safety comments, and benchmark stability before squash merge.