@trlc/super-memory 1.2.0 β†’ 1.3.1

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.
Files changed (3) hide show
  1. package/README.md +75 -18
  2. package/dist/index.js +3 -28
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -2,12 +2,12 @@
2
2
 
3
3
  **Never forget a conversation again.**
4
4
 
5
- AI-powered persistent memory with cloud sync. Works with OpenClaw and any LLM workflow.
5
+ AI-powered persistent memory with end-to-end encryption and cloud sync. Works with OpenClaw and any LLM workflow.
6
6
 
7
7
  ## Installation
8
8
 
9
9
  ```bash
10
- npm install -g @redlobstercartel/super-memory
10
+ npm install -g @trlc/super-memory
11
11
  ```
12
12
 
13
13
  ## Quick Start
@@ -16,17 +16,20 @@ npm install -g @redlobstercartel/super-memory
16
16
  # Initialize with your license key
17
17
  super-memory init --license=XXXX-XXXX-XXXX-XXXX
18
18
 
19
- # Save a memory
19
+ # Save a memory (encrypted locally + cloud)
20
20
  super-memory save "Fixed CORS by adding proxy middleware" --category=problem
21
21
 
22
22
  # Search your memories
23
23
  super-memory search "cors error"
24
24
 
25
- # Sync across devices
25
+ # Sync across devices (encrypted)
26
26
  super-memory sync
27
27
 
28
28
  # Check status
29
29
  super-memory status
30
+
31
+ # Open local dashboard
32
+ super-memory dashboard
30
33
  ```
31
34
 
32
35
  ## Commands
@@ -34,10 +37,46 @@ super-memory status
34
37
  | Command | Description |
35
38
  |---------|-------------|
36
39
  | `init` | Initialize with license key |
37
- | `save` | Save a memory to cloud |
40
+ | `save` | Save a memory (local + encrypted cloud) |
38
41
  | `search` | Search memories semantically |
39
- | `sync` | Sync with cloud storage |
40
- | `status` | Show license and stats |
42
+ | `sync` | Sync with cloud storage (encrypted) |
43
+ | `status` | Show license, local/cloud stats, sync status |
44
+ | `dashboard` | Open local web dashboard |
45
+ | `index-update` | Update MEMORY_INDEX.md + auto-curate |
46
+ | `curate` | Auto-curate memories to MEMORY.md |
47
+ | `flush` | Save critical context before compaction |
48
+ | `maintenance` | Run weekly review and get suggestions |
49
+
50
+ ## Web Dashboard
51
+
52
+ Access your memories from any device:
53
+
54
+ **https://redlobstercartel.ai/super-memory/dashboard**
55
+
56
+ Features:
57
+ - πŸ” Secure login with session tokens (24h)
58
+ - πŸ”’ End-to-end encryption (AES-256)
59
+ - πŸ” Search and filter by category
60
+ - πŸ“Š Activity log and security summary
61
+ - 🌐 Access from any device
62
+
63
+ ## Security & Privacy
64
+
65
+ ### End-to-End Encryption
66
+
67
+ - **AES-256-CBC** encryption for all cloud data
68
+ - **PBKDF2** key derivation from your license key
69
+ - **Client-side encryption**: Data encrypted before transmission
70
+ - **Zero-knowledge**: We cannot read your memories
71
+
72
+ ### Security Features
73
+
74
+ - Rate limiting: 60 requests/minute
75
+ - Memory size limit: 10KB per entry
76
+ - Memory count limit: 1,000 per user
77
+ - Session tokens with 24h expiration
78
+ - Complete audit logging
79
+ - Multi-tenant isolation
41
80
 
42
81
  ## Categories
43
82
 
@@ -48,18 +87,30 @@ super-memory status
48
87
  | `decision` | 🟀 | Important decisions made |
49
88
  | `discovery` | 🟣 | New learnings, insights |
50
89
 
51
- ## Pricing
90
+ ## Architecture
91
+
92
+ ```
93
+ β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
94
+ β”‚ Local │────▢│ Encrypted │◀────│ Web β”‚
95
+ β”‚ (.md) β”‚ β”‚ Cloud β”‚ β”‚ Dashboard β”‚
96
+ β”‚ │◀────│ (Convex) │────▢│ β”‚
97
+ β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
98
+ β”‚ β”‚ β”‚
99
+ β–Ό β–Ό β–Ό
100
+ Always accessible Encrypted at rest Decrypted in
101
+ (offline capable) (zero-knowledge) browser only
102
+ ```
52
103
 
53
- | Plan | Price |
54
- |------|-------|
55
- | Monthly | $19/month |
56
- | Lifetime | $190 one-time |
104
+ ## Pricing
57
105
 
58
- Both plans include unlimited memories and cloud sync.
106
+ | Plan | Price | Features |
107
+ |------|-------|----------|
108
+ | Monthly | $19/month | Unlimited memories, cloud sync, dashboard |
109
+ | Lifetime | $190 one-time | Unlimited memories, cloud sync, dashboard, all future updates |
59
110
 
60
111
  ## OpenClaw Integration
61
112
 
62
- Super Memory is designed to work with OpenClaw. After installing, you can use:
113
+ Super Memory is designed to work with OpenClaw:
63
114
 
64
115
  ```
