⚠️ Work in Progress
Kure is currently under active development and has not been released yet. APIs and features are subject to change.

Contributing

Contributing

Resources for contributing to Kure.

Quick Start

# Clone the repository
git clone https://github.com/go-kure/kure.git
cd kure

# Install tools
make tools

# Run checks
make check

# Run full pre-commit validation
make precommit

Branch Workflow

main is protected. Create a feature branch:

git checkout -b feat/my-feature main
# make changes
git push -u origin feat/my-feature
gh pr create

Required CI checks: lint, test, build.