Reach UI is an accessible foundation for React applications and design systems.
The three equally important goals are to be:
- Accessible
- Composable
- Stylable
| #!/bin/bash | |
| # Auto commits after each Claude turn if: | |
| # - A STOP hook is configured that runs this script | |
| # - A <repo_root>.claude/auto_commit.json file has key "enabled" set to `true` | |
| set -euo pipefail | |
| INPUT=$(cat) | |
| # Find git root; bail if not a repo | |
| GIT_ROOT=$(git rev-parse --show-toplevel 2>/dev/null) || exit 0 |