claude-code-autoconfig 1.0.101 → 1.0.102

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.
@@ -17,13 +17,13 @@ The file lives at `~/.claude/projects/{encoded-project-path}/memory/MEMORY.md` w
17
17
 
18
18
  ```markdown
19
19
  ## Debugging — Evidence Before Solutions
20
- NEVER guess the root cause and jump to coding a fix. Ask yourself: is the cause deterministic and verifiable from the error alone?
21
- - **Deterministic means**: stack trace, compile error, or type error — NOT "I read the code and I think I see the issue." Reading code paths and reasoning about what "should" happen is a GUESS, not evidence.
22
- - If deterministic: fix it directly.
23
- - If NOT deterministic (this includes most runtime bugs):
24
- 1. Add logging / check actual data first
25
- 2. Confirm root cause with evidence
26
- 3. Only then propose and implement a fix
20
+
21
+ **Never guess.** Before writing any fix, ask: do I have a stack trace, compile error, or type error that points directly to the problem?
22
+
23
+ - **Yes** Fix it directly.
24
+ - **No** → Stop. Add logging first, get real runtime data, confirm the cause, *then* fix.
25
+
26
+ "I read the code and I think I see the issue" is a guess, not evidence.
27
27
 
28
28
  **Circuit breaker — going in circles**: If the user reports your fix didn't solve the problem, STOP coding immediately. Add logging. No second guesses. Making another code change for the same symptom without new runtime evidence is going in circles.
29
29
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-code-autoconfig",
3
- "version": "1.0.101",
3
+ "version": "1.0.102",
4
4
  "description": "Intelligent, self-configuring setup for Claude Code. One command analyzes your project, configures Claude, and shows you what it did.",
5
5
  "author": "ADAC 1001 <info@adac1001.com>",
6
6
  "license": "MIT",