From 9d9e7cd0ee644c54e5ffc397daa7cdb15b049914 Mon Sep 17 00:00:00 2001 From: Kevin Turcios Date: Thu, 23 Apr 2026 02:55:05 -0500 Subject: [PATCH] chore: add CODEOWNERS based on git history Assigns per-directory code ownership to current org members based on full commit history analysis, so PRs automatically request reviews from the right people. --- .github/CODEOWNERS | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .github/CODEOWNERS diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 000000000..8f67fd9ea --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,38 @@ +# Default fallback +* @KRRT7 + +# Java +/codeflash/languages/java/ @mashraf-222 @HeshamHM28 @misrasaurabh1 + +# JavaScript / TypeScript +/codeflash/languages/javascript/ @Saga4 @mohammedahmed18 @KRRT7 + +# Python language support +/codeflash/languages/python/ @KRRT7 + +# Core pipeline +/codeflash/optimization/ @KRRT7 @aseembits93 @misrasaurabh1 +/codeflash/verification/ @KRRT7 @misrasaurabh1 +/codeflash/benchmarking/ @KRRT7 +/codeflash/discovery/ @KRRT7 @misrasaurabh1 + +# CLI & setup +/codeflash/cli_cmds/ @KRRT7 @misrasaurabh1 + +# LSP +/codeflash/lsp/ @mohammedahmed18 + +# API +/codeflash/api/ @KRRT7 @aseembits93 + +# Tracing & entry points +/codeflash/tracing/ @misrasaurabh1 @KRRT7 +/codeflash/main.py @misrasaurabh1 @KRRT7 +/codeflash/tracer.py @misrasaurabh1 @KRRT7 + +# Shared utilities +/codeflash/code_utils/ @KRRT7 @aseembits93 @misrasaurabh1 +/codeflash/models/ @KRRT7 + +# CI / workflows +/.github/ @KRRT7