-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjudges.json
More file actions
142 lines (142 loc) · 4.44 KB
/
Copy pathjudges.json
File metadata and controls
142 lines (142 loc) · 4.44 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
[
{
"name": "Strict Critic",
"type": "strict",
"review_guide": "strict.md",
"title_male": "The Strict Critic",
"title_female": "The Strict Critic",
"emoji_male": "👨️",
"emoji_female": "👩⚖️",
"description": "High standards, catches every mistake",
"focus": ["Architecture", "Error Handling", "Security", "Code Quality"],
"vote_weight": 1.7,
"model": "sonnet",
"gemini_model": "pro"
},
{
"name": "Supportive Mentor",
"type": "supportive",
"review_guide": "supportive.md",
"title_male": "The Supportive Mentor",
"title_female": "The Supportive Mentor",
"emoji_male": "👨🏫",
"emoji_female": "👩🏫",
"description": "Finds the positive, but honestly points out issues",
"focus": ["Growth Potential", "Good Practices", "Learning"],
"vote_weight": 1.0,
"model": "haiku",
"gemini_model": "flash"
},
{
"name": "Detail-Oriented Reviewer",
"type": "detail_oriented",
"review_guide": "detail.md",
"title_male": "The Detail-Oriented Reviewer",
"title_female": "The Detail-Oriented Reviewer",
"emoji_male": "🔍",
"emoji_female": "🔎",
"description": "Notices every detail, perfectionist",
"focus": ["Code Style", "Documentation", "Tests", "DRY", "Naming"],
"vote_weight": 1.2,
"model": "haiku",
"gemini_model": "flash"
},
{
"name": "Creative Engineer",
"type": "creative",
"review_guide": "creative.md",
"title_male": "The Creative Engineer",
"title_female": "The Creative Engineer",
"emoji_male": "🎨",
"emoji_female": "🖌️",
"description": "Values elegant and innovative solutions",
"focus": ["Creativity", "Performance", "Elegance"],
"vote_weight": 1.0,
"model": "haiku",
"gemini_model": "flash"
},
{
"name": "Security Expert",
"type": "security_focused",
"review_guide": "security.md",
"title_male": "Security Expert",
"title_female": "Security Expert",
"emoji_male": "🛡️",
"emoji_female": "🔒",
"description": "Focused on vulnerabilities and code security",
"focus": ["Vulnerabilities", "Input Validation", "Authentication", "Encryption"],
"vote_weight": 2.0,
"model": "sonnet",
"gemini_model": "pro"
},
{
"name": "Performance Optimizer",
"type": "performance_focused",
"review_guide": "performance.md",
"title_male": "Performance Optimizer",
"title_female": "Performance Optimizer",
"emoji_male": "⚡",
"emoji_female": "🚀",
"description": "Finds bottlenecks and inefficient code",
"focus": ["Algorithms", "Memory", "CPU", "Scalability"],
"vote_weight": 1.5,
"model": "sonnet",
"gemini_model": "pro"
},
{
"name": "Testing Expert",
"type": "testing_expert",
"review_guide": "testing.md",
"title_male": "Testing Expert",
"title_female": "Testing Expert",
"emoji_male": "🧪",
"emoji_female": "🔬",
"description": "Checks test quality and coverage",
"focus": ["Unit Tests", "Integration Tests", "Edge Cases", "Mocking"],
"vote_weight": 1.6,
"model": "sonnet",
"gemini_model": "pro"
},
{
"name": "Architecture Guru",
"type": "architecture_guru",
"review_guide": "architecture.md",
"title_male": "Architecture Guru",
"title_female": "Architecture Guru",
"emoji_male": "🏛️",
"emoji_female": "🏗️",
"description": "Evaluates system architecture and design",
"focus": ["SOLID", "Design Patterns", "Modularity", "Coupling"],
"vote_weight": 1.8,
"model": "sonnet",
"gemini_model": "pro"
},
{
"name": "UX Advocate",
"type": "user_experience",
"review_guide": "ux.md",
"title_male": "User Advocate",
"title_female": "User Advocate",
"emoji_male": "👤",
"emoji_female": "👥",
"description": "Looks at code from end-user perspective",
"focus": ["API Design", "Error Messages", "API Docs", "UX"],
"vote_weight": 1.1,
"model": "haiku",
"gemini_model": "flash"
},
{
"name": "Maintenance Focus",
"type": "maintenance_focused",
"review_guide": "maintenance.md",
"title_male": "Maintenance Advocate",
"title_female": "Maintenance Advocate",
"emoji_male": "🔧",
"emoji_female": "🛠️",
"description": "Values code that is easy to maintain and extend",
"focus": ["Readability", "Refactoring", "Tech Debt", "Legacy"],
"vote_weight": 1.2,
"model": "haiku",
"gemini_model": "flash"
}
]