openclaw-threema 0.6.1 → 0.6.2
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/CHANGELOG.md +54 -0
- package/dist/index.js +1878 -0
- package/index.ts +4 -3
- package/openclaw.plugin.json +87 -1
- package/package.json +18 -5
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## 0.6.2 (2026-05-04)
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
- **Compiled runtime output** for the OpenClaw 2026.5.x npm-first plugin loader.
|
|
7
|
+
The package now ships `dist/index.js` and points `main`/`exports`/
|
|
8
|
+
`openclaw.extensions` at the compiled output. Previous releases shipped
|
|
9
|
+
the raw `index.ts` only, which OpenClaw 2026.5.0+ rejects with:
|
|
10
|
+
*"installed plugin package requires compiled runtime output for
|
|
11
|
+
TypeScript entry index.ts"*.
|
|
12
|
+
- Added `tsconfig.json`, a `build`/`prepublishOnly` script, and `.npmignore`
|
|
13
|
+
so future releases always include `dist/` and exclude `node_modules`.
|
|
14
|
+
- Cleaned a couple of strict-mode TypeScript signal-noise issues so the
|
|
15
|
+
package builds cleanly with `@types/node@22` on Node 22.
|
|
16
|
+
|
|
17
|
+
### Added
|
|
18
|
+
- **`channelConfigs.threema` metadata** in `openclaw.plugin.json`. The
|
|
19
|
+
2026.5.x setup surfaces and config schema engine read this; without it,
|
|
20
|
+
doctor logs:
|
|
21
|
+
*"channel plugin manifest declares threema without channelConfigs
|
|
22
|
+
metadata"*. The previous flat `configSchema` is preserved for older
|
|
23
|
+
OpenClaw versions.
|
|
24
|
+
- `build.openclawVersion` bumped to `2026.5.3`.
|
|
25
|
+
|
|
26
|
+
## 0.6.1 (2026-05-04)
|
|
27
|
+
|
|
28
|
+
### Added
|
|
29
|
+
- **Memory briefing hook** for inbound text messages. The plugin now appends an
|
|
30
|
+
untrusted "memory_briefing" block to `BodyForAgent` on every inbound Threema
|
|
31
|
+
text message. The block is composed at inbound time from two workspace files:
|
|
32
|
+
- `MEMORY.md` -> the leading `## 📌 Current State` section
|
|
33
|
+
- `memory/pending-actions.md` -> the leading `## 🔥 Akut` section
|
|
34
|
+
Both reads are bounded (≤ 8 KB per file) and cached for 60 s.
|
|
35
|
+
|
|
36
|
+
This makes long-running sessions resilient to staleness: even after weeks of
|
|
37
|
+
conversation, the agent sees the user's current acute state on every reply
|
|
38
|
+
without depending on memory recall heuristics. `RawBody`/`CommandBody` are
|
|
39
|
+
unchanged, so slash-command routing is unaffected.
|
|
40
|
+
|
|
41
|
+
Set the workspace via `agents.<id>.workspace` in the OpenClaw config; the
|
|
42
|
+
plugin falls back to `~/.openclaw/workspace` when no agent declares one.
|
|
43
|
+
|
|
44
|
+
### Notes
|
|
45
|
+
- Backwards compatible: when neither file exists or both sections are missing,
|
|
46
|
+
no briefing block is appended and `BodyForAgent` matches the original text.
|
|
47
|
+
- The briefing block uses the same untrusted-context conventions as other
|
|
48
|
+
OpenClaw inbound metadata - it is informational, not instructions.
|
|
49
|
+
|
|
50
|
+
## 0.6.0
|
|
51
|
+
|
|
52
|
+
- Channel Inbound Pipeline integration.
|
|
53
|
+
- Slash command parsing.
|
|
54
|
+
- Long message chunking.
|