forge-openclaw-plugin 0.2.47 → 0.2.49
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 +6 -5
- package/dist/assets/index-2_tuemtU.css +1 -0
- package/dist/assets/index-BAmEvOXb.js +91 -0
- package/dist/assets/index-BAmEvOXb.js.map +1 -0
- package/dist/index.html +2 -2
- package/dist/openclaw/api-client.js +15 -1
- package/dist/openclaw/session-registry.js +17 -0
- package/dist/openclaw/tools.js +1 -1
- package/dist/server/server/migrations/052_agent_identity_tightening.sql +307 -0
- package/dist/server/server/migrations/053_agent_runtime_session_canonical_labels.sql +9 -0
- package/dist/server/server/src/app.js +42 -12
- package/dist/server/server/src/health-workout-adapters.js +465 -0
- package/dist/server/server/src/health.js +134 -9
- package/dist/server/server/src/openapi.js +33 -0
- package/dist/server/server/src/repositories/agent-runtime-sessions.js +122 -16
- package/dist/server/server/src/repositories/habits.js +62 -25
- package/dist/server/server/src/repositories/model-settings.js +5 -0
- package/dist/server/server/src/repositories/settings.js +101 -13
- package/dist/server/server/src/repositories/users.js +23 -0
- package/dist/server/server/src/types.js +22 -6
- package/dist/server/server/src/watch-mobile.js +33 -21
- package/dist/server/src/lib/date-keys.js +21 -0
- package/openclaw.plugin.json +1 -1
- package/package.json +5 -2
- package/server/migrations/052_agent_identity_tightening.sql +307 -0
- package/server/migrations/053_agent_runtime_session_canonical_labels.sql +9 -0
- package/skills/forge-openclaw/SKILL.md +3 -1
- package/skills/forge-openclaw/entity_conversation_playbooks.md +45 -8
- package/skills/forge-openclaw/psyche_entity_playbooks.md +14 -0
- package/dist/assets/index-BejDHw1R.js +0 -91
- package/dist/assets/index-BejDHw1R.js.map +0 -1
- package/dist/assets/index-DtEvFzXp.css +0 -1
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@ OpenClaw install note:
|
|
|
8
8
|
- `openclaw plugins enable forge-openclaw-plugin` is not always enough by itself.
|
|
9
9
|
- If `forge-openclaw-plugin` is missing from `plugins.allow`, OpenClaw can still refuse to load it.
|
|
10
10
|
- The install section below includes the `node -e ...` step that repairs `plugins.allow` safely.
|
|
11
|
-
-
|
|
11
|
+
- I re-verified on April 21, 2026 that OpenClaw `2026.4.15` still blocks both the published package install and the repo-local install because Forge launches a local runtime and gets flagged by the installer scanner. The bypass sections below are still current.
|
|
12
12
|
|
|
13
13
|
## Open the UI
|
|
14
14
|
|
|
@@ -225,7 +225,7 @@ openclaw gateway restart
|
|
|
225
225
|
openclaw forge health
|
|
226
226
|
```
|
|
227
227
|
|
|
228
|
-
If the install path is blocked on your OpenClaw build, use this temporary npm bypass instead:
|
|
228
|
+
If the install path is blocked on your OpenClaw build, use this temporary npm bypass instead. This is still required on OpenClaw `2026.4.15` as of April 21, 2026:
|
|
229
229
|
|
|
230
230
|
```bash
|
|
231
231
|
npm install -g forge-openclaw-plugin
|
|
@@ -235,7 +235,7 @@ openclaw plugins info forge-openclaw-plugin
|
|
|
235
235
|
openclaw forge health
|
|
236
236
|
```
|
|
237
237
|
|
|
238
|
-
That bypass still uses the published npm package. It just tells OpenClaw to load the npm-installed folder directly from `plugins.load.paths`, which avoids the
|
|
238
|
+
That bypass still uses the published npm package. It just tells OpenClaw to load the npm-installed folder directly from `plugins.load.paths`, which avoids the installer block that still happens on OpenClaw `2026.4.15`.
|
|
239
239
|
|
|
240
240
|
`openclaw plugins enable forge-openclaw-plugin` marks the plugin enabled, but it does not guarantee that `plugins.allow` was repaired. The `node -e ...` command above preserves the current allow list and appends `"forge-openclaw-plugin"` if it is missing.
|
|
241
241
|
|
|
@@ -249,8 +249,8 @@ openclaw gateway restart
|
|
|
249
249
|
openclaw forge health
|
|
250
250
|
```
|
|
251
251
|
|
|
252
|
-
|
|
253
|
-
|
|
252
|
+
OpenClaw `2026.4.15` still blocks that repo-local install on this machine, so keep
|
|
253
|
+
the repo folder on `plugins.load.paths`, make sure
|
|
254
254
|
`openclaw plugins info forge-openclaw-plugin` still points at the local Forge source
|
|
255
255
|
path, then restart the gateway and verify health. That fallback still keeps OpenClaw
|
|
256
256
|
on the local code folder instead of switching to the published package.
|
|
@@ -368,6 +368,7 @@ The batch tools are array-first:
|
|
|
368
368
|
- goal, project, task, strategy, habit, tag, and note writes can include `userId` to assign ownership to a human or bot user
|
|
369
369
|
- scoped reads can use `userId` or repeated `userIds` query parameters when the agent needs to focus on specific humans or bots
|
|
370
370
|
- `forge_update_entities` takes `operations: []`, and each update operation must include `entityType`, `id`, and `patch`
|
|
371
|
+
- official habit outcomes can stay on that same shared path: patch `entityType: "habit"` with `checkIn: { status, dateKey?, note?, description? }` to record the real habit outcome without leaving batch CRUD
|
|
371
372
|
- `forge_delete_entities` and `forge_restore_entities` also take `operations: []`
|
|
372
373
|
|
|
373
374
|
Project lifecycle uses those same generic tools:
|