@remnic/plugin-openclaw 1.0.15 → 1.0.18
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 +1 -1
- package/dist/index.js +1 -1
- package/openclaw.plugin.json +52 -0
- package/package.json +11 -2
package/README.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -23887,7 +23887,7 @@ function candidateTurnIndexesForReference(reference) {
|
|
|
23887
23887
|
}
|
|
23888
23888
|
}
|
|
23889
23889
|
const pairedBase = reference.number * 2;
|
|
23890
|
-
for (let offset = -
|
|
23890
|
+
for (let offset = -1; offset <= 1; offset += 1) {
|
|
23891
23891
|
candidates.add(pairedBase + offset);
|
|
23892
23892
|
}
|
|
23893
23893
|
return [...candidates].sort((left, right) => left - right);
|
package/openclaw.plugin.json
CHANGED
|
@@ -10,6 +10,58 @@
|
|
|
10
10
|
"commandsList": true,
|
|
11
11
|
"beforeReset": true
|
|
12
12
|
},
|
|
13
|
+
"contracts": {
|
|
14
|
+
"tools": [
|
|
15
|
+
"compounding_promote_candidate",
|
|
16
|
+
"compounding_weekly_synthesize",
|
|
17
|
+
"compression_guidelines_activate",
|
|
18
|
+
"compression_guidelines_optimize",
|
|
19
|
+
"context_checkpoint",
|
|
20
|
+
"continuity_audit_generate",
|
|
21
|
+
"continuity_incident_close",
|
|
22
|
+
"continuity_incident_list",
|
|
23
|
+
"continuity_incident_open",
|
|
24
|
+
"continuity_loop_add_or_update",
|
|
25
|
+
"continuity_loop_review",
|
|
26
|
+
"conversation_index_update",
|
|
27
|
+
"engram_context_describe",
|
|
28
|
+
"engram_context_expand",
|
|
29
|
+
"engram_context_search",
|
|
30
|
+
"engram_profiling_report",
|
|
31
|
+
"identity_anchor_get",
|
|
32
|
+
"identity_anchor_update",
|
|
33
|
+
"memory_action_apply",
|
|
34
|
+
"memory_capture",
|
|
35
|
+
"memory_entities",
|
|
36
|
+
"memory_feedback",
|
|
37
|
+
"memory_feedback_last_recall",
|
|
38
|
+
"memory_get",
|
|
39
|
+
"memory_governance_run",
|
|
40
|
+
"memory_graph_explain_last_recall",
|
|
41
|
+
"memory_identity",
|
|
42
|
+
"memory_intent_debug",
|
|
43
|
+
"memory_last_recall",
|
|
44
|
+
"memory_profile",
|
|
45
|
+
"memory_promote",
|
|
46
|
+
"memory_qmd_debug",
|
|
47
|
+
"memory_questions",
|
|
48
|
+
"memory_search",
|
|
49
|
+
"memory_store",
|
|
50
|
+
"memory_summarize_hourly",
|
|
51
|
+
"remnic_context_describe",
|
|
52
|
+
"remnic_context_expand",
|
|
53
|
+
"remnic_context_search",
|
|
54
|
+
"remnic_profiling_report",
|
|
55
|
+
"shared_context_cross_signals_run",
|
|
56
|
+
"shared_context_curate_daily",
|
|
57
|
+
"shared_context_write_output",
|
|
58
|
+
"shared_feedback_record",
|
|
59
|
+
"shared_priorities_append",
|
|
60
|
+
"work_board",
|
|
61
|
+
"work_project",
|
|
62
|
+
"work_task"
|
|
63
|
+
]
|
|
64
|
+
},
|
|
13
65
|
"configSchema": {
|
|
14
66
|
"type": "object",
|
|
15
67
|
"additionalProperties": false,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remnic/plugin-openclaw",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.18",
|
|
4
4
|
"description": "OpenClaw adapter for Remnic memory — thin wrapper delegating to @remnic/core",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -21,7 +21,16 @@
|
|
|
21
21
|
"plugin": "./openclaw.plugin.json",
|
|
22
22
|
"extensions": [
|
|
23
23
|
"./dist/index.js"
|
|
24
|
-
]
|
|
24
|
+
],
|
|
25
|
+
"compat": {
|
|
26
|
+
"pluginApi": ">=2026.4.8"
|
|
27
|
+
},
|
|
28
|
+
"build": {
|
|
29
|
+
"openclawVersion": "2026.5.2"
|
|
30
|
+
},
|
|
31
|
+
"install": {
|
|
32
|
+
"minHostVersion": ">=2026.4.8"
|
|
33
|
+
}
|
|
25
34
|
},
|
|
26
35
|
"dependencies": {
|
|
27
36
|
"openai": "^6.0.0",
|