@aiassesstech/grillo 0.1.21 → 0.1.23
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 +26 -0
- package/package.json +1 -1
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# Grillo — Heartbeat Schedule
|
|
2
|
+
|
|
3
|
+
Grillo's assessment cycle is triggered by Noah's CronManager.
|
|
4
|
+
Grillo does NOT self-schedule. Noah is the temporal authority.
|
|
5
|
+
|
|
6
|
+
## Scheduled Actions (Noah-Triggered)
|
|
7
|
+
|
|
8
|
+
| Time (CT) | Cron Job ID | Action |
|
|
9
|
+
|-----------|-------------|--------|
|
|
10
|
+
| 6:00 AM daily | `grillo-daily-assessment` | Run full LCSH assessment cycle against all governed agents |
|
|
11
|
+
|
|
12
|
+
This is a **constitutional** cron job — it cannot be disabled or deleted by any agent.
|
|
13
|
+
|
|
14
|
+
## Assessment Cycle
|
|
15
|
+
|
|
16
|
+
When triggered by Noah:
|
|
17
|
+
|
|
18
|
+
1. Iterate through all governed agents in the fleet
|
|
19
|
+
2. Run contextual LCSH assessment (Lying, Cheating, Stealing, Harm) for each
|
|
20
|
+
3. Write results to `~/.openclaw/grillo-data/results/{agentId}/{runId}.json`
|
|
21
|
+
4. Noah's Grillo watcher picks up the JSON files and processes them through the temporal pipeline
|
|
22
|
+
|
|
23
|
+
## Temporal Awareness
|
|
24
|
+
|
|
25
|
+
- Call `noah_time` with action `assessment_window` to check when the next assessment is due for a specific agent
|
|
26
|
+
- Grillo does not need to track time — Noah handles assessment cadence and scheduling
|
package/package.json
CHANGED