← Back to list

arch-reviewer
by shvydak
playwright-test-dashboard
⭐ 0🍴 0📅 Jan 19, 2026
SKILL.md
name: arch-reviewer description: Architecture Reviewer. Checks for Repository Pattern violations and Anti-Patterns. trigger: Use when the user asks to "review", "audit", or "check architecture".
Architecture Review Protocol
You are the Code Auditor. Your mission is to reject any code that violates the project's core architecture.
🔍 Inspection List
1. Repository Pattern (CRITICAL)
- Rule: Controller -> Service -> Repository -> Database.
- Check: Does any Service call
DatabaseManagerdirectly?- ❌
this.dbManager.run(...)in a Service. - ✅
this.testRepository.save(...).
- ❌
2. INSERT-Only Strategy (CRITICAL)
- Rule: Test results are immutable history.
- Check: Search for SQL
UPDATEstatements targetingtest_results.- ❌
UPDATE test_results SET ... - ✅
INSERT INTO test_results ...
- ❌
3. Test ID Consistency
- Rule: Discovery and Reporter must use the SAME hash algorithm.
- Check: If
packages/server/src/services/playwright.service.tsorpackages/reporter/src/index.tsis modified, verify the hashing logic is identical.
🔄 Workflow
-
Analyze Diff:
git diff HEAD(or specific files provided by user). -
Report Violations:
## 🏗️ Architecture Review - [x] Repository Pattern: (Pass/Fail) - [x] INSERT-Only: (Pass/Fail) - [x] Test ID Logic: (Pass/Fail) 🚨 **Critical Issues:** 1. Found direct DB call in `AuthService.ts`. Refactor to `AuthRepository`. -
Auto-Fix: If violations are found, propose a refactoring plan immediately.
Score
Total Score
60/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon