@trlc/super-memory 1.3.3 → 1.3.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/dist/index.js +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -242,7 +242,7 @@ async function cmdInit(args) {
|
|
|
242
242
|
`);
|
|
243
243
|
}
|
|
244
244
|
// Create SKILL.md for OpenClaw integration
|
|
245
|
-
const skillsDir = join(
|
|
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
|
`);
|