molymemo 1.0.39 → 1.0.40
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
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: molymemo-suggestions
|
|
3
|
+
description: "Check molymemo/molymemo-suggestions.json for relevant context whenever the user receives AI suggestions or asks about topics from their AI chat history."
|
|
4
|
+
globs:
|
|
5
|
+
- "molymemo/molymemo-suggestions.json"
|
|
6
|
+
- "molymemo/chat-data/**"
|
|
7
|
+
- "memory/molymemo/**"
|
|
8
|
+
alwaysApply: true
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
# MolyMemo Suggestions Skill
|
|
12
|
+
|
|
13
|
+
MolyMemo syncs the user's AI chat sessions (ChatGPT, Gemini, DeepSeek, etc.) and generates proactive suggestions for what OpenClaw can do next.
|
|
14
|
+
|
|
15
|
+
## When to Use
|
|
16
|
+
|
|
17
|
+
- Any message or event containing "MolyMemo"
|
|
18
|
+
- User asks about or wants to act on a suggestion
|
|
19
|
+
- Topic may have been discussed in the user's AI chat history
|
|
20
|
+
|
|
21
|
+
## How to Deliver Suggestions
|
|
22
|
+
|
|
23
|
+
1. Read `molymemo/molymemo-suggestions.json` for full details
|
|
24
|
+
2. If more context is needed, read `molymemo/chat-data/{context[].sessionPath}`
|
|
25
|
+
3. Present with "📋 **MolyMemo**" header, explain rationale, ask if user wants to act
|
|
26
|
+
|
|
27
|
+
## How to Act on a Suggestion
|
|
28
|
+
|
|
29
|
+
1. Match the suggestion in `molymemo/molymemo-suggestions.json`
|
|
30
|
+
2. Use `context[].summary` as primary context; read the full session file if needed
|
|
31
|
+
3. Use `memory_search` for related insights from `memory/molymemo/`
|