一键导入
weaviate
Search, query, inspect, create, and import data into Weaviate vector database collections using official scripts and references.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Search, query, inspect, create, and import data into Weaviate vector database collections using official scripts and references.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use this skill for generative video editing, text-to-video, image-referenced video generation, and first-frame-to-video transition animations using the official google-genai SDK. Includes workflows for pre-processing/optimizing high-resolution or long source videos with ffmpeg,...
Train or fine-tune language and vision models using TRL (Transformer Reinforcement Learning) or Unsloth with Hugging Face Jobs infrastructure. Covers SFT, DPO, GRPO and reward modeling training methods, plus GGUF conversion for local deployment. Includes guidance on the TRL Jobs...
Security audit, hardening, threat modeling (STRIDE/PASTA), Red/Blue Team, OWASP checks, code review, incident response, and infrastructure security for any project.
Audit SQL for the cost & performance anti-patterns that burn warehouse credits. Scores warehouse health 0-100 and outputs a prioritized cost-reduction plan for BigQuery, Snowflake, Redshift, and Postgres.
Use when writing, reviewing, or refactoring SwiftUI code for iOS or macOS, including state management and `@Observable` data flow, view composition and invalidation/performance, lists and `ForEach` identity, environment usage, localization, animations, Liquid Glass adoption, migrating...
A user may ask you to create, edit, or analyze the contents of a .docx file. A .docx file is essentially a ZIP archive containing XML files and other resources that you can read or edit. You have different tools and workflows available for different tasks.
| name | weaviate |
| description | Search, query, inspect, create, and import data into Weaviate vector database collections using official scripts and references. |
| category | databases |
| risk | critical |
| source | community |
| source_repo | weaviate/agent-skills |
| source_type | official |
| date_added | 2026-06-29 |
| author | Weaviate |
| tags | ["weaviate","vector-database","semantic-search","hybrid-search","data-import"] |
| tools | ["python","weaviate"] |
| license | BSD-3-Clause |
| license_source | https://github.com/weaviate/agent-skills/blob/main/LICENSE |
This skill provides comprehensive access to Weaviate vector databases including search operations, natural language queries, schema inspection, data exploration, filtered fetching, collection creation, and data imports.
If the user does not have an instance yet, direct them to the cloud console to register and create a free sandbox. Create a Weaviate instance via Weaviate Cloud.
Required:
WEAVIATE_URL - Your Weaviate Cloud cluster URLWEAVIATE_API_KEY - Your Weaviate API keyExternal Provider Keys (auto-detected): Set only the keys your collections use, refer to Environment Requirements for more information.
text2vec_weaviate is used).Start by listing collections if you don't know what's available:
uv run scripts/list_collections.py
Ask the user if they want to create example data if nothing is available and the user requests it. Otherwise continue.
uv run scripts/example_data.py
Get collection details to understand the schema:
uv run scripts/get_collection.py --name "COLLECTION_NAME"
Explore collection data to see values and statistics:
uv run scripts/explore_collection.py "COLLECTION_NAME"
Create a collection if importing a new CSV, JSON, or JSONL file — the collection must exist before importing:
uv run scripts/create_collection.py CollectionName \
--properties '[{"name": "title", "data_type": "text"}, {"name": "body", "data_type": "text"}]'
Do not specify a vectorizer unless the user explicitly requests one.
Import data into an existing collection:
uv run scripts/import.py "data.csv" --collection "CollectionName"
For PDF imports, the collection is created automatically — skip step 5.
Choose the right search type:
ask.pyquery_search.pyhybrid_search.py (default)semantic_search.pykeyword_search.pyAll scripts support:
--json flag)Common errors:
WEAVIATE_URL not set → Set the environment variableCollection not found → Use list_collections.py to see available collectionsAuthentication error → Check API keys for both Weaviate and vectorizer providers