forge-openclaw-plugin 0.2.48 → 0.2.50

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.
Files changed (36) hide show
  1. package/README.md +3 -3
  2. package/dist/assets/index-2_tuemtU.css +1 -0
  3. package/dist/assets/index-C9_gJvi6.js +91 -0
  4. package/dist/assets/index-C9_gJvi6.js.map +1 -0
  5. package/dist/index.html +2 -2
  6. package/dist/openclaw/parity.js +14 -0
  7. package/dist/openclaw/routes.js +42 -0
  8. package/dist/openclaw/session-registry.js +17 -0
  9. package/dist/openclaw/tools.js +3 -3
  10. package/dist/server/server/migrations/019_wiki_memory.sql +1 -1
  11. package/dist/server/server/migrations/052_agent_identity_tightening.sql +307 -0
  12. package/dist/server/server/migrations/053_agent_runtime_session_canonical_labels.sql +9 -0
  13. package/dist/server/server/migrations/054_sqlite_backed_wiki_memory.sql +8 -0
  14. package/dist/server/server/src/app.js +46 -14
  15. package/dist/server/server/src/db.js +0 -2
  16. package/dist/server/server/src/openapi.js +58 -3
  17. package/dist/server/server/src/repositories/agent-runtime-sessions.js +122 -16
  18. package/dist/server/server/src/repositories/model-settings.js +5 -0
  19. package/dist/server/server/src/repositories/notes.js +5 -2
  20. package/dist/server/server/src/repositories/settings.js +101 -13
  21. package/dist/server/server/src/repositories/users.js +23 -0
  22. package/dist/server/server/src/repositories/wiki-memory.js +16 -190
  23. package/dist/server/server/src/services/data-management.js +2 -9
  24. package/dist/server/server/src/types.js +13 -0
  25. package/openclaw.plugin.json +1 -1
  26. package/package.json +5 -2
  27. package/server/migrations/019_wiki_memory.sql +1 -1
  28. package/server/migrations/052_agent_identity_tightening.sql +307 -0
  29. package/server/migrations/053_agent_runtime_session_canonical_labels.sql +9 -0
  30. package/server/migrations/054_sqlite_backed_wiki_memory.sql +8 -0
  31. package/skills/forge-openclaw/SKILL.md +6 -6
  32. package/skills/forge-openclaw/entity_conversation_playbooks.md +49 -0
  33. package/skills/forge-openclaw/psyche_entity_playbooks.md +32 -0
  34. package/dist/assets/index-Bv9FWWsZ.js +0 -91
  35. package/dist/assets/index-Bv9FWWsZ.js.map +0 -1
  36. package/dist/assets/index-DtEvFzXp.css +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
- - file-first wiki memory with spaces, backlinks, ingest, and explicit Forge links
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 file-first 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 dropping to raw files.
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: file-first markdown memory with explicit spaces, backlinks, search, ingest, and maintenance health checks
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