create-claude-cabinet 0.8.3 → 0.8.4
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/package.json
CHANGED
|
@@ -51,7 +51,15 @@ Memory types: `decision`, `lesson`, `preference`, `constraint`, `pattern`
|
|
|
51
51
|
|
|
52
52
|
Do NOT capture after every interaction. Capture when something worth
|
|
53
53
|
remembering actually happens. Most messages in a session produce nothing
|
|
54
|
-
worth storing.
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
54
|
+
worth storing.
|
|
55
|
+
|
|
56
|
+
Cadence scales with session length and discovery density. A short
|
|
57
|
+
focused session might produce 0-1 memories. A long session with
|
|
58
|
+
multiple discoveries, corrections, and decisions could produce 5-10+.
|
|
59
|
+
The right number is however many genuinely worth-remembering things
|
|
60
|
+
happened — no artificial cap.
|
|
61
|
+
|
|
62
|
+
Over-capturing degrades retrieval quality. The test: *"Would a future
|
|
63
|
+
session benefit from knowing this?"* If yes, capture it. If it's just
|
|
64
|
+
noise or ephemera, skip it. The debrief sweep catches anything
|
|
65
|
+
important that was missed during the session.
|