Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .kodiai.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
review:
uiRereviewTeam: aireview
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Critical: Configuration mismatch with hardcoded validation

The team name aireview won't work because the handler code (src/handlers/review.ts:62) has a hardcoded set containing only "ai-review" (with hyphen). When a review is requested via this team, the validation at review.ts:201 will fail the match and skip the review.

This means the UI-based rereview via team request will not function as intended.

Suggested change
uiRereviewTeam: aireview
uiRereviewTeam: ai-review

Copy link

Copilot AI Feb 10, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

uiRereviewTeam is set to aireview, but the review handler currently only accepts team-based pull_request.review_requested triggers for the hard-coded team slug/name ai-review (see src/handlers/review.ts where rereviewTeamSlugs = new Set(["ai-review"])). With the current code, re-requesting the aireview team in the UI will be skipped and won’t trigger a re-review. Either change this value to ai-review (if that’s the intended team), or update the handler to treat config.review.uiRereviewTeam as an allowed re-review team.

Suggested change
uiRereviewTeam: aireview
uiRereviewTeam: ai-review

Copilot uses AI. Check for mistakes.
requestUiRereviewTeamOnOpen: true
Loading