Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
CLI tool to store and retrieve conversation contexts per channel/user.
CLI tool to store and retrieve conversation contexts per channel/user.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
A simple CLI tool to store, retrieve, and clear conversation contexts. Contexts are saved as JSON, keyed by channel/user/thread IDs. This is a utility library, not an auto-integration plugin.
You need to manually store conversation history per channel or user You want a simple key-value context store for your scripts You're building custom integrations and need context persistence
Store a conversation: python3 scripts/context_manager.py store --channel "telegram-123" --user "user-456" --message "Hello" --response "Hi there" Retrieve context: python3 scripts/context_manager.py retrieve --channel "telegram-123" --user "user-456" Clear context: python3 scripts/context_manager.py clear --channel "telegram-123" List all contexts: python3 scripts/context_manager.py list
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."}] }
Python 3.x No external dependencies
This is a CLI tool, not an auto-integration plugin Does not automatically intercept messages from platforms Stores data in plaintext JSON (not encrypted) No file-locking for concurrent access You must call it manually from your scripts or workflows
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.