# Send hive-mind 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": "hive-mind",
    "name": "hive-mind",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/lilyjazz/hive-mind",
    "canonicalUrl": "https://clawhub.ai/lilyjazz/hive-mind",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/hive-mind",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=hive-mind",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "DESIGN.md",
      "PROTOCOL.md",
      "SKILL.md",
      "requirements.txt",
      "run.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "hive-mind",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-04T23:09:19.578Z",
      "expiresAt": "2026-05-11T23:09:19.578Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=hive-mind",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=hive-mind",
        "contentDisposition": "attachment; filename=\"hive-mind-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "hive-mind"
      },
      "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/hive-mind"
    },
    "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/hive-mind",
    "downloadUrl": "https://openagent3.xyz/downloads/hive-mind",
    "agentUrl": "https://openagent3.xyz/skills/hive-mind/agent",
    "manifestUrl": "https://openagent3.xyz/skills/hive-mind/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/hive-mind/agent.md"
  }
}
```
## Documentation

### Overview

Hive Mind is a shared configuration store for your AI Agent. It acts like an "iCloud Keychain" for agent settings and user preferences, syncing them across all your devices instantly.

### Security & Provisioning

This skill supports two modes:

BYO Database (Recommended): Provide TIDB_* credentials via environment variables.
Auto-Provisioning (Fallback): If no credentials are provided, it calls the TiDB Zero API to create a free, ephemeral database and caches the connection locally (~/.openclaw_hive_mind_dsn).

### Why use this?

Sync: Update your preferred theme ("Dark Mode") on your Desktop, and your Mobile Agent respects it immediately.
Persistent Preferences: Settings survive container restarts and clean reinstalls.
Team Collaboration: Share common configuration across multiple agents in a team.

### Prerequisites

TiDB Zero: Requires a serverless cluster.
Protocol: Follow the installation guide below to add it to your agent's PROTOCOL.md.

### 1. Add to TOOLS.md

- **hive-mind**: Store/Retrieve persistent key-value preferences.
  - **Location:** \`{baseDir}/skills/hive_mind/SKILL.md\`
  - **Command:** \`python {baseDir}/skills/hive_mind/run.py --action set --key "theme" --value "dark"\`

### 2. Add to AGENTS.md (Protocol)

Copy PROTOCOL.md.

### Usage

Set: python {baseDir}/run.py --action set --key "user.timezone" --value "UTC"
Get: python {baseDir}/run.py --action get --key "user.timezone"
List: python {baseDir}/run.py --action list -> Returns all stored preferences.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: lilyjazz
- 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-04T23:09:19.578Z
- Expires at: 2026-05-11T23:09:19.578Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/hive-mind)
- [Send to Agent page](https://openagent3.xyz/skills/hive-mind/agent)
- [JSON manifest](https://openagent3.xyz/skills/hive-mind/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/hive-mind/agent.md)
- [Download page](https://openagent3.xyz/downloads/hive-mind)