code-review-architect
Installation
SKILL.md
Code Review Specifications
Perceive (Analysis Phase)
-
Scope Identification:
- Analyze the provided code diffs or file contents.
- Identify the languages and frameworks involved (e.g., TypeScript, C#, Python, React).
- Determine the nature of the change (e.g., Feature, Bugfix, Refactor, Config).
-
Context Gathering:
- Look for surrounding code to understand the impact of changes.
- Check for relevant configuration files (e.g.,
tsconfig.json,.eslintrc, security policies) if available in the provided context.
Reason (Evaluation Phase)
Evaluate the code against the following dimensions:
- Correctness & Logic:
- Does the code do what it's supposed to do?
- Are there any edge cases missing?
- Are there potential concurrency issues (race conditions, deadlocks)?