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
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
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.
|
|
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",
|