another architecture question. We have Julie (a GPT-4o mini agent) monitoring 12 WhatsApp groups. The goal is to log every incoming group message to a file on disk in real time, then use scheduled crons (3x/day) to generate reports from that file.
Current setup: Julie is bound to the 12 groups via
openclaw.jsonbindings. She respondsNO_REPLYto everything. The problem is she only seems to "wake up" when a cron fires ā she's not persistently receiving messages in real time.Question: what's the right architecture for an agent that needs to process every group message as it arrives and write to a file ā without responding in the group? Is there a persistent session mode, or should we use a different binding approach?