merge-ready 0.2.1

Show pull request merge blockers as concise prompt tokens
# Contributing to merge-ready

## Development Philosophy

This project follows TDD as a **design practice**, not merely a testing strategy.

**Red → Green → Refactor**

1. **Red** — Write a failing test that expresses the intended behaviour as a specification.
2. **Green** — Make it pass with the minimum implementation necessary.
3. **Refactor** — Improve the design without changing observable behaviour.

Key principles:

- Tests are specifications. They document *what* the code must do, not *how*.
- Testability reflects design quality. Hard-to-test code signals tight coupling, unclear responsibilities, or hidden side effects. Let that friction guide you toward smaller, well-bounded units.
- Take small steps. Keep the codebase in a working state at every commit. Prefer fast feedback over large upfront design.
- Design evolves. Start with what is needed now. Refactor toward clarity once behaviour is pinned by tests. Avoid speculative abstractions.
- When touching untested code, write characterisation tests first to fix existing behaviour before making changes.

## Prerequisites

| Tool | Purpose |
|------|---------|
| [Rust]https://www.rust-lang.org/tools/install (stable) | Build and test |
| [mise]https://mise.jdx.dev/ | Toolchain version management |
| [gh]https://cli.github.com/ CLI (authenticated) | Required at runtime |

```bash
mise install   # installs Rust toolchain declared in mise.toml
```

## Build & Test

```bash
cargo build                          # compile
cargo test --workspace               # run all tests
cargo clippy --workspace -- -D warnings  # lints (must pass)
cargo fmt --check --all              # formatting check
cargo deny check                     # dependency audit
bash scripts/check-layer-deps.sh     # DDD layer dependency rules
```

## Commit Convention

Follow [Conventional Commits](https://www.conventionalcommits.org/). Only `feat`, `fix`, and `perf` commits appear in the changelog (`cliff.toml`).

**Breaking changes:** append `!` after the prefix and include a `BREAKING CHANGE:` footer.

```
feat!: remove --legacy flag

BREAKING CHANGE: --legacy flag has been removed.
```

## Pull Request Flow

Branch naming:

```
<type>/[<issue-id>-]<short-description>
# examples:
feat/42-add-login
fix/PROJECT-8-null-check
chore/update-deps
```

PR checklist:

- [ ] All CI checks (`cargo test`, `clippy`, `fmt`, `deny`, layer deps) pass locally before pushing
- [ ] Each commit is atomic and passes tests on its own
- [ ] Commit messages follow the convention above
- [ ] New behaviour is covered by tests written before the implementation

## Release

Releases are automated via [release-plz](https://release-plz.unksolid.dev/).

1. Run `mise run release-prepare` — creates a Release PR with version bump and updated `CHANGELOG.md`
2. Review and merge the Release PR
3. Merging triggers automatic publication to [crates.io]https://crates.io/crates/merge-ready