@trlc/super-memory 1.3.3 → 1.3.5

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 (2) hide show
  1. package/dist/index.js +4 -4
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -22,7 +22,7 @@ import { homedir } from 'os';
22
22
  import { join } from 'path';
23
23
  import readline from 'readline';
24
24
  const CONVEX_URL = 'https://clear-lemming-473.convex.cloud';
25
- const VERSION = '1.3.3';
25
+ const VERSION = '1.3.5';
26
26
  // Paths
27
27
  const getBaseDir = () => join(homedir(), '.openclaw', 'workspace');
28
28
  const getMemoryDir = () => join(getBaseDir(), 'memory');
@@ -242,7 +242,7 @@ async function cmdInit(args) {
242
242
  `);
243
243
  }
244
244
  // Create SKILL.md for OpenClaw integration
245
- const skillsDir = join(homedir(), '.openclaw', 'skills', 'super-memory');
245
+ const skillsDir = join(getBaseDir(), 'skills', 'super-memory');
246
246
  if (!existsSync(skillsDir)) {
247
247
  mkdirSync(skillsDir, { recursive: true });
248
248
  }
@@ -348,8 +348,8 @@ You: [runs] super-memory save "User dislikes cilantro" --category=discovery
348
348
  super-memory status
349
349
 
350
350
  🤖 OpenClaw Integration:
351
- Skill installed: ~/.openclaw/skills/super-memory/SKILL.md
352
- Add to AGENTS.md: See ~/.openclaw/skills/super-memory/SKILL.md
351
+ Skill installed: ~/.openclaw/workspace/skills/super-memory/SKILL.md
352
+ Add to AGENTS.md: See ~/.openclaw/workspace/skills/super-memory/SKILL.md
353
353
 
354
354
  🦞 Welcome to The Red Lobster Cartel!
355
355
  `);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trlc/super-memory",
3
- "version": "1.3.3",
3
+ "version": "1.3.5",
4
4
  "description": "Super Memory CLI - AI-powered persistent memory by The Red Lobster Cartel",
5
5
  "main": "dist/index.js",
6
6
  "bin": {