Use when the user asks what was said earlier in a chat, wants an old decision, exact wording, prior links, or suspects the agent forgot conversation context across Telegram, BlueBubbles, Feishu, ChatGPT, Claude, or other archived chat sources. Search memory_search first, then search the local conversation archive for exact recall.
Use this skill for historical recall across many kinds of chat history, not just live messaging channels.
This skill works by searching the local raw archive tree:
logs/message-archive-raw/That means it can search any chat history that has already been normalized into that archive format.
Typical sources include:
chat-history-importchat-history-importThe conversation-archive plugin code also has explicit mappings ready for WhatsApp, Discord, Signal, Webchat, Slack, and Line if those channels are enabled later.
So this skill should be thought of as a general archive search skill, not just a Telegram / Feishu recall helper.
If the archive data exists in logs/message-archive-raw/, this skill can search it.
memory_search for topic, person, or decision recall.python3 skills/conversation-history/scripts/search_archive.py --query "keyword" --limit 8
python3 skills/conversation-history/scripts/search_archive.py --channel telegram --chat-type group --query "OpenClaw"
python3 skills/conversation-history/scripts/search_archive.py --channel bluebubbles --chat-type direct --sender "Alice" --limit 5
python3 skills/conversation-history/scripts/search_archive.py --channel feishu --from-date 2026-03-01 --to-date 2026-03-14 --query "Confluence"
python3 skills/conversation-history/scripts/search_archive.py --channel chatgpt --query "memory export"
python3 skills/conversation-history/scripts/search_archive.py --channel claude --query "project plan"
python3 skills/conversation-history/scripts/search_archive.py --query "shareholder letter" --limit 5
Use channel filters when the source is known. If the user only cares about content recall and not the original source, broad keyword search is often enough.
memory_search and archive search.This skill becomes much more useful when paired with archive-producing tools.
openclaw-conversation-archiveopenclaw-chat-history-importWithout one of those archive-producing workflows, this skill can only search whatever archive files already exist locally.