Core behavioral rules and skills for NanoClaw personal assistant agents. Always-on rules for communication, verification, memory, and formatting.
69
87%
Does it follow best practices?
Impact
—
No eval scenarios have been run
Risky
Do not use without reviewing
Process steps in order. Do not skip ahead.
Compares a deadline against the actual current instant and returns past/future plus the signed delta. Use it whenever you would otherwise assert that a deadline has elapsed or that there is still time to act — rules/temporal-awareness.md requires the comparison to be computed here, not inferred.
Do the offset conversion first (e.g. 11:00 EDT -> 2026-06-12T15:00:00Z, or pass 2026-06-12T11:00:00-04:00). The deadline must carry a timezone offset (Z or +HH:MM); a naive value is rejected at exit 2.
python3 /home/node/.claude/skills/tessl__now-vs-deadline/scripts/now-vs-deadline.py --deadline "2026-06-12T15:00:00Z"The comparison is location-agnostic — it compares instants only; the result is independent of the offset you used. No physical location or current_tz lookup happens here. Mapping relative phrasings (today/now/сейчас/here) into a local frame stays in the trusted tile. Proceed immediately to Step 2.
The script prints a single-line JSON payload to stdout:
{
"now": "2026-06-12T13:10:50Z",
"deadline": "2026-06-12T15:00:00Z",
"relation": "future",
"delta_seconds": 6550,
"delta_text": "1h 49m from now",
"deadline_elapsed": false,
"still_time_to_act": true,
"error": null
}relation is past / future / now; delta_seconds is signed (>0 future, <0 past). Read relation / deadline_elapsed / still_time_to_act and act on them directly — do not re-derive past/future from your own read of the clock. Exit 0 on success; exit 2 on a usage error (missing, unparseable, or naive --deadline) with the diagnostic on stderr and no JSON. Finish here.
rules
tests