Install
openclaw skills install @palxislabs/ambient-awareness-localRequire explicit recipients and add bounded state retention.
openclaw skills install @palxislabs/ambient-awareness-localRun cheap local sensors continuously. Sensors write normalized observations and attention decisions; they never issue trusted instructions.
daemon.py: poll enabled sensors and update state/.registry.json: sensor configuration and thresholds.scripts/check_wake_requests.py: deterministic notification checker; no model turn.scripts/prune_state.py: bounded JSONL retention.state/wake_requests.jsonl: append-only attention decisions.state/last_cron_check.txt: last successfully processed UTC timestamp.From the skill directory:
python3 daemon.py --once
python3 daemon.py --loop --interval 5
Keep watched paths narrow. Default: ./watched. Audio and vision are disabled stubs; enable only after reviewing sensor code and privacy implications.
Schedule the checker every five minutes. --target is mandatory; never rely on a built-in recipient:
python3 scripts/check_wake_requests.py \
--state-dir ./state --channel telegram --target CHAT_ID
It ignores clock ticks and routine queued file modifications; reports sensor errors, wake_now, and other queued events; batches notifications; and checkpoints only after delivery or confirmed no-op.
Use --dry-run without sending or updating state.
State may reveal file activity. Apply a retention bound, for example daily:
python3 scripts/prune_state.py --state-dir ./state \
--keep-event-lines 10000 --keep-wake-lines 2000
Choose lower limits for sensitive paths. Do not ship or publish runtime state/.
python3 daemon.py --once
python3 scripts/check_wake_requests.py --state-dir ./state --target TEST --dry-run
python3 scripts/prune_state.py --state-dir ./state