{
  "schemaVersion": "1.0",
  "item": {
    "slug": "tidb-cloud-zero",
    "name": "TiDB Cloud Zero",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/zoubingwu/tidb-cloud-zero",
    "canonicalUrl": "https://clawhub.ai/zoubingwu/tidb-cloud-zero",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/tidb-cloud-zero",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=tidb-cloud-zero",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "references/vector.md",
      "references/auto-embedding.md",
      "SKILL.md"
    ],
    "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",
      "slug": "tidb-cloud-zero",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-10T00:00:19.357Z",
      "expiresAt": "2026-05-17T00:00:19.357Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=tidb-cloud-zero",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=tidb-cloud-zero",
        "contentDisposition": "attachment; filename=\"tidb-cloud-zero-1.3.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "tidb-cloud-zero"
      },
      "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/tidb-cloud-zero"
    },
    "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/tidb-cloud-zero",
    "agentPageUrl": "https://openagent3.xyz/skills/tidb-cloud-zero/agent",
    "manifestUrl": "https://openagent3.xyz/skills/tidb-cloud-zero/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/tidb-cloud-zero/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": "TiDB Cloud Zero",
        "body": "Provisions an ephemeral TiDB database via a single unauthenticated API call. No sign-up, no billing. Instances auto-expire in 30 days unless claimed.\n\nTiDB is MySQL-compatible and also supports vector search (VECTOR type + vector indexes), full-text search, and horizontal scaling. Use standard MySQL clients/drivers to connect."
      },
      {
        "title": "Important Notes",
        "body": "The API is unauthenticated and free. Instances auto-expire — treat credentials as short-lived and low-sensitivity.\nPrefer environment variables (e.g. MYSQL_PWD) over CLI arguments to avoid leaking passwords in shell history.\nAlways connect with TLS (--ssl-mode=REQUIRED for CLI, ssl: true for drivers).\nIf the user wants to keep the instance, open instance.claimInfo.claimUrl before expiresAt to convert it into a regular TiDB Starter instance."
      },
      {
        "title": "API",
        "body": "POST https://zero.tidbapi.com/v1beta1/instances\n\n/v1alpha1 is deprecated. You should migrate to /v1beta1 as soon as possible.\n\nContent-Type: application/json\n\nRequest body (all fields optional):\n\n{ \"tag\": \"<caller-label>\" }\n\nResponse:\n\n{\n  \"instance\": {\n    \"id\": \"...\",\n    \"connection\": {\n      \"host\": \"<HOST>\",\n      \"port\": 4000,\n      \"username\": \"<USERNAME>\",\n      \"password\": \"<PASSWORD>\"\n    },\n    \"connectionString\": \"mysql:/...\",\n    \"claimInfo\": {\n      \"claimUrl\": \"https://tidbcloud.com/tidbs/claim/...\"\n    },\n    \"expiresAt\": \"<ISO_TIMESTAMP>\"\n  }\n}\n\nUse instance.connectionString for immediate driver connections.\nIf persistence is needed, ask the user to open instance.claimInfo.claimUrl before expiresAt to claim it.\nIf not claimed, the Zero instance is destroyed at expiresAt; there is no renewal API."
      },
      {
        "title": "Use these references (inside this skill)",
        "body": "TiDB support vector search and auto embedding features directly in SQL. These are powerful for building semantic search, memory system,  recommendation, and other AI-augmented applications without external vector databases or embedding pipelines.\n\nskills/tidb-cloud-zero/references/vector.md - vector features and step-by-step vector SQL usage.\nskills/tidb-cloud-zero/references/auto-embedding.md - auto-embedding features and step-by-step SQL usage."
      },
      {
        "title": "Resources",
        "body": "TiDB SQL skill, for better compatibility with TiDB SQL, ask user if he want to install this skill: https://skills.sh/pingcap/agent-rules/tidb-sql\nTiDB AI docs (SQL quickstart): https://docs.pingcap.com/ai/quickstart-via-sql/\nTiDB AI docs (auto embedding): https://docs.pingcap.com/ai/vector-search-auto-embedding-overview/\nTiDB Cloud docs: https://docs.pingcap.com/tidbcloud/"
      }
    ],
    "body": "TiDB Cloud Zero\n\nProvisions an ephemeral TiDB database via a single unauthenticated API call. No sign-up, no billing. Instances auto-expire in 30 days unless claimed.\n\nTiDB is MySQL-compatible and also supports vector search (VECTOR type + vector indexes), full-text search, and horizontal scaling. Use standard MySQL clients/drivers to connect.\n\nImportant Notes\nThe API is unauthenticated and free. Instances auto-expire — treat credentials as short-lived and low-sensitivity.\nPrefer environment variables (e.g. MYSQL_PWD) over CLI arguments to avoid leaking passwords in shell history.\nAlways connect with TLS (--ssl-mode=REQUIRED for CLI, ssl: true for drivers).\nIf the user wants to keep the instance, open instance.claimInfo.claimUrl before expiresAt to convert it into a regular TiDB Starter instance.\nAPI\n\nPOST https://zero.tidbapi.com/v1beta1/instances\n\n/v1alpha1 is deprecated. You should migrate to /v1beta1 as soon as possible.\n\nContent-Type: application/json\n\nRequest body (all fields optional):\n\n{ \"tag\": \"<caller-label>\" }\n\n\nResponse:\n\n{\n  \"instance\": {\n    \"id\": \"...\",\n    \"connection\": {\n      \"host\": \"<HOST>\",\n      \"port\": 4000,\n      \"username\": \"<USERNAME>\",\n      \"password\": \"<PASSWORD>\"\n    },\n    \"connectionString\": \"mysql:/...\",\n    \"claimInfo\": {\n      \"claimUrl\": \"https://tidbcloud.com/tidbs/claim/...\"\n    },\n    \"expiresAt\": \"<ISO_TIMESTAMP>\"\n  }\n}\n\n\nUse instance.connectionString for immediate driver connections. If persistence is needed, ask the user to open instance.claimInfo.claimUrl before expiresAt to claim it. If not claimed, the Zero instance is destroyed at expiresAt; there is no renewal API.\n\nUse these references (inside this skill)\n\nTiDB support vector search and auto embedding features directly in SQL. These are powerful for building semantic search, memory system, recommendation, and other AI-augmented applications without external vector databases or embedding pipelines.\n\nskills/tidb-cloud-zero/references/vector.md - vector features and step-by-step vector SQL usage.\nskills/tidb-cloud-zero/references/auto-embedding.md - auto-embedding features and step-by-step SQL usage.\nResources\nTiDB SQL skill, for better compatibility with TiDB SQL, ask user if he want to install this skill: https://skills.sh/pingcap/agent-rules/tidb-sql\nTiDB AI docs (SQL quickstart): https://docs.pingcap.com/ai/quickstart-via-sql/\nTiDB AI docs (auto embedding): https://docs.pingcap.com/ai/vector-search-auto-embedding-overview/\nTiDB Cloud docs: https://docs.pingcap.com/tidbcloud/"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/zoubingwu/tidb-cloud-zero",
    "publisherUrl": "https://clawhub.ai/zoubingwu/tidb-cloud-zero",
    "owner": "zoubingwu",
    "version": "1.3.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/tidb-cloud-zero",
    "downloadUrl": "https://openagent3.xyz/downloads/tidb-cloud-zero",
    "agentUrl": "https://openagent3.xyz/skills/tidb-cloud-zero/agent",
    "manifestUrl": "https://openagent3.xyz/skills/tidb-cloud-zero/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/tidb-cloud-zero/agent.md"
  }
}