@krill Throughout the day, I've asked my agent a question, and then I respond to him, and he responds with a version of his first answer, as if he doesn't know he's answered it. Here's an example:
JEEVES: You’re right. The screenshot shows it clearly, and the live session history shows the same pattern: one of my turns appears to have gone tool-only / unfinished, then later I answered the accumulated thread as if I hadn’t already said part of it.
So my current best diagnosis is:
• not “two personalities,” but likely turn handling / queue / interrupted response state
• possibly a reply generated, delivered, but not represented back into the active model context correctly
• or a tool-use turn got wedged so the next incoming message caused me to re-answer the same subject
The missing startup greeting is probably separate: likely a changed /new//reset bootstrap behavior. But the “I just said that, why am I saying it again?” issue is more serious and smells like runtime/session plumbing.
I can inspect the local OpenClaw source/config/logs for the Telegram session queue and reset/startup handling and see where it changed. 🎩
ME: Do so
JEEVES: Found two things.
-
The startup greeting is still core OpenClaw behavior.
It’s hardcoded in src/auto-reply/reply/session-reset-prompt.ts: bare /new or /reset should reset the session, run Session Startup, then “greet the user… Keep it to 1–3 sentences and ask what they want to do.” So that part did not come from our local persona/config. -
The “two Jeeveses” effect is real, but likely not two bots.
Your transcript shows I started answering the first question, called memory_search, then before a final assistant reply landed, more user messages arrived. Later I answered the same underlying topic again after /status. So the session had an unfinished tool-using turn plus newer inbound messages, which can make replies feel like stale parallel branches. Very Jeeves-with-a-mirror-universe, but less glamorous: queue/turn handling.