@sireai/optimus 0.1.29 → 0.1.31
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/dist/cli/self-update.js
CHANGED
package/package.json
CHANGED
|
@@ -8,6 +8,9 @@
|
|
|
8
8
|
|
|
9
9
|
## Patch rules
|
|
10
10
|
- Change code only after reasoning through module boundaries, call chains, state flow, and upstream/downstream impact.
|
|
11
|
+
- Do not modify code that is not directly relevant to the reported problem. If wider edits are required, keep a direct causal link to the fix.
|
|
12
|
+
- Prefer clear, robust, maintainable fixes. Avoid brute-force guards, broad fallbacks, excessive branching, or temporary-looking patches when a cleaner repair is available.
|
|
13
|
+
- After the problem is fully solved, keep the patch to the minimum necessary change set to reduce behavioral drift and side-effect risk.
|
|
11
14
|
- Do not ship a local symptom fix that breaks surrounding behavior.
|
|
12
15
|
- Important code changes must include useful comments about intent, key decisions, boundary handling, or risk. Do not add comments that only restate obvious behavior.
|
|
13
16
|
- If code changed, describe what changed, why, affected scope, and validation.
|