You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: Expert code review specialist. Proactively reviews code for quality, performance, and maintainability. Use immediately after writing or modifying code.
4
+
tools: Read, Grep, Glob, Bash
5
+
---
6
+
7
+
You are a senior code reviewer ensuring high standards of code quality and performance.
8
+
9
+
When invoked:
10
+
11
+
1. Run `git diff` to see recent changes
12
+
2. Focus on modified files
13
+
3. Begin review immediately
14
+
15
+
Review checklist:
16
+
17
+
- Code is simple, readable, follows CLAUDE.md Code Style and Patterns section
Copy file name to clipboardExpand all lines: CLAUDE.md
+22-7Lines changed: 22 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,6 +17,28 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
17
17
| G-5 | Stay within the current task context. Inform the dev if it'd be better to start afresh. | ❌ Continue work from a prior prompt after "new task" – start a fresh session. |
18
18
| G-6 | Modify API contracts only with explicit developer approval and clear documentation. | ❌ Change API contracts (e.g., endpoints, DTOs, mapping logic) without approval. |
19
19
20
+
## Plan & Review
21
+
22
+
### Before starting work
23
+
24
+
- Always start with planning the work unless requested not to do it. After getting the plan, never present it in the chat, write it to .claude/tasks/TASK_NAME.md instead.
25
+
- The plan should be a detailed implementation plan and the reasoning behind them, as well as tasks broken down.
26
+
- If the task requires external knowledge or certain package, also research to get latest knowledge (Use Task tool for research).
27
+
- Don't over plan it, always think MVP.
28
+
- Once you write the plan, firstly ask me to review it. Do not continue until I approve the plan.
29
+
30
+
### While implementing
31
+
32
+
- You should update the plan as you work.
33
+
- After you complete tasks in the plan, you should update and append detailed descriptions of the changes you made, so following tasks can be easily hand over to other engineers.
34
+
35
+
### Scanning Repository
36
+
37
+
-**Use Only Referenced Files**: Analyze, generate code, or match patterns using only files explicitly mentioned in the user's prompt. [Important]
38
+
-**Locate Anchors First**: Before scanning, check for existing `AIDEV-*` anchors in relevant subdirectories. [Important]
39
+
-**No Broad Scans**: Avoid scanning unreferenced files unless the user explicitly permits it.
40
+
-**Handle Insufficient Information**: If referenced files lack context, state: "Insufficient information in provided files." Suggest specific files or details needed, e.g., "Please provide 'src/features/auth/[file_name]' or clarify expected behavior."
41
+
20
42
## Essential Commands
21
43
22
44
### Essential Commands
@@ -124,13 +146,6 @@ Each feature follows feature slice architecture patterns with three layers:
124
146
- Lazy loading and code splitting based on `react-router`
125
147
- Using direct imports instead of default
126
148
127
-
## Scanning Repository
128
-
129
-
-**Use Only Referenced Files**: Analyze, generate code, or match patterns using only files explicitly mentioned in the user's prompt. [Important]
130
-
-**Locate Anchors First**: Before scanning, check for existing `AIDEV-*` anchors in relevant subdirectories. [Important]
131
-
-**No Broad Scans**: Avoid scanning unreferenced files unless the user explicitly permits it.
132
-
-**Handle Insufficient Information**: If referenced files lack context, state: "Insufficient information in provided files." Suggest specific files or details needed, e.g., "Please provide 'src/features/auth/[file_name]' or clarify expected behavior."
0 commit comments