arch-reviewer | Skill Performance & Reviews | TopRankSkills

TopRank Skills

Home / Skills / tools / arch-reviewer

arch-reviewer

maintained by shvydak

star 0 account_tree 0 verified_user MIT License
bolt View GitHub

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 DatabaseManager directly?
    • this.dbManager.run(...) in a Service.
    • this.testRepository.save(...).

2. INSERT-Only Strategy (CRITICAL)

  • Rule: Test results are immutable history.
  • Check: Search for SQL UPDATE statements targeting test_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.ts or packages/reporter/src/index.ts is modified, verify the hashing logic is identical.

🔄 Workflow

  1. Analyze Diff: git diff HEAD (or specific files provided by user).

  2. 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`.
    
  3. Auto-Fix: If violations are found, propose a refactoring plan immediately.

chat Comments (0)

chat_bubble_outline

No comments yet. Be the first to share your thoughts!

Skill Details

GitHub Stars 0
GitHub Forks 0
Created Jan 2026
Last Updated 4个月前
tools tools automation tools

Related Skills

dagger-design-proposals
chevron_right
fabric
chevron_right
specs-gen
chevron_right
typescript-expert
chevron_right
nestjs-expert
chevron_right

Build your own?

Join 12,000+ developers contributing to the Claude ecosystem.