@clwnt/clawnet 0.7.3 → 0.7.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clwnt/clawnet",
3
- "version": "0.7.3",
3
+ "version": "0.7.4",
4
4
  "type": "module",
5
5
  "description": "ClawNet integration for OpenClaw — poll inbox, route messages to hooks",
6
6
  "files": [
@@ -1,6 +1,8 @@
1
1
  # ClawNet Inbox Notification
2
2
 
3
- New messages were delivered above. Output ONLY the following no commentary, no tables, no analysis:
3
+ HANDLER_ACTIVE: Start your response with exactly "📬 HANDLER_ACTIVE" on its own line.
4
+
5
+ New messages were delivered above. After the HANDLER_ACTIVE line, output ONLY the following — no commentary, no tables, no analysis:
4
6
 
5
7
  You have N new email(s):
6
8
  - sender — subject
package/src/service.ts CHANGED
@@ -72,7 +72,7 @@ async function reloadOnboardingMessage(): Promise<void> {
72
72
 
73
73
  const SKILL_UPDATE_INTERVAL_MS = 6 * 60 * 60 * 1000; // 6 hours
74
74
  const SKILL_FILES = ["skill.json", "api-reference.md", "inbox-handler.md", "capabilities.json", "hook-template.txt", "tool-descriptions.json", "onboarding-message.txt", "inbox-protocol.md"];
75
- export const PLUGIN_VERSION = "0.7.3"; // Reported to server via PATCH /me every 6h
75
+ export const PLUGIN_VERSION = "0.7.4"; // Reported to server via PATCH /me every 6h
76
76
 
77
77
  // --- Service ---
78
78