Install
$ agentstack add skill-oceanbase-oceanbase-skills-importing ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
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 list from the querying-from-seekdb skill.
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
importtoseekdb.py
| Command | Description | |---------|-------------| | import | Import CSV/Excel file to seekdb with optional vectorization | | delete | Delete a collection from seekdb |
read_excel.py
Read and preview Excel files before importing:
# Basic preview (show file info and first 5 rows)
python scripts/read_excel.py example-data/sample_products.xlsx
# List all sheets
python scripts/read_excel.py example-data/sample_products.xlsx --list-sheets
# Preview specific sheet with more rows
python scripts/read_excel.py data.xlsx --sheet "Sheet2" --rows 20
# Show column information and statistics
python scripts/read_excel.py example-data/sample_products.xlsx --columns --stats
# Export to CSV
python scripts/read_excel.py example-data/sample_products.xlsx --to-csv output.csv
| Option | Description | |--------|-------------| | --sheet, -s | Sheet name to read (default: first sheet) | | --rows, -r | Number of rows to preview (default: 5) | | --list-sheets, -l | List all sheets and exit | | --columns, -c | Show detailed column information | | --stats | Show statistics for numeric columns | | --to-csv | Export sheet to CSV file | | --all-rows, -a | Display all rows |
Workflow
The import_to_seekdb.py script automatically handles the following steps:
- Read Data File - Supports CSV (.csv) and Excel (.xlsx, .xls) formats
- Connect to seekdb - Uses environment variables for server mode, or embedded mode by default
- Create Collection - With optional vectorization using default embedding function (all-MiniLM-L6-v2, 384 dimensions)
- Import Data - Batch processing with configurable batch size
- Verify - Displays record count and data preview after import
User Interaction Guide
For Reading Excel Files
When user wants to preview or inspect an Excel file before importing:
# Preview file structure and data
python scripts/read_excel.py
# With column details and statistics
python scripts/read_excel.py --columns --stats
This helps users:
- Understand the file structure (sheets, columns, row count)
- Identify which column to vectorize
- Check data quality before importing
For Data Import
When user requests data import, ask:
- File path: "Please provide the path to your CSV or Excel file."
- If user needs sample data, use files from the
example-data/directory - Suggest using
read_excel.pyto preview the file first
- Vectorization: "Would you like to enable vector search by vectorizing a column? (yes/no)"
- Column selection (if yes): "Which column to vectorize? (e.g., 'Details', 'Description')"
- Collection name: "Collection name? (default: derived from filename)"
- Connection mode: "Embedded (local) or server mode?"
For Collection Management
- List collections: Use
query_from_seekdb.py listfrom thequerying-from-seekdbskill - Delete collection: Run
python scripts/import_to_seekdb.py delete
Embedding Functions
The script uses the default embedding function (all-MiniLM-L6-v2, 384 dimensions) when vectorization is enabled via --vectorize-column.
Handling Large Files
For files with >10,000 rows, the import_to_seekdb.py script uses batch processing automatically. You can configure batch size:
python scripts/import_to_seekdb.py import large_file.csv -v Details --batch-size 500
References
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: oceanbase
- Source: oceanbase/oceanbase-skills
- License: Apache-2.0
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.