seekdb-docs

seekdb-docs is a skill for Claude Code, Codex from oceanbase/seekdb-ecology-plugins. It costs 51 tokens per session (977 once invoked), scanned A, original, Apache-2.0.

A searchable catalogue of about 1,000 seekdb documentation entries, covering seekdb versions 1.0.0 and 1.1.0.

In plain words
What is it for?
Use it to look up seekdb features, configuration, and usage guidance, with the latest available documentation preferred when versions overlap.
Why use it?
It provides a focused way to find seekdb documentation without searching through the entire documentation set manually.

Skill for Claude CodeCodex

Part of the seekdb-plugin plugin — 4 skills shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/oceanbase/seekdb-ecology-plugins/seekdb
Any agent
npx skills add oceanbase/seekdb-ecology-plugins --skill seekdb
Clone the repo
git clone --depth 1 https://github.com/oceanbase/seekdb-ecology-plugins

Made for: Claude Code, Codex.

Or install seekdb-plugin, the plugin that ships this one along with the rest of its 4 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for seekdb-docs

README.md
[![agentmods](https://agentmods.dev/badge/skills/oceanbase/seekdb-ecology-plugins/seekdb.svg)](https://agentmods.dev/skills/oceanbase/seekdb-ecology-plugins/seekdb)
Your own site
<a href="https://agentmods.dev/skills/oceanbase/seekdb-ecology-plugins/seekdb"><img src="https://agentmods.dev/badge/skills/oceanbase/seekdb-ecology-plugins/seekdb.svg" alt="Measured on agentmods" height="20"></a>
Per session 51 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 977 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00051 $0.00977
Opus 5 $0.00026 $0.00489
Sonnet 5 $0.00010 $0.00195
Haiku 4.5 $0.00005 $0.00098

Measured 5d ago against content hash 769bab5f6050, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

seekdb-docs scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/generate_catalog.py, scripts/update_docs.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

agent-skills/skills/seekdb/SKILL.md · 85 lines

How it starts

The opening of the file, as written. The whole thing — 85 lines — stays where its author put it; the contents beside it link to each section on GitHub.

seekdb Documentation

Provides access to ~1000 seekdb documentation entries through a catalog-based search system.

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)

All resource paths are relative to this SKILL.md's location. Resolve the skill directory first:

  1. Read this SKILL.md to get its absolute path
  2. Extract the parent directory as <skill_dir>
  3. Catalog: <skill_dir>references/seekdb-docs-catalog.jsonl
  4. Docs base: <skill_dir>seekdb-docs/

Workflow

Step 1: Search Catalog

Grep search (preferred for ~90% of queries):

grep -i "keyword" <skill_dir>references/seekdb-docs-catalog.jsonl

Full catalog load (only when grep returns no results or semantic matching is needed):

  • Local: <skill_dir>references/seekdb-docs-catalog.jsonl
  • Remote fallback: 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

Local-first with remote fallback:

  1. Try local: <skill_dir>seekdb-docs/[path]
  2. Fallback: https://raw.githubusercontent.com/oceanbase/seekdb-doc/[branch]/en-US/[path]
    • [branch] comes from the catalog entry's branch field (e.g. V1.0.0, V1.1.0)
    • Docs span multiple version branches; some files only exist in a specific branch

Read the full file on GitHub · 85 lines

Files

What ships with it

60 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 85 lines · 51 tokens per session scan A 769bab5f6050

Subscribe to this mod's changes

seekdb-docs is a skill published in the GitHub repository oceanbase/seekdb-ecology-plugins (9 stars, last pushed 3mo ago), licensed Apache-2.0. It adds 51 tokens to every session and 977 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

schema-exploration

Lists tables, describes columns and data types, identifies foreign key relationships, and maps entity relationships in a database. Use when the user asks about database schema, table structure, column types, what tables exist, ERD, foreign keys, or how entities relate.

langchain-ai/deepagents · 57 tokens

debugging

How to debug tursodb using Bytecode comparison, logging, ThreadSanitizer, deterministic simulation, and corruption analysis tools.

tursodatabase/turso · 28 tokens

sdk-design

Doctrine for designing and evolving any SDK Grida ships — TypeScript, Rust, or otherwise. "SDK" here means a surface that crosses a foreign-or-foreign-treated boundary: published packages, separately-versioned consumers, FFI bindings, public-by-design modules. An SDK's job is to refuse; a strict, honest surface…

gridaco/grida · 199 tokens

ha-data-stores

Map of Hope Agent's local data stores and safe read-only query workflow. Use when the user asks where Hope Agent stores data, wants to inspect sessions/messages/memory/logs/background jobs/knowledge indexes/settings, asks the model to query local app data, or debugging requires checking persisted state. Trigger…

shiwenwen/hope-agent · 115 tokens

supabase

Supabase / PostgREST Row-Level-Security playbook — pull the anon (or leaked servicerole) key out of the frontend JS, map tables from the auto-generated OpenAPI spec, test anonymous RLS READ disclosures (PII/secret leaks), and anonymous RLS WRITE abuse (insert/update/delete — e.g. forging…

PentesterFlow/agent · 120 tokens

nornicdb-cypher-queries

Pick fast, predictable Cypher query shapes in NornicDB — point lookups, batch retrieval, pagination, search, traversal, batched UNWIND/MERGE writes, cleanup, multi-tenant isolation. Use when writing or reviewing Cypher whose latency or throughput matters; maps user intent to the executor's hot-path query templates.

orneryd/NornicDB · 79 tokens