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
Active verification with comprehensive code review that immediately fixes issues as discovered, ensuring all tests pass, code quality is high, and system works end-to-end.
16
16
@@ -86,7 +86,64 @@ This is a serious issue - the implementation is incomplete.
86
86
87
87
4.**STOP** - Do not continue verification
88
88
89
-
### Step 4: Call Chain Analysis
89
+
### Step 4: Rules Compliance Audit
90
+
91
+
**MANDATORY: Verify work complies with ALL project rules before proceeding.**
92
+
93
+
#### Process
94
+
95
+
1.**Discover all rules:**
96
+
```
97
+
Glob(".claude/rules/standard/*.md") → Read each file
98
+
Glob(".claude/rules/custom/*.md") → Read each file
99
+
```
100
+
101
+
2.**For each rule file:**
102
+
- Read the entire file
103
+
- Extract the key requirements and constraints
104
+
- Check if each requirement was followed during implementation
105
+
- Note any violations
106
+
107
+
3.**Classify violations:**
108
+
-**Fixable Now:** Can be remediated immediately (run missing commands, apply fixes)
109
+
-**Structural:** Cannot be fixed retroactively (missed TDD cycle, architectural issues)
110
+
111
+
4.**Remediate:** Execute fixes for all fixable violations before continuing
0 commit comments