# Send Multi-Chat Context Manager to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "multi-chat-context-manager",
    "name": "Multi-Chat Context Manager",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Derick001/multi-chat-context-manager",
    "canonicalUrl": "https://clawhub.ai/Derick001/multi-chat-context-manager",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/multi-chat-context-manager",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=multi-chat-context-manager",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "data/contexts.json",
      "scripts/context-manager.sh",
      "scripts/context_manager.py",
      "tests/test_context_manager.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "multi-chat-context-manager",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-05T21:46:26.227Z",
      "expiresAt": "2026-05-12T21:46:26.227Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=multi-chat-context-manager",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=multi-chat-context-manager",
        "contentDisposition": "attachment; filename=\"multi-chat-context-manager-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "multi-chat-context-manager"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/multi-chat-context-manager"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/multi-chat-context-manager",
    "downloadUrl": "https://openagent3.xyz/downloads/multi-chat-context-manager",
    "agentUrl": "https://openagent3.xyz/skills/multi-chat-context-manager/agent",
    "manifestUrl": "https://openagent3.xyz/skills/multi-chat-context-manager/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/multi-chat-context-manager/agent.md"
  }
}
```
## Documentation

### 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
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Derick001
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-05T21:46:26.227Z
- Expires at: 2026-05-12T21:46:26.227Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/multi-chat-context-manager)
- [Send to Agent page](https://openagent3.xyz/skills/multi-chat-context-manager/agent)
- [JSON manifest](https://openagent3.xyz/skills/multi-chat-context-manager/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/multi-chat-context-manager/agent.md)
- [Download page](https://openagent3.xyz/downloads/multi-chat-context-manager)