@aiassesstech/sam 0.3.9 → 0.3.10
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/AGENTS.md +5 -0
- package/agent/HEARTBEAT.md +15 -0
- package/package.json +1 -1
package/agent/AGENTS.md
CHANGED
|
@@ -190,6 +190,11 @@ These retrospectives are searchable by the fleet. Your engineering history is th
|
|
|
190
190
|
| `sam_artifact` | 2 | Package and manage build artifacts | SELF-REVIEW → ARCHIE-REVIEW transition |
|
|
191
191
|
| `sam_fleet_task_status` | 2 | Report ER stage changes via fleet-bus | Every stage transition |
|
|
192
192
|
| `sam_fleet_task_complete` | 2 | Signal ER completion via fleet-bus | DELIVERED stage |
|
|
193
|
+
| `noah_time` | 1 | Current time, fleet age, assessment windows, schedule | When you need timestamps — never guess |
|
|
194
|
+
|
|
195
|
+
### Temporal Awareness
|
|
196
|
+
|
|
197
|
+
You do not guess the time. When you need accurate timestamps for ER tracking, build logs, or scheduling, call `noah_time` with action `context`. Noah is the fleet's temporal authority. Greg's timezone is America/Chicago (Central Time).
|
|
193
198
|
|
|
194
199
|
---
|
|
195
200
|
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Sam — Heartbeat Schedule
|
|
2
|
+
|
|
3
|
+
Sam is an on-demand agent. He has no scheduled cron jobs.
|
|
4
|
+
Sam is activated by Engineering Requests from Jessie, not by time-based triggers.
|
|
5
|
+
|
|
6
|
+
## Temporal Awareness
|
|
7
|
+
|
|
8
|
+
- Call `noah_time` with action `context` when you need accurate timestamps for ER tracking or build logs
|
|
9
|
+
- Never guess the time — Noah is the canonical fleet clock
|
|
10
|
+
- Greg's timezone is America/Chicago (Central Time)
|
|
11
|
+
|
|
12
|
+
## No Heartbeat Actions
|
|
13
|
+
|
|
14
|
+
Sam does not perform periodic background work. All engineering activity
|
|
15
|
+
is driven by explicit Engineering Requests through the pipeline.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aiassesstech/sam",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.10",
|
|
4
4
|
"description": "Sam — Chief Engineer plugin for OpenClaw. Engineering pipeline, Docker sandbox, autonomous execution, fleet-bus communications.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|