65
116
  @super-memory save "your memory" --category=discovery
@@ -67,12 +118,18 @@ Super Memory is designed to work with OpenClaw. After installing, you can use:
67
118
  @super-memory sync
68
119
  ```
69
120
 
121
+ ## Documentation
122
+
123
+ - πŸ“– Installation Guide: https://redlobstercartel.ai/super-memory/install
124
+ - 🌐 Web Dashboard: https://redlobstercartel.ai/super-memory/dashboard
125
+ - 🦞 Landing Page: https://redlobstercartel.ai/super-memory
126
+
70
127
  ## Links
71
128
 
72
- - 🌐 Website: https://theredlobstercartel.com/super-memory
73
- - πŸ“§ Support: support@theredlobstercartel.com
74
- - 🐦 Twitter: @RedLobsterCartel
129
+ - 🌐 Website: https://redlobstercartel.ai/super-memory
130
+ - πŸ“§ Support: support@redlobstercartel.ai
131
+ - πŸ“¦ npm: https://www.npmjs.com/package/@trlc/super-memory
75
132
 
76
133
  ---
77
134
 
78
- *🦞 The Red Lobster Cartel - Never forget a conversation again.*
135
+ *🦞 The Red Lobster Cartel - Never forget a conversation again.*
package/dist/index.js CHANGED
@@ -9,11 +9,9 @@
9
9
  * super-memory search "query term"
10
10
  * super-memory sync
11
11
  * super-memory status
12
- * super-memory dashboard [--port=8765] [--no-browser]
13
- * super-memory curate [--days=7] [--dry-run] ← NEW!
12
+ * super-memory curate [--days=7] [--dry-run]
14
13
  */
15
14
  import { execSync } from 'child_process';
16
- import { startDashboard } from './commands/dashboard.js';
17
15
  import { cmdIndexUpdate } from './commands/indexUpdate.js';
18
16
  import { cmdFlush } from './commands/flush.js';
19
17
  import { cmdMaintenance } from './commands/maintenance.js';
@@ -257,7 +255,6 @@ async function cmdInit(args) {
257
255
  super-memory search "query"
258
256
  super-memory sync
259
257
  super-memory status
260
- super-memory dashboard
261
258
 
262
259
  🦞 Welcome to The Red Lobster Cartel!
263
260
  `);
@@ -581,10 +578,6 @@ COMMANDS:
581
578
 
582
579
  status Show status and stats
583
580
 
584
- dashboard Open web dashboard
585
- --port=8765 Custom port
586
- --no-browser Don't auto-open browser
587
-
588
581
  index-update Update progressive MEMORY_INDEX.md (Layer 4)
589
582
  Also auto-curates to MEMORY.md
590
583
 
@@ -598,10 +591,6 @@ COMMANDS:
598
591
 
599
592
  categorize <id> Auto-categorize memory entry
600
593
 
601
- dashboard Open web dashboard
602
- --port=8765 Custom port
603
- --no-browser Don't auto-open browser
604
-
605
594
  help Show this help
606
595
 
607
596
  EXAMPLES:
@@ -610,22 +599,11 @@ EXAMPLES:
610
599
  super-memory search "cors error"
611
600
  super-memory sync
612
601
  super-memory status
613
- super-memory dashboard
614
- super-memory dashboard --port=3000 --no-browser
615
602
 
616
- WEBSITE: https://theredlobstercartel.com/super-memory
617
- SUPPORT: support@theredlobstercartel.com
603
+ WEBSITE: https://redlobstercartel.ai/super-memory
604
+ SUPPORT: support@redlobstercartel.ai
618
605
  `);
619
606
  }
620
- // COMMAND: dashboard
621
- async function cmdDashboard(args) {
622
- const portArg = args.find(arg => arg.startsWith('--port='))?.split('=')[1];
623
- const noBrowser = args.includes('--no-browser');
624
- await startDashboard({
625
- port: portArg ? parseInt(portArg, 10) : undefined,
626
- noBrowser,
627
- });
628
- }
629
607
  // Main
630
608
  async function main() {
631
609
  const args = process.argv.slice(2);
@@ -647,9 +625,6 @@ async function main() {
647
625
  case 'status':
648
626
  await cmdStatus(cmdArgs);
649
627
  break;
650
- case 'dashboard':
651
- await cmdDashboard(cmdArgs);
652
- break;
653
628
  case 'index-update':
654
629
  await cmdIndexUpdate(cmdArgs);
655
630
  break;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trlc/super-memory",
3
- "version": "1.2.0",
3
+ "version": "1.3.1",
4
4
  "description": "Super Memory CLI - AI-powered persistent memory by The Red Lobster Cartel",
5
5
  "main": "dist/index.js",
6
6
  "bin": {