You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Recover malformed-but-repairable passive extractor JSON and retry once with stricter JSON-only instructions
- Tighten passive extractor section guidance and report schema validation failures with non-sensitive field-specific reasons
- Make recent fuzzy duplicate suppression section-aware so distinct values and practices themes can both bridge
- Document the customer-friendly Cortex Memory explainer link in the README
- Add focused unit coverage for JSON recovery, schema diagnostics, values-style candidates, duplicate suppression, and bridge send guards
Copy file name to clipboardExpand all lines: README.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,12 @@
8
8
9
9
[OpenClaw](https://github.com/openclaw/openclaw) plugin for [Cortex](https://github.com/ubundi/cortex) long-term memory. Gives your agent persistent memory that survives across sessions — who you are, what your project does, decisions you made weeks ago, and how things changed over time.
10
10
11
+
## Customer-Friendly Explainer
12
+
13
+
A one-page explainer for companies using the plugin is published at [https://marble-birch-znnf.here.now/](https://marble-birch-znnf.here.now/). It explains what Cortex Memory does for AI agents, how it benefits users and teams, and what controls administrators have.
14
+
15
+
The source HTML artifact is also stored privately in here.now Drive at `My Drive/openclaw-cortex/cortex-memory-plugin-explainer.html`.
Copy file name to clipboardExpand all lines: src/features/bridge/passive.ts
+78-7Lines changed: 78 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -227,9 +227,12 @@ export function buildPassiveExtractorPrompt(): string {
227
227
"Candidate wording should be concise, durable, operational, and not include unsupported details.",
228
228
"Evidence quotes must be exact user-authored substrings from the provided messages.",
229
229
"Keep evidence_quote to the shortest exact substring that proves the candidate; do not quote whole long messages.",
230
+
"suggested_section must be exactly one of: coreValues, beliefs, principles, ideas, dreams, practices, shadows, legacy.",
231
+
"Use coreValues for personal values, principles for operating principles, practices for concrete recurring work habits, and beliefs for durable beliefs.",
0 commit comments