-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.coderabbit.yaml
More file actions
35 lines (33 loc) · 1.35 KB
/
.coderabbit.yaml
File metadata and controls
35 lines (33 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
language: en-US
tone_instructions: "Be direct and concise. Focus on bugs, security, and correctness over style."
reviews:
profile: assertive
high_level_summary: true
poem: false
in_progress_fortune: false
auto_review:
enabled: true
auto_incremental_review: true
ignore_title_keywords:
- "WIP"
- "DO NOT MERGE"
- "wip"
path_filters:
- "!.wishes/**"
- "!.beads/**"
- "!memory/**"
- "!.claude/**"
- "!*.md"
- "!dist/**"
- "!.pgserve-data/**"
path_instructions:
- path: "packages/core/**"
instructions: "This is the shared core package. Changes here affect all other packages. Check for breaking changes to exported types and schemas."
- path: "packages/api/**"
instructions: "Hono + tRPC API. Verify OpenAPI docs are updated for route changes. Check Zod validation on external inputs. Events must be published for state changes."
- path: "packages/channel-*/**"
instructions: "Channel plugins must be isolated — no core logic here. Verify they implement the ChannelPlugin interface and emit proper events."
- path: "packages/db/**"
instructions: "Drizzle ORM only — no raw SQL. Check schema changes have proper migrations."
- path: ".github/workflows/**"
instructions: "CI workflows. Check for hardcoded secrets, proper caching keys, and timeout settings."