@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.
Files changed (2) hide show
  1. package/agent/HEARTBEAT.md +26 -0
  2. 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aiassesstech/grillo",
3
- "version": "0.1.21",
3
+ "version": "0.1.23",
4
4
  "description": "Grillo Cricket — The Conscience for AI. Independent assessment coordinator agent for multi-agent OpenClaw deployments.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",