waypoint-codex 0.10.5 → 0.10.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -19,6 +19,7 @@ Find code that works but should be refactored. You're not looking for bugs (`cod
|
|
|
19
19
|
|
|
20
20
|
Critical rules:
|
|
21
21
|
You set the standard. Don't learn quality standards from existing code - the codebase may already be degraded. Apply good engineering judgment regardless of what exists.
|
|
22
|
+
- Read full files, not fragments.
|
|
22
23
|
|
|
23
24
|
Explore what exists. Search for existing helpers, utilities, and patterns that could be reused instead of duplicated.
|
|
24
25
|
|
|
@@ -69,6 +70,10 @@ Focus on:
|
|
|
69
70
|
- their imports
|
|
70
71
|
- one level out when needed to validate a pattern
|
|
71
72
|
|
|
73
|
+
Review method:
|
|
74
|
+
- For each file you analyze, read the full file before forming a maintainability judgment.
|
|
75
|
+
- Use the diff or review slice to decide where to start, not as a substitute for file reading.
|
|
76
|
+
|
|
72
77
|
Output:
|
|
73
78
|
Return findings directly as structured text.
|
|
74
79
|
|