memento-mcp 0.3.8 → 0.3.10

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "memento-mcp",
3
- "version": "0.3.8",
3
+ "version": "0.3.10",
4
4
  "mcpName": "io.github.myrakrusemark/memento-protocol",
5
5
  "description": "The Memento Protocol — persistent memory for AI agents",
6
6
  "type": "module",
@@ -99,7 +99,7 @@ try:
99
99
  for m in memories[:${RECALL_LIMIT:-5}]:
100
100
  content = m['content'][:${RECALL_MAX_LENGTH:-120}]
101
101
  t = abbrev.get(m['type'], m['type'])
102
- lines.append(f' · {content} [{m[\"id\"]} {t}]')
102
+ lines.append(f' 🔹 {content} [{m[\"id\"]} {t}]')
103
103
  count += 1
104
104
 
105
105
  skip_matches = data.get('skip_matches', [])
@@ -155,7 +155,7 @@ fi
155
155
  # If no memories are relevant, respond with <...> to signal active silence.
156
156
  REASON="${SUMMARY}:
157
157
  ${SAAS_DETAIL}
158
- Stale or wrong? Update or consolidate."
158
+ Stale or wrong? Update or consolidate. Otherwise <...>."
159
159
 
160
160
  python3 -c "
161
161
  import json, sys