forge-openclaw-plugin 0.2.49 → 0.2.51
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 +3 -3
- package/dist/assets/{index-BAmEvOXb.js → index-DX8RiahO.js} +46 -46
- package/dist/assets/index-DX8RiahO.js.map +1 -0
- package/dist/assets/index-gthTrgvO.css +1 -0
- package/dist/index.html +2 -2
- package/dist/openclaw/parity.js +14 -0
- package/dist/openclaw/routes.js +42 -0
- package/dist/openclaw/tools.js +3 -3
- package/dist/server/server/migrations/019_wiki_memory.sql +1 -1
- package/dist/server/server/migrations/054_sqlite_backed_wiki_memory.sql +8 -0
- package/dist/server/server/src/app.js +24 -13
- package/dist/server/server/src/db.js +11 -2
- package/dist/server/server/src/openapi.js +40 -4
- package/dist/server/server/src/repositories/notes.js +5 -2
- package/dist/server/server/src/repositories/wiki-memory.js +17 -191
- package/dist/server/server/src/services/data-management.js +2 -9
- package/dist/server/server/src/services/legacy-wiki-markdown-import.js +328 -0
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
- package/server/migrations/019_wiki_memory.sql +1 -1
- package/server/migrations/054_sqlite_backed_wiki_memory.sql +8 -0
- package/skills/forge-openclaw/SKILL.md +6 -6
- package/skills/forge-openclaw/entity_conversation_playbooks.md +30 -0
- package/skills/forge-openclaw/psyche_entity_playbooks.md +21 -0
- package/dist/assets/index-2_tuemtU.css +0 -1
- package/dist/assets/index-BAmEvOXb.js.map +0 -1
package/README.md
CHANGED
|
@@ -63,7 +63,7 @@ Forge is a personal system for:
|
|
|
63
63
|
- recurring habits
|
|
64
64
|
- truthful live work sessions
|
|
65
65
|
- weekly review and XP feedback
|
|
66
|
-
-
|
|
66
|
+
- SQLite-backed wiki memory with spaces, backlinks, ingest, and explicit Forge links
|
|
67
67
|
- first-class sleep and sports records imported from the iPhone companion or generated from habits
|
|
68
68
|
- structured Psyche records such as values, patterns, beliefs, modes, and trigger reports
|
|
69
69
|
|
|
@@ -80,7 +80,7 @@ This plugin gives OpenClaw the tools it needs to work with that system. It can r
|
|
|
80
80
|
It can also grant an explicit audited XP bonus or penalty through the dedicated reward-bonus route when the normal automatic task or habit reward flows are not the right fit.
|
|
81
81
|
It can also add or remove tracked minutes on existing tasks or projects through a dedicated signed work-adjustment route without pretending that a live task run happened.
|
|
82
82
|
It also understands Forge `note` records, which are Markdown-based, searchable, and linkable across one or many entities.
|
|
83
|
-
It also exposes Forge's
|
|
83
|
+
It also exposes Forge's SQLite-backed wiki memory surface plus the first-class sleep and sports read models, so an agent can review recent nights, inspect workout context, update reflective metadata on health sessions, and work with wiki pages without touching raw storage.
|
|
84
84
|
The curated plugin route surface now includes the dedicated wiki and health APIs directly, including wiki settings, page reads and writes, search, health, sync, reindex, background ingest, sleep review, sports review, and reflective updates on individual sleep or workout sessions.
|
|
85
85
|
Notes support includes:
|
|
86
86
|
|
|
@@ -200,7 +200,7 @@ handoff when the user wants to play the comparison game visually.
|
|
|
200
200
|
|
|
201
201
|
Forge now exposes three more agent-relevant surfaces directly:
|
|
202
202
|
|
|
203
|
-
- the Wiki:
|
|
203
|
+
- the Wiki: SQLite-backed Markdown memory with explicit spaces, backlinks, search, ingest, and maintenance health checks
|
|
204
204
|
- Sleep: recent nights, sleep score and regularity metrics, stage averages, and linked reflective context
|
|
205
205
|
- Sports: workout volume, effort, types, habit-generated sessions, and linked Forge context
|
|
206
206
|
|