โ† All skills
Tencent SkillHub ยท Developer Tools

Multi-Chat Context Manager

CLI tool to store and retrieve conversation contexts per channel/user.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

CLI tool to store and retrieve conversation contexts per channel/user.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, data/contexts.json, scripts/context-manager.sh, scripts/context_manager.py, tests/test_context_manager.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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.

Upgrade existing

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 6 sections Open source page

What This Does

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.

When To Use

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

Usage

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

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."}] }

Requirements

Python 3.x No external dependencies

Limitations

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

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Scripts1 Docs1 Config
  • SKILL.md Primary doc
  • scripts/context_manager.py Scripts
  • scripts/context-manager.sh Scripts
  • tests/test_context_manager.py Scripts
  • data/contexts.json Config