openclaw system
System-level helpers for the Gateway: enqueue system events, control
heartbeats, and view presence.
All system subcommands use Gateway RPC and accept the shared client flags:
Common commands
system event
Enqueue a system event on the main session by default. The next
heartbeat injects it as a System: line in the prompt. Use --mode now to
trigger the heartbeat immediately; next-heartbeat (default) waits for the
next scheduled tick.
Pass --session-key to target a specific session, for example to relay an
async-task completion back to the channel that started it.
Timing exception with
--session-key: when --session-key is supplied,
--mode next-heartbeat collapses to an immediate targeted wake instead of
waiting for the next scheduled tick. Targeted wakes use heartbeat intent
immediate so they bypass the runner’s not-due gate that would otherwise
defer (and effectively drop) an event-intent wake. If you want delayed
delivery, omit --session-key so the event lands on the main session and
rides the next regular heartbeat.--text <text>: required system event text.--mode <mode>:nowornext-heartbeat(default).--session-key <sessionKey>: optional; target a specific agent session instead of the agent’s main session. Keys that do not belong to the resolved agent fall back to the agent’s main session.
system heartbeat last|enable|disable
last: show the last heartbeat event.enable: turn heartbeats back on (use this if they were disabled).disable: pause heartbeats.
system presence
List the current system presence entries the Gateway knows about (nodes,
instances, and similar status lines).
Notes
- Requires a running Gateway reachable by your current config (local or remote).
- System events are ephemeral and not persisted across restarts.