Contributing
The full guide lives in the repository, next to the code it describes.
CONTRIBUTING.mdSetup, the check gate, code conventions, commit format, and the pull-request process.
The short version
Section titled “The short version”Clone the repository and run the setup task:
git clone https://github.com/xberg-io/sceptre.gitcd sceptretask setupRun the same gate CI enforces before every push:
task checkThat runs cargo fmt --all --check, cargo clippy --workspace --all-targets --tests -- -D warnings,
cargo test --workspace, and poly lint ..
Commits use Conventional Commit prefixes (feat:, fix:, perf:, chore:, refactor:, docs:,
test:). Architecturally significant choices are recorded as ADRs — see
Decision records.
Report bugs and request features on the issue tracker.