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.
npx skills add oceanbase/seekdb-ecology-plugins --skill importing-to-seekdbgit clone --depth 1 https://github.com/oceanbase/seekdb-ecology-pluginsWrote 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.
[](https://agentmods.dev/skills/oceanbase/seekdb-ecology-plugins/importing-to-seekdb)<a href="https://agentmods.dev/skills/oceanbase/seekdb-ecology-plugins/importing-to-seekdb"><img src="https://agentmods.dev/badge/skills/oceanbase/seekdb-ecology-plugins/importing-to-seekdb/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/oceanbase/seekdb-ecology-plugins/importing-to-seekdb"><img src="https://agentmods.dev/badge/skills/oceanbase/seekdb-ecology-plugins/importing-to-seekdb.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00144 | $0.01579 |
| Opus 5 | $0.00072 | $0.00790 |
| Sonnet 5 | $0.00029 | $0.00316 |
| Haiku 4.5 | $0.00014 | $0.00158 |
Grade A, and why
importing-to-seekdb 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 10d ago.
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.
How it starts
The opening of the file, as written. The whole thing — 166 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Import Data Files to seekdb
Read, preview, and import CSV or Excel files into seekdb vector database with optional column vectorization for semantic search. Also provides collection delete functionality.
Path Convention
Note: All paths in this document (e.g.,
scripts/,example-data/) are relative to THIS skill directory, not the project root.
Prerequisites
- Python 3.10+ installed
- Required packages:
pip install pyseekdb pandas openpyxl
Sample Data
Sample data files are provided in the example-data/ directory:
| File | Description |
|---|---|
sample_products.csv |
Sample product data in CSV format |
sample_products.xlsx |
Sample product data in Excel format |
Quick Start
Use the provided scripts/import_to_seekdb.py script:
# Import with vectorization on Details column
python scripts/import_to_seekdb.py import example-data/sample_products.csv --vectorize-column Details
# Import without vectorization
python scripts/import_to_seekdb.py import example-data/sample_products.csv
# Import Excel with custom collection name
python scripts/import_to_seekdb.py import example-data/sample_products.xlsx -v Description -c my_products
# Delete a collection
python scripts/import_to_seekdb.py delete my_collection
Note: To list all collections, use
query_from_seekdb.py listfrom thequerying-from-seekdbskill.
Scripts
This skill provides the following scripts in the scripts/ directory:
| Script | Description |
|---|---|
import_to_seekdb.py |
Main script with CLI interface for importing data and managing collections |
read_excel.py |
Read and preview Excel files with detailed information |
Available Commands
import_to_seekdb.py
| Command | Description |
|---|---|
import <file> |
Import CSV/Excel file to seekdb with optional vectorization |
delete <name> |
Delete a collection from seekdb |
read_excel.py
Read and preview Excel files before importing:
What ships with it
4 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.
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.
- 10d ago First seen · 166 lines · 144 tokens per session scan A 2ad50db48fe5
importing-to-seekdb is a skill published in the GitHub repository oceanbase/seekdb-ecology-plugins (9 stars, last pushed 3mo ago), licensed Apache-2.0. It adds 144 tokens to every session and 1,579 once invoked, about $0.0007 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.
Other skills, from other repositories
qdrant
Vector search engine for production RAG systems.
chroma
Embedding database for RAG and semantic search.
pinecone
Managed vector DB for production RAG and search.
similarity-search-patterns
Implement efficient similarity search with vector databases. Use when building semantic search, implementing nearest neighbor queries, or optimizing retrieval performance.
pgvector-semantic-search
Use this skill for setting up vector similarity search with pgvector for AI/ML embeddings, RAG applications, or semantic search. Trigger when user asks to: Store or search vector embeddings in PostgreSQL Set up semantic search, similarity search, or nearest neighbor search Create HNSW or IVFFlat indexes for vectors…
postgres-hybrid-text-search
Use this skill to implement hybrid search combining BM25 keyword search with semantic vector search using Reciprocal Rank Fusion (RRF). Trigger when user asks to: Combine keyword and semantic search Implement hybrid search or multi-modal retrieval Use BM25/pgtextsearch with pgvector together Implement RRF (Reciprocal…