@ubundi/openclaw-cortex 2.8.1 → 2.8.2

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.
@@ -2,7 +2,7 @@
2
2
  "id": "openclaw-cortex",
3
3
  "name": "Cortex Memory",
4
4
  "description": "Long-term memory powered by Cortex — Auto-Recall, Auto-Capture, agent memory tools, and deduplication",
5
- "version": "2.8.1",
5
+ "version": "2.8.2",
6
6
  "configSchema": {
7
7
  "type": "object",
8
8
  "properties": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ubundi/openclaw-cortex",
3
- "version": "2.8.1",
3
+ "version": "2.8.2",
4
4
  "description": "OpenClaw plugin for Cortex memory — Auto-Recall, Auto-Capture, and agent memory tools",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
package/skill/SKILL.md CHANGED
@@ -1,6 +1,7 @@
1
1
  ---
2
2
  name: cortex-memory
3
3
  description: Long-term memory system for OpenClaw agents — auto-recalls past context before each turn, auto-captures new facts after each turn, and provides tools for explicit search, save, forget, and lookup operations.
4
+ tools: ["cortex"]
4
5
  user-invocable: false
5
6
  ---
6
7
 
@@ -165,3 +166,11 @@ Recalled memories include a confidence score (e.g., `[0.85]`). Higher scores ind
165
166
  - Prioritize which memories to reference when multiple are relevant
166
167
  - Be more cautious about lower-confidence recalls
167
168
  - Decide whether to verify with a live check
169
+
170
+ ## Error Handling
171
+
172
+ If Cortex is unreachable (API timeout, network error, service outage):
173
+ - **Auto-recall silently degrades** — the turn proceeds without injected memories. You won't see `<cortex_memories>` tags but the conversation continues normally.
174
+ - **Auto-capture retries in the background** — failed captures are queued and retried automatically. No user action needed.
175
+ - **Explicit tool calls will return an error** — if `cortex_search_memory`, `cortex_save_memory`, etc. fail, tell the user Cortex is temporarily unavailable and proceed without memory. Don't retry in a loop.
176
+ - **Don't hallucinate memories** — if recall is missing due to an outage, say you don't have access to past context right now rather than guessing.