Core behavioral rules and skills for NanoClaw personal assistant agents. Always-on rules for communication, verification, memory, and formatting.
77
97%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
High
Do not use without reviewing
Before any proactive action — reminder, alert, message, suggestion — ground yourself in time first.
What time is it? Know the current UTC time and the owner's local time (from current_tz in the tz_state singleton: SELECT current_tz FROM tz_state WHERE id = 1 in /workspace/store/messages.db). When traveling, these differ from the server timezone. Don't assume.
What's happening right now? Use calendar and travel context. Is the owner in-flight? In a meeting? Asleep? Between events? A thing that made sense to schedule at 7am may not make sense to fire at noon if circumstances changed.
Does this action still make sense given #1 and #2?
Any determination of past vs future, deadline elapsed, or still time to act MUST be computed against the real current instant via the now-vs-deadline helper — never asserted from prose judgment. Resolve the deadline to a timezone-aware instant first (do the offset conversion, e.g. 11:00 EDT → 15:00 UTC), then run the now-vs-deadline skill and act on its verdict rather than your own read of the clock. The comparison is instant-only and location-agnostic.
Don't look for a matching rule. Ask: "If I were a human assistant who knew the owner's full schedule right now, would I reach out about this at this moment?"
If clearly no — don't. If uncertain — think about what a useful message would look like versus noise.
LLMs default to treating all information as equally present-tense. Explicitly compensate: check the clock, check the context, then act.
.github
rules
skills
now-vs-deadline
scripts
query-history