@akalsey/openclaw-feedback 0.1.0 → 0.1.1
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 +2 -2
- package/dist/src/service.js +2 -2
- package/openclaw.plugin.json +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -19,7 +19,7 @@ This plugin can be used without Sapience if all you want to do is have the agent
|
|
|
19
19
|
### Install
|
|
20
20
|
|
|
21
21
|
```bash
|
|
22
|
-
openclaw plugins install
|
|
22
|
+
openclaw plugins install npm:@akalsey/openclaw-feedback
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
### Configuration
|
|
@@ -27,7 +27,7 @@ openclaw plugins install local:/path/to/openclaw-feedback
|
|
|
27
27
|
```json
|
|
28
28
|
{
|
|
29
29
|
"plugins": {
|
|
30
|
-
"feedback": {
|
|
30
|
+
"sapience-feedback": {
|
|
31
31
|
"logPath": "~/.openclaw/sapience/feedback.md",
|
|
32
32
|
"calibrationPath": "~/.openclaw/sapience/calibration.json",
|
|
33
33
|
"memoryEnabled": true
|
package/dist/src/service.js
CHANGED
|
@@ -17,8 +17,8 @@ function buildMetaPointer(signal) {
|
|
|
17
17
|
return `Before working on ${signal.domain} / ${signal.action_class}: check feedback log — correction recorded: "${signal.raw_text.slice(0, 80)}"`;
|
|
18
18
|
}
|
|
19
19
|
export default definePluginEntry({
|
|
20
|
-
id: "feedback",
|
|
21
|
-
name: "Feedback",
|
|
20
|
+
id: "sapience-feedback",
|
|
21
|
+
name: "Sapience Feedback",
|
|
22
22
|
description: "Persists behavioral corrections and confirmations into the sapience calibration profile",
|
|
23
23
|
register(api) {
|
|
24
24
|
const workspaceDir = api.runtime.agent.resolveAgentWorkspaceDir(api.pluginConfig);
|
package/openclaw.plugin.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"id": "feedback",
|
|
3
|
-
"name": "Feedback",
|
|
2
|
+
"id": "sapience-feedback",
|
|
3
|
+
"name": "Sapience Feedback",
|
|
4
4
|
"version": "0.1.0",
|
|
5
5
|
"description": "Persists behavioral corrections and confirmations from session messages into the sapience calibration profile",
|
|
6
6
|
"activation": { "onStartup": true },
|