claude-mem 13.5.5 → 13.6.0

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-mem",
3
- "version": "13.5.5",
3
+ "version": "13.6.0",
4
4
  "description": "Memory compression system for Claude Code - persist context across sessions",
5
5
  "author": {
6
6
  "name": "Alex Newman",
package/README.md CHANGED
@@ -414,6 +414,8 @@ open/commercial boundary.
414
414
 
415
415
  ---
416
416
 
417
- ### What About $CMEM?
417
+ ### What About CMEM?
418
418
 
419
- $CMEM is a solana token created by a 3rd party without Claude-Mem's prior consent, but officially embraced by the creator of Claude-Mem (Alex Newman, @thedotmack). The token acts as a community catalyst for growth and a vehicle for bringing real-time agent data to the developers and knowledge workers that need it most. $CMEM: 2TsmuYUrsctE57VLckZBYEEzdokUF8j8e1GavekWBAGS
419
+ CMEM is a token created by a 3rd party but officially embraced by the creator of Claude-Mem (Alex Newman, @thedotmack). The token acts as a community catalyst for growth and a vehicle for bringing CMEM to the developers and knowledge workers that need it most.
420
+
421
+ Official BASE CA: 0x76b1967eec0ccaeb001bbbb2b40dc4badba31ba3
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Claude-Mem - TypeScript Declarations
3
+ *
4
+ * Re-exports SDK utilities for convenience.
5
+ */
6
+
7
+ export * from './sdk/index.js';
package/dist/index.js ADDED
@@ -0,0 +1,8 @@
1
+ /**
2
+ * Claude-Mem - Main Package Entry Point
3
+ *
4
+ * This re-exports the SDK utilities for convenience.
5
+ * For full SDK access, use: import { ... } from 'claude-mem/sdk'
6
+ */
7
+
8
+ export * from './sdk/index.js';