-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCODEOWNERS
More file actions
90 lines (79 loc) · 4.04 KB
/
Copy pathCODEOWNERS
File metadata and controls
90 lines (79 loc) · 4.04 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# CODEOWNERS — single source of truth for required reviewers.
#
# GitHub interprets this file per branch-protection ruleset. Any path match
# below triggers a code-owner review request on pull requests that touch
# matching files. Order matters: later rules win.
#
# Docs: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
# -----------------------------------------------------------------------------
# Default ownership
# -----------------------------------------------------------------------------
* @neuron7xLab
# -----------------------------------------------------------------------------
# Core research & signal layer
# -----------------------------------------------------------------------------
/core/indicators/ @neuron7xLab
/core/kuramoto/ @neuron7xLab
/core/physics/ @neuron7xLab
/core/phase/ @neuron7xLab
/core/neuro/ @neuron7xLab
/analytics/ @neuron7xLab
# -----------------------------------------------------------------------------
# Execution, risk, and live trading — elevated scrutiny
# -----------------------------------------------------------------------------
/execution/ @neuron7xLab
/core/risk_monitoring/ @neuron7xLab
/core/compliance/ @neuron7xLab
/core/security/ @neuron7xLab
/runtime/ @neuron7xLab
/tacl/ @neuron7xLab
# -----------------------------------------------------------------------------
# Data pipelines & feature store
# -----------------------------------------------------------------------------
/core/data/ @neuron7xLab
/core/events/ @neuron7xLab
# -----------------------------------------------------------------------------
# Backtesting & simulation
# -----------------------------------------------------------------------------
/backtest/ @neuron7xLab
# -----------------------------------------------------------------------------
# Observability & infrastructure
# -----------------------------------------------------------------------------
/observability/ @neuron7xLab
/deploy/ @neuron7xLab
/infra/ @neuron7xLab
/helm/ @neuron7xLab
/ci/ @neuron7xLab
# -----------------------------------------------------------------------------
# Native acceleration layer
# -----------------------------------------------------------------------------
/rust/ @neuron7xLab
# -----------------------------------------------------------------------------
# Frontend & UI
# -----------------------------------------------------------------------------
/apps/web/ @neuron7xLab
/ui/ @neuron7xLab
# -----------------------------------------------------------------------------
# Tests
# -----------------------------------------------------------------------------
/tests/ @neuron7xLab
# -----------------------------------------------------------------------------
# Documentation & governance
# -----------------------------------------------------------------------------
/docs/ @neuron7xLab
/CHANGELOG.md @neuron7xLab
/CITATION.cff @neuron7xLab
/CODE_OF_CONDUCT.md @neuron7xLab
/CONTRIBUTING.md @neuron7xLab
/SECURITY.md @neuron7xLab
/README.md @neuron7xLab
# -----------------------------------------------------------------------------
# CI / release infrastructure — most sensitive path
# -----------------------------------------------------------------------------
/.github/ @neuron7xLab
/.github/workflows/ @neuron7xLab
/.github/BRANCH_PROTECTION_MAIN.md @neuron7xLab
/.github/REQUIRED_CHECKS_MAIN.md @neuron7xLab
/pyproject.toml @neuron7xLab
/requirements*.lock @neuron7xLab
/Makefile @neuron7xLab