# Send seekdb 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": "seekdb-docs",
    "name": "seekdb",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/davidzhangbj/seekdb-docs",
    "canonicalUrl": "https://clawhub.ai/davidzhangbj/seekdb-docs",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/seekdb-docs",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=seekdb-docs",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/examples.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "seekdb-docs",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T22:35:05.432Z",
      "expiresAt": "2026-05-08T22:35:05.432Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=seekdb-docs",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=seekdb-docs",
        "contentDisposition": "attachment; filename=\"seekdb-docs-0.2.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "seekdb-docs"
      },
      "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/seekdb-docs"
    },
    "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/seekdb-docs",
    "downloadUrl": "https://openagent3.xyz/downloads/seekdb-docs",
    "agentUrl": "https://openagent3.xyz/skills/seekdb-docs/agent",
    "manifestUrl": "https://openagent3.xyz/skills/seekdb-docs/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/seekdb-docs/agent.md"
  }
}
```
## Documentation

### seekdb Documentation

Provides access to ~1000 seekdb documentation entries through a catalog-based search system. Remote-only mode: this skill ships only the catalog; doc content is always loaded from public documentation URLs (no local seekdb-docs/).

### Scope and behavior

This skill is documentation-only. It does not execute code or run scripts. The agent reads the local catalog (one JSONL file) and fetches doc content from public read-only URLs. No credentials, no installs, no subprocess calls.

### Version Info

Documentation versions covered: V1.0.0, V1.1.0 (merged, latest takes priority)
Latest version: V1.1.0

The branch field in catalog entries indicates which Git branch hosts the file (used for remote fallback URLs only). It does NOT indicate which seekdb version the content applies to — many docs apply to all versions.
If the user asks about a specific seekdb version, note that this documentation set reflects the latest available content and may not distinguish version-specific differences.

### Path Resolution (Do First)

Read this SKILL.md to get its absolute path and extract the parent directory as <skill_dir>
Catalog (required): <skill_dir>references/seekdb-docs-catalog.jsonl
If missing locally, load from: https://raw.githubusercontent.com/oceanbase/seekdb-ecology-plugins/main/agent-skills/skills/seekdb/references/seekdb-docs-catalog.jsonl

### Step 1: Search Catalog

Keyword search (preferred for most queries)
Search the catalog file for lines containing the query keywords. File: <skill_dir>references/seekdb-docs-catalog.jsonl. Each line is one JSON object with path, description, and branch. Match by keyword or meaning.

Full catalog (when needed): same file as above, or fetch https://raw.githubusercontent.com/oceanbase/seekdb-ecology-plugins/main/agent-skills/skills/seekdb/references/seekdb-docs-catalog.jsonl. Format: JSONL — one {"path": "...", "description": "...", "branch": "..."} per line (~1000 entries).

### Step 2: Match Query

Extract path, description, and branch from search results
Select entries whose descriptions best match the query semantically (match by meaning, not just keywords)
Consider multiple matches for comprehensive answers

### Step 3: Read Document (remote)

Fetch the document from the public docs URL (no local doc files in this package):

URL: https://raw.githubusercontent.com/oceanbase/seekdb-doc/[branch]/en-US/[path]
[branch] and [path] come from the catalog entry (e.g. V1.0.0, V1.1.0). Some files exist only on a specific branch.

### Example

Query: "How to integrate with Claude Code?"

1. Search catalog: look for lines containing "claude code" in <skill_dir>references/seekdb-docs-catalog.jsonl
2. Match: {"path": "300.integrations/300.developer-tools/700.claude-code.md",
           "description": "This guide explains how to use the seekdb plugin with Claude Code...",
           "branch": "V1.0.0"}
3. Fetch doc: https://raw.githubusercontent.com/oceanbase/seekdb-doc/V1.0.0/en-US/300.integrations/300.developer-tools/700.claude-code.md

See examples.md for more complete workflow examples.

### Notes

Multi-version: Each catalog entry's branch field is used in the doc URL; some files exist only on a specific branch.

### Category Overview

Get Started: Quick start, basic operations, overview
Development: Vector search, hybrid search, AI functions, MCP, multi-model
Integrations: Frameworks, model platforms, developer tools, workflows
Guides: Deployment, management, security, OBShell, performance
Reference: SQL syntax, PL, error codes, SDK APIs
Tutorials: Step-by-step scenarios
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: davidzhangbj
- Version: 0.1.8
## 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-01T22:35:05.432Z
- Expires at: 2026-05-08T22:35:05.432Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/seekdb-docs)
- [Send to Agent page](https://openagent3.xyz/skills/seekdb-docs/agent)
- [JSON manifest](https://openagent3.xyz/skills/seekdb-docs/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/seekdb-docs/agent.md)
- [Download page](https://openagent3.xyz/downloads/seekdb-docs)