@aiassesstech/jessie 0.2.13 → 0.2.15
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/agent/HEARTBEAT.md +13 -6
- package/package.json +2 -2
package/agent/HEARTBEAT.md
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
|
-
# Jessie — Heartbeat
|
|
1
|
+
# Jessie — Schedule & Heartbeat Policy
|
|
2
2
|
|
|
3
3
|
All scheduled actions are triggered by Noah's CronManager via fleet-bus.
|
|
4
|
-
Jessie does NOT poll
|
|
4
|
+
Jessie does NOT poll, self-schedule, or act on platform heartbeats.
|
|
5
|
+
Noah is the sole temporal authority.
|
|
5
6
|
|
|
6
|
-
> **CRITICAL**:
|
|
7
|
+
> **CRITICAL**: If you receive a platform heartbeat prompt ("Read HEARTBEAT.md"), reply **HEARTBEAT_OK**. Do NOT call tools, send messages, or take any action. Your scheduled duties are handled exclusively through Noah's `cron/scheduled` fleet-bus messages — see Rule 14 in AGENTS.md.
|
|
8
|
+
|
|
9
|
+
> **CRITICAL**: Do NOT use the table below to calculate or infer the current time, determine what has passed, or decide what to do next. ALWAYS call `noah_time` with action `context` to get the current time and schedule state. The table below is for human reference only.
|
|
7
10
|
|
|
8
11
|
## Scheduled Actions (Noah-Triggered, Human Reference Only)
|
|
9
12
|
|
|
@@ -18,7 +21,9 @@ Jessie does NOT poll or self-schedule. Noah is the temporal authority.
|
|
|
18
21
|
| 10:30 PM | `jessie-sleep-winddown` | Sleep wind-down reminder to Greg |
|
|
19
22
|
| 10:50 PM | `jessie-sleep-final` | Final sleep check reminder to Greg |
|
|
20
23
|
|
|
21
|
-
##
|
|
24
|
+
## When Noah Triggers a Heartbeat Check
|
|
25
|
+
|
|
26
|
+
When you receive a `cron/scheduled` message with action `heartbeat_checkin` from Noah via fleet-bus:
|
|
22
27
|
|
|
23
28
|
1. Call `noah_time` with action `context` to get current fleet state
|
|
24
29
|
2. Call `mark_status` to get infrastructure health (GREEN/YELLOW/RED)
|
|
@@ -30,8 +35,10 @@ Jessie does NOT poll or self-schedule. Noah is the temporal authority.
|
|
|
30
35
|
|
|
31
36
|
Keep heartbeat messages short — 2-3 lines max. Save the detail for morning and evening reports.
|
|
32
37
|
|
|
33
|
-
## Memory Maintenance
|
|
38
|
+
## Memory Maintenance
|
|
39
|
+
|
|
40
|
+
On each Noah-triggered action:
|
|
34
41
|
|
|
35
42
|
1. If today's daily memory file (`memory/YYYY-MM-DD.md`) doesn't exist, create it
|
|
36
43
|
2. Append major decisions, learnings, and important context to today's file
|
|
37
|
-
3. On the morning
|
|
44
|
+
3. On the morning briefing only: review recent daily files and promote durable learnings to MEMORY.md
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aiassesstech/jessie",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.15",
|
|
4
4
|
"description": "Jessie — Fleet Commander plugin for OpenClaw. Morning briefings, decision tracking, task delegation, fleet-bus communications.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"@aiassesstech/fleet-alerting": "^0.1.2",
|
|
54
|
-
"@aiassesstech/fleet-bus": "^0.
|
|
54
|
+
"@aiassesstech/fleet-bus": "^0.3.0",
|
|
55
55
|
"@aiassesstech/prompt-shield": "^0.1.0"
|
|
56
56
|
},
|
|
57
57
|
"peerDependencies": {
|