@yahaha-studio/kichi-forwarder 0.1.2-beta.24 → 0.1.2-beta.25
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/dist/index.js +1 -1
- package/index.ts +1 -1
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -952,7 +952,7 @@ const plugin = {
|
|
|
952
952
|
if (now - lastReply < BOT_MESSAGE_COOLDOWN_MS)
|
|
953
953
|
return;
|
|
954
954
|
botMessageCooldowns.set(cooldownKey, now);
|
|
955
|
-
const sessionKey = `agent:${service.getAgentId()}:
|
|
955
|
+
const sessionKey = `agent:${service.getAgentId()}:bot_message`;
|
|
956
956
|
const history = [
|
|
957
957
|
...(msg.history ?? []),
|
|
958
958
|
{ from: msg.from, fromName: msg.fromName, bubble: msg.bubble },
|
package/index.ts
CHANGED
|
@@ -1177,7 +1177,7 @@ const plugin = {
|
|
|
1177
1177
|
const lastReply = botMessageCooldowns.get(cooldownKey) ?? 0;
|
|
1178
1178
|
if (now - lastReply < BOT_MESSAGE_COOLDOWN_MS) return;
|
|
1179
1179
|
botMessageCooldowns.set(cooldownKey, now);
|
|
1180
|
-
const sessionKey = `agent:${service.getAgentId()}:
|
|
1180
|
+
const sessionKey = `agent:${service.getAgentId()}:bot_message`;
|
|
1181
1181
|
const history: BotMessageHistoryEntry[] = [
|
|
1182
1182
|
...(msg.history ?? []),
|
|
1183
1183
|
{ from: msg.from, fromName: msg.fromName, bubble: msg.bubble },
|
package/openclaw.plugin.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"id": "kichi-forwarder",
|
|
3
3
|
"name": "Kichi Forwarder",
|
|
4
4
|
"description": "Native OpenClaw plugin for Kichi World with direct avatar control, status sync, timers, notes, and music tools",
|
|
5
|
-
"version": "0.1.2-beta.
|
|
5
|
+
"version": "0.1.2-beta.25",
|
|
6
6
|
"author": "OpenClaw",
|
|
7
7
|
"skills": ["./skills/kichi-forwarder"],
|
|
8
8
|
"contracts": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yahaha-studio/kichi-forwarder",
|
|
3
|
-
"version": "0.1.2-beta.
|
|
3
|
+
"version": "0.1.2-beta.25",
|
|
4
4
|
"description": "Native OpenClaw plugin for Kichi World with direct avatar control, status sync, timers, notes, and music tools",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|