From b90c9347759bccbcc159bb64932e5f88d4e18659 Mon Sep 17 00:00:00 2001 From: satyakwok <119509589+satyakwok@users.noreply.github.com> Date: Tue, 12 May 2026 04:54:31 +0200 Subject: [PATCH] chore: add .coderabbit.yaml configured for sdk Tunes the CodeRabbit auto-review for this repo: - profile + path_instructions targeted to what this repo actually does - poem disabled, changed_files_summary disabled (less noise) - drafts skipped from auto-review - vendored / build / lock paths filtered out Bot still responds on-demand via @coderabbitai mention regardless of auto-review settings. --- .coderabbit.yaml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .coderabbit.yaml diff --git a/.coderabbit.yaml b/.coderabbit.yaml new file mode 100644 index 0000000..2c8de14 --- /dev/null +++ b/.coderabbit.yaml @@ -0,0 +1,27 @@ +language: en-US +early_access: false +reviews: + profile: assertive + high_level_summary: true + poem: false + review_status: false + changed_files_summary: false + auto_review: + enabled: true + drafts: false + path_filters: + - "!**/target/**" + - "!**/dist/**" + - "!**/node_modules/**" + - "!**/*.lock" + path_instructions: + - path: "src/**" + instructions: | + Public SDK surface. Breaking-change watch on every PR: + - Adding required parameters to existing public functions / methods. + - Renaming exported types or removing public fields. + - Changing trait / interface signatures or default implementations. + - Bumping semver-affecting transitive dependencies. + Flag any breaking change with a clear MIGRATION note in the PR body + suggest semver-major bump. +chat: + auto_reply: true