claude-code-autoconfig 1.0.100 → 1.0.101
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,10 +17,15 @@ 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
|
-
|
|
22
|
-
|
|
23
|
-
|
|
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
|
|
27
|
+
|
|
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.
|
|
24
29
|
```
|
|
25
30
|
|
|
26
31
|
## After Applying
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-code-autoconfig",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.101",
|
|
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",
|