π¦ ClawHub
Multi-Chat Context Manager
by @derick001
CLI tool to store and retrieve conversation contexts per channel/user.
β‘ When to Use
π‘ Examples
Example 1: Store and retrieve
Store: python3 scripts/context_manager.py store --channel "discord-general" --user "john" --message "What is AI?" --response "AI is artificial intelligence."
Retrieve: python3 scripts/context_manager.py retrieve --channel "discord-general" --user "john"
Output: { "channel_id": "discord-general", "user_id": "john", "history": [{"message": "What is AI?", "response": "AI is artificial intelligence."}] }
TERMINAL
clawhub install multi-chat-context-manager