~~Queue overflow / user blocked during long tasks~~: RESOLVED — Collect mode coalesces queued messages into one turn. Queue feedback shows "⏳ Queued" in Telegram. /stop aborts current run. Cap prevents unbounded growth.
Block streaming / chunking: Long responses could benefit from OpenClaw-style paragraph-aware chunking. Currently we do simple progressive edit. Not urgent — most responses are <4096 chars.
Context compaction: cagent sessions grow unbounded within a session. No compaction mechanism yet. Daily reset is the current workaround. Could add /compact command that triggers a summary turn.
Multi-user DM isolation: Currently single-user assumption (one person talks to the bot). If multiple users message, they share context. Would need per-user sessions like OpenClaw's dmScope: per-channel-peer.