seekdb Documentation Skill
This skill provides comprehensive documentation for the seekdb database. When users ask about seekdb-related topics, you should use the documentation catalog to locate and read the relevant documentation.
Documentation Access Strategy
This skill supports remote-only documentation access: the catalog and document files are fetched from GitHub.
Remote Documentation URLs
- Base URL:
https://raw.githubusercontent.com/oceanbase/seekdb-doc/V1.0.0/en-US/
- Catalog File:
https://raw.githubusercontent.com/oceanbase/seekdb-doc/V1.0.0/en-US/450.reference/1600.seekdb-docs-catalog.md
- Full Document URL: Base URL + File Path (from catalog)
How to Use This Skill
When a user asks about seekdb, follow these steps:
Step 1: Access the Documentation Catalog
- Fetch the remote catalog:
https://raw.githubusercontent.com/oceanbase/seekdb-doc/V1.0.0/en-US/450.reference/1600.seekdb-docs-catalog.md
- If the request fails (network error, timeout, etc.), inform the user that the documentation is currently unavailable and suggest retrying later
The catalog contains:
- All documentation entries organized by category
- File paths for each documentation file
- Descriptions of what each document covers
- Quick reference section for common topics
Step 2: Match the Query to Documentation
Search through the catalog for entries whose Description matches the user's query. Look for:
- Exact keyword matches (e.g., "jina" → "Jina model integration")
- Related terms (e.g., "integration" → entries under "Model Platform Integrations", "Framework Integrations", etc.)
- Category matches (e.g., "vector search" → entries under "Vector Search" section)
The catalog is organized into these main categories:
- Get Started: Quick start tutorials and basic operations
- Development Guide: Vector search, hybrid search, AI functions, MCP server, multi-model data
- Integrations: Frameworks, model platforms, developer tools, workflows, MCP clients
- Guides: Deployment, management, security, OBShell, performance testing
- Reference: SQL syntax, PL, error codes, SDK APIs
- Tutorials: Step-by-step tutorials and scenarios
Step 3: Read the Documentation File
Once you've identified the matching entry, construct the full URL and fetch the document:
- Full URL =
https://raw.githubusercontent.com/oceanbase/seekdb-doc/V1.0.0/en-US/ + File Path
- Example:
https://raw.githubusercontent.com/oceanbase/seekdb-doc/V1.0.0/en-US/200.develop/600.search/300.vector-search/300.vector-similarity-search.md
Fetch the document content from this URL to answer the user.
Examples
Example 1: Remote Access
User: "How do I use vector search in seekdb?"
Process:
- Fetch remote catalog:
https://raw.githubusercontent.com/oceanbase/seekdb-doc/V1.0.0/en-US/450.reference/1600.seekdb-docs-catalog.md
- Find entries under "Vector Search" section
- Fetch remote doc:
https://raw.githubusercontent.com/oceanbase/seekdb-doc/V1.0.0/en-US/200.develop/600.search/300.vector-search/100.vector-search-intro.md
Example 2: Overview Query
User: "What is seekdb?"
Process:
- Fetch remote catalog:
https://raw.githubusercontent.com/oceanbase/seekdb-doc/V1.0.0/en-US/450.reference/1600.seekdb-docs-catalog.md
- Find entry under "Seekdb Overview"
- Fetch remote doc:
https://raw.githubusercontent.com/oceanbase/seekdb-doc/V1.0.0/en-US/100.get-started/10.overview/10.seekdb-overview.md
Example 3: Subsequent Query in Same Conversation
User: "Now tell me about hybrid search"
(Previous query in this conversation successfully used remote)
Process:
- Already have the catalog from previous fetch
- Find entries under "Hybrid Search" section from the catalog
- Fetch remote doc:
https://raw.githubusercontent.com/oceanbase/seekdb-doc/V1.0.0/en-US/200.develop/600.search/500.hybrid-search.md
Example 4: Integration Query
User: "I want to integrate seekdb with jina"
Process:
- Fetch remote catalog:
https://raw.githubusercontent.com/oceanbase/seekdb-doc/V1.0.0/en-US/450.reference/1600.seekdb-docs-catalog.md
- Find entry under "Model Platform Integrations": "Guide to integrating seekdb vector search with Jina AI..."
- Extract file path:
300.integrations/200.model-platforms/100.jina.md
- Fetch remote doc:
https://raw.githubusercontent.com/oceanbase/seekdb-doc/V1.0.0/en-US/300.integrations/200.model-platforms/100.jina.md
Guidelines
- Use remote (GitHub) only — fetch catalog and documents from the remote URLs; there is no local mode
- On fetch failure, inform the user that docs are temporarily unavailable and suggest retrying or checking network
- Match descriptions semantically - don't just look for exact keyword matches
- Use the Quick Reference section at the bottom of the catalog for common topics
- If multiple entries match, fetch all relevant files to provide comprehensive answers
URL Reference
Remote
- Catalog:
https://raw.githubusercontent.com/oceanbase/seekdb-doc/V1.0.0/en-US/450.reference/1600.seekdb-docs-catalog.md
- Base URL:
https://raw.githubusercontent.com/oceanbase/seekdb-doc/V1.0.0/en-US/
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
1---2name: seekdb-docs3description: Provides documentation and knowledge for seekdb database. When users ask about seekdb topics, automatically locate relevant documentation through the catalog file (from github).4---56# seekdb Documentation Skill78This skill provides comprehensive documentation for the seekdb database. When users ask about seekdb-related topics, you should use the documentation catalog to locate and read the relevant documentation.910## Documentation Access Strategy1112This skill supports **remote-only** documentation access: the catalog and document files are fetched from GitHub.1314### Remote Documentation URLs1516- **Base URL**: `https://raw.githubusercontent.com/oceanbase/seekdb-doc/V1.0.0/en-US/`17- **Catalog File**: `https://raw.githubusercontent.com/oceanbase/seekdb-doc/V1.0.0/en-US/450.reference/1600.seekdb-docs-catalog.md`18- **Full Document URL**: Base URL + File Path (from catalog)1920## How to Use This Skill2122When a user asks about seekdb, follow these steps:2324### Step 1: Access the Documentation Catalog25261. Fetch the remote catalog: `https://raw.githubusercontent.com/oceanbase/seekdb-doc/V1.0.0/en-US/450.reference/1600.seekdb-docs-catalog.md`272. If the request fails (network error, timeout, etc.), inform the user that the documentation is currently unavailable and suggest retrying later2829The catalog contains:30- All documentation entries organized by category31- File paths for each documentation file32- Descriptions of what each document covers33- Quick reference section for common topics3435### Step 2: Match the Query to Documentation3637Search through the catalog for entries whose **Description** matches the user's query. Look for:38- Exact keyword matches (e.g., "jina" → "Jina model integration")39- Related terms (e.g., "integration" → entries under "Model Platform Integrations", "Framework Integrations", etc.)40- Category matches (e.g., "vector search" → entries under "Vector Search" section)4142The catalog is organized into these main categories:43- **Get Started**: Quick start tutorials and basic operations44- **Development Guide**: Vector search, hybrid search, AI functions, MCP server, multi-model data45- **Integrations**: Frameworks, model platforms, developer tools, workflows, MCP clients46- **Guides**: Deployment, management, security, OBShell, performance testing47- **Reference**: SQL syntax, PL, error codes, SDK APIs48- **Tutorials**: Step-by-step tutorials and scenarios4950### Step 3: Read the Documentation File5152Once you've identified the matching entry, construct the full URL and fetch the document:5354- Full URL = `https://raw.githubusercontent.com/oceanbase/seekdb-doc/V1.0.0/en-US/` + File Path55- Example: `https://raw.githubusercontent.com/oceanbase/seekdb-doc/V1.0.0/en-US/200.develop/600.search/300.vector-search/300.vector-similarity-search.md`5657Fetch the document content from this URL to answer the user.5859## Examples6061### Example 1: Remote Access62**User**: "How do I use vector search in seekdb?"6364**Process**:651. Fetch remote catalog: `https://raw.githubusercontent.com/oceanbase/seekdb-doc/V1.0.0/en-US/450.reference/1600.seekdb-docs-catalog.md`662. Find entries under "Vector Search" section673. Fetch remote doc: `https://raw.githubusercontent.com/oceanbase/seekdb-doc/V1.0.0/en-US/200.develop/600.search/300.vector-search/100.vector-search-intro.md`6869### Example 2: Overview Query70**User**: "What is seekdb?"7172**Process**:731. Fetch remote catalog: `https://raw.githubusercontent.com/oceanbase/seekdb-doc/V1.0.0/en-US/450.reference/1600.seekdb-docs-catalog.md`742. Find entry under "Seekdb Overview"753. Fetch remote doc: `https://raw.githubusercontent.com/oceanbase/seekdb-doc/V1.0.0/en-US/100.get-started/10.overview/10.seekdb-overview.md`7677### Example 3: Subsequent Query in Same Conversation78**User**: "Now tell me about hybrid search"79(Previous query in this conversation successfully used remote)8081**Process**:821. Already have the catalog from previous fetch832. Find entries under "Hybrid Search" section from the catalog843. Fetch remote doc: `https://raw.githubusercontent.com/oceanbase/seekdb-doc/V1.0.0/en-US/200.develop/600.search/500.hybrid-search.md`8586### Example 4: Integration Query87**User**: "I want to integrate seekdb with jina"8889**Process**:901. Fetch remote catalog: `https://raw.githubusercontent.com/oceanbase/seekdb-doc/V1.0.0/en-US/450.reference/1600.seekdb-docs-catalog.md`912. Find entry under "Model Platform Integrations": "Guide to integrating seekdb vector search with Jina AI..."923. Extract file path: `300.integrations/200.model-platforms/100.jina.md`934. Fetch remote doc: `https://raw.githubusercontent.com/oceanbase/seekdb-doc/V1.0.0/en-US/300.integrations/200.model-platforms/100.jina.md`9495## Guidelines9697- **Use remote (GitHub) only** — fetch catalog and documents from the remote URLs; there is no local mode98- **On fetch failure**, inform the user that docs are temporarily unavailable and suggest retrying or checking network99- **Match descriptions semantically** - don't just look for exact keyword matches100- **Use the Quick Reference section** at the bottom of the catalog for common topics101- **If multiple entries match**, fetch all relevant files to provide comprehensive answers102103## URL Reference104105### Remote106- **Catalog**: `https://raw.githubusercontent.com/oceanbase/seekdb-doc/V1.0.0/en-US/450.reference/1600.seekdb-docs-catalog.md`107- **Base URL**: `https://raw.githubusercontent.com/oceanbase/seekdb-doc/V1.0.0/en-US/`108109---110> Converted and distributed by [TomeVault](https://tomevault.io/claim/demerzels-lab) — claim your Tome and manage your conversions.111<!-- tomevault:4.0:skill_md:2026-04-13 -->