@iamdevlinph/codex-kit 1.1.5 → 1.1.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.
|
@@ -89,9 +89,12 @@ conditional procedures into validated project skills.
|
|
|
89
89
|
- Work within imperfect architecture. If it prevents safe completion, stop,
|
|
90
90
|
explain the limitation, propose the smallest viable design change, and wait
|
|
91
91
|
for approval. Escalate blockers instead of bypassing them.
|
|
92
|
-
-
|
|
93
|
-
|
|
94
|
-
|
|
92
|
+
- Keep identical configuration and behavior in one source of truth at the
|
|
93
|
+
narrowest shared scope. Reuse that owner across callers or features; create a
|
|
94
|
+
separate implementation or instance only when scope, lifecycle, or behavior
|
|
95
|
+
genuinely differs. Reuse existing constants, schemas, enums, shared types,
|
|
96
|
+
and components before creating duplicates. Add reusable domain values at
|
|
97
|
+
their existing source of truth instead of scattering magic strings.
|
|
95
98
|
- Replace numeric literals that encode domain rules, limits, durations, units,
|
|
96
99
|
or protocol values with descriptively named constants. Universally obvious
|
|
97
100
|
structural values, such as basic indexes or empty-state values, may remain
|