@unblocklabs/unblock-memory 0.3.22 → 0.3.23
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/README.md +86 -967
- package/dist/src/people-store.d.ts +37 -3
- package/dist/src/people-store.js +23 -9
- package/dist/src/people-tools.js +5 -5
- package/dist/src/plugin.js +13 -9
- package/dist/src/slack-directory.js +3 -2
- package/docs/configuration.md +380 -0
- package/docs/peoplesql.md +223 -0
- package/docs/response-audit.md +217 -0
- package/docs/retrieval.md +576 -0
- package/openclaw.plugin.json +7 -5
- package/package.json +6 -2
- package/skills/memory-curator/SKILL.md +5 -0
- package/skills/people-whisperer/SKILL.md +10 -0
|
@@ -115,5 +115,15 @@ when a misleading legacy profile cannot be responsibly replaced, or `set_injecti
|
|
|
115
115
|
to pause it without deleting it. Do not erase raw memory or dossier history.
|
|
116
116
|
Inspect history through `dossier_changes` and `dossier_change` views.
|
|
117
117
|
|
|
118
|
+
`soft_delete_person` marks a person unavailable and disables injection without
|
|
119
|
+
erasing the dossier/history. `restore_person` leaves injection off: inspect first,
|
|
120
|
+
then explicitly re-enable if appropriate. Slack deactivation also disables the
|
|
121
|
+
whole linked person; directory sync does not restore unavailable people.
|
|
122
|
+
`injectionEligible` is only a record preview. Global hooks and durable once-per-thread
|
|
123
|
+
receipts still apply; dossier edits/restarts do not refresh an already-served thread.
|
|
124
|
+
See the [people operator reference](../../docs/peoplesql.md) for state operations
|
|
125
|
+
and the [retrieval guide](../../docs/retrieval.md) for search/sync limits.
|
|
126
|
+
When loaded through a `plugin-skills` symlink, resolve these links from the skill's real installed path.
|
|
127
|
+
|
|
118
128
|
Report the resulting snippets, source limitations, changes and intentionally
|
|
119
129
|
unknown answers. More words or more claims are not success metrics.
|