@karmaniverous/jeeves-watcher-openclaw 0.12.1 → 0.13.0
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/content/agents-section.md +6 -7
- package/dist/cli.js +12440 -6628
- package/dist/index.js +13426 -7267
- package/dist/skills/jeeves-watcher/SKILL.md +4 -4
- package/dist/src/cli.d.ts +0 -8
- package/dist/src/constants.d.ts +9 -5
- package/dist/src/promptInjection.d.ts +4 -0
- package/dist/src/watcherComponent.d.ts +12 -5
- package/dist/src/watcherComponent.test.d.ts +1 -1
- package/openclaw.plugin.json +1 -1
- package/package.json +6 -6
|
@@ -65,6 +65,8 @@ At minimum, always brief sub-agents on:
|
|
|
65
65
|
|
|
66
66
|
**Anything important enough to have a permanent cron/heartbeat entry is important enough to be codified into the data flow.**
|
|
67
67
|
|
|
68
|
+
**HEARTBEAT efficiency:** When HEARTBEAT fires with multiple component alerts, resolve them all in a single conversation. Walk the user through each component in dependency order. Each heartbeat cycle is a full LLM session — resolve all alerts in one pass.
|
|
69
|
+
|
|
68
70
|
## Messaging Dispatch
|
|
69
71
|
|
|
70
72
|
**Same-channel replies:** Don't use the `message` tool. It fires immediately, jumping ahead of streaming narration. Just write text as your response. Use `message` only for **cross-channel** sends (sending to a different channel or DM than the one you're responding in).
|
|
@@ -73,7 +75,7 @@ At minimum, always brief sub-agents on:
|
|
|
73
75
|
|
|
74
76
|
## Heartbeat Discipline
|
|
75
77
|
|
|
76
|
-
**Default state of HEARTBEAT.md is
|
|
78
|
+
**Default state of HEARTBEAT.md is effectively empty** — the `# Jeeves Platform Status` section contains only headings when all components are healthy or declined. No list content, no LLM cost. User heartbeat items (above the platform status section) follow the same transient/termination rules as before.
|
|
77
79
|
|
|
78
80
|
Heartbeat items are for **transient, session-requiring work-in-progress ONLY**. Each item must include its own termination condition.
|
|
79
81
|
|
|
@@ -134,14 +136,11 @@ When discovering a new data source, integrate it into the existing data flow pip
|
|
|
134
136
|
|
|
135
137
|
## Bootstrap Protocol
|
|
136
138
|
|
|
137
|
-
|
|
139
|
+
**Proactive platform status:** HEARTBEAT.md is loaded every session. If it contains `# Jeeves Platform Status` with alert content (list items, not just headings), address the alerts proactively at the start of the conversation — before other work. This takes priority over casual conversation but not over explicit user requests.
|
|
138
140
|
|
|
139
|
-
|
|
140
|
-
2. **Inform** the user what's missing and what it provides
|
|
141
|
-
3. **Guide** them through installation using the component's CLI install command
|
|
142
|
-
4. **Verify** the installation succeeded (probe the port, check the plugin registration)
|
|
141
|
+
**Follow the instructions:** Explain the component, ask for consent, execute the command, verify. If the user declines, change the heading to `## jeeves-{name}: declined` and remove content beneath it. Do not prompt for declined components. Do not improvise — the HEARTBEAT instructions are authoritative.
|
|
143
142
|
|
|
144
|
-
|
|
143
|
+
When resolving multiple component alerts, walk the user through each in dependency order (watcher before meta, runner and server independent) within a single conversation rather than one per heartbeat cycle.
|
|
145
144
|
|
|
146
145
|
## Em-Dash Discipline
|
|
147
146
|
|