claude-smart 0.2.20 → 0.2.21
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/README.md +7 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
<img src="https://img.shields.io/badge/License-Apache%202.0-blue.svg" alt="License">
|
|
14
14
|
</a>
|
|
15
15
|
<a href="plugin/pyproject.toml">
|
|
16
|
-
<img src="https://img.shields.io/badge/version-0.2.
|
|
16
|
+
<img src="https://img.shields.io/badge/version-0.2.21-green.svg" alt="Version">
|
|
17
17
|
</a>
|
|
18
18
|
<a href="plugin/pyproject.toml">
|
|
19
19
|
<img src="https://img.shields.io/badge/python-%3E%3D3.12-brightgreen.svg" alt="Python">
|
|
@@ -24,6 +24,9 @@
|
|
|
24
24
|
<a href="#quick-start">
|
|
25
25
|
<img src="https://img.shields.io/badge/llm-claude%20code%20cli-purple.svg" alt="LLM">
|
|
26
26
|
</a>
|
|
27
|
+
<a href="https://discord.gg/Jbft3jPn">
|
|
28
|
+
<img src="https://img.shields.io/badge/Discord-Join%20Chat-5865F2?logo=discord&logoColor=white" alt="Discord">
|
|
29
|
+
</a>
|
|
27
30
|
</p>
|
|
28
31
|
|
|
29
32
|
<p align="center">
|
|
@@ -58,9 +61,9 @@ Four ways this changes what Claude Code can do for you:
|
|
|
58
61
|
|
|
59
62
|
- 💡 **Stop repeating the same mistakes:** Produces actionable playbooks Claude can follow next time; memory only records what happened.
|
|
60
63
|
|
|
61
|
-
> *Example:*
|
|
62
|
-
> **Memory:** “
|
|
63
|
-
> **Learning:** “
|
|
64
|
+
> *Example:* a deploy fails after Claude bumps `prisma` from 5.x to 6.0; you tell it to roll back because 6.0 breaks nested writes in your order flow.<br>
|
|
65
|
+
> **Memory:** “deploy broke after prisma bump; user rolled back”<br>
|
|
66
|
+
> **Learning:** “treat major-version bumps of ORMs/DB drivers as breaking — verify with integration tests, not just unit tests”
|
|
64
67
|
|
|
65
68
|
- 🚀 **Start from the optimized path:** Preserves and optimizes execution paths so Claude can reuse what already works.
|
|
66
69
|
> *Example:* Claude spends several iterations trying to start the local dev environment before discovering that this repo requires `pnpm dev:all` instead of the usual `npm run dev`.<br>
|