{
  "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": {
    "downloadMode": "redirect",
    "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",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "data/contexts.json",
      "scripts/context-manager.sh",
      "scripts/context_manager.py",
      "tests/test_context_manager.py"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/multi-chat-context-manager",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "What This Does",
        "body": "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."
      },
      {
        "title": "When To Use",
        "body": "You need to manually store conversation history per channel or user\nYou want a simple key-value context store for your scripts\nYou're building custom integrations and need context persistence"
      },
      {
        "title": "Usage",
        "body": "Store a conversation:\npython3 scripts/context_manager.py store --channel \"telegram-123\" --user \"user-456\" --message \"Hello\" --response \"Hi there\"\n\nRetrieve context:\npython3 scripts/context_manager.py retrieve --channel \"telegram-123\" --user \"user-456\"\n\nClear context:\npython3 scripts/context_manager.py clear --channel \"telegram-123\"\n\nList all contexts:\npython3 scripts/context_manager.py list"
      },
      {
        "title": "Example 1: Store and retrieve",
        "body": "Store:\npython3 scripts/context_manager.py store --channel \"discord-general\" --user \"john\" --message \"What is AI?\" --response \"AI is artificial intelligence.\"\n\nRetrieve:\npython3 scripts/context_manager.py retrieve --channel \"discord-general\" --user \"john\"\n\nOutput:\n{\n\"channel_id\": \"discord-general\",\n\"user_id\": \"john\",\n\"history\": [{\"message\": \"What is AI?\", \"response\": \"AI is artificial intelligence.\"}]\n}"
      },
      {
        "title": "Requirements",
        "body": "Python 3.x\nNo external dependencies"
      },
      {
        "title": "Limitations",
        "body": "This is a CLI tool, not an auto-integration plugin\nDoes not automatically intercept messages from platforms\nStores data in plaintext JSON (not encrypted)\nNo file-locking for concurrent access\nYou must call it manually from your scripts or workflows"
      }
    ],
    "body": "Multi-Chat Context Manager\nWhat This Does\n\nA 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.\n\nWhen To Use\nYou need to manually store conversation history per channel or user\nYou want a simple key-value context store for your scripts\nYou're building custom integrations and need context persistence\nUsage\n\nStore a conversation: python3 scripts/context_manager.py store --channel \"telegram-123\" --user \"user-456\" --message \"Hello\" --response \"Hi there\"\n\nRetrieve context: python3 scripts/context_manager.py retrieve --channel \"telegram-123\" --user \"user-456\"\n\nClear context: python3 scripts/context_manager.py clear --channel \"telegram-123\"\n\nList all contexts: python3 scripts/context_manager.py list\n\nExamples\nExample 1: Store and retrieve\n\nStore: python3 scripts/context_manager.py store --channel \"discord-general\" --user \"john\" --message \"What is AI?\" --response \"AI is artificial intelligence.\"\n\nRetrieve: python3 scripts/context_manager.py retrieve --channel \"discord-general\" --user \"john\"\n\nOutput: { \"channel_id\": \"discord-general\", \"user_id\": \"john\", \"history\": [{\"message\": \"What is AI?\", \"response\": \"AI is artificial intelligence.\"}] }\n\nRequirements\nPython 3.x\nNo external dependencies\nLimitations\nThis is a CLI tool, not an auto-integration plugin\nDoes not automatically intercept messages from platforms\nStores data in plaintext JSON (not encrypted)\nNo file-locking for concurrent access\nYou must call it manually from your scripts or workflows"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Derick001/multi-chat-context-manager",
    "publisherUrl": "https://clawhub.ai/Derick001/multi-chat-context-manager",
    "owner": "Derick001",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}