Send into a session or spawn a background run

agents & sessions

// what it does

openclaw sessions send <id> "text" injects a message into an existing conversation; openclaw sessions spawn <agent> --message "..." kicks off a background agent run, optionally --to an existing session. Useful for automation that continues a thread instead of starting fresh.

// shell

$ openclaw sessions send my-session-id "continue where we left off"
$ openclaw sessions spawn work --message "nightly summary"

// gotcha

sessions_spawn and sessions_send are control-plane tools — deny them for any agent handling untrusted content, or a prompt-injected message could drive your other sessions.

// resources