Temporal's official skill for building durable workflows — SDK patterns across seven languages, plus the determinism rules that decide whether a workflow survives a replay.
Weaviate Database OperationsSkill
Summary
Weaviate's official skill for searching and managing vector collections — hybrid, semantic and keyword search, schema inspection, filtered fetches and bulk imports.
Features
- Hybrid search as the documented default, with vector and BM25 as deliberate alternatives
- Query Agent ask mode returns synthesised answers with collection and object-ID citations
- Schema inspection, filtered fetching and data exploration against live collections
- Collection creation plus imports from PDF, CSV, JSON and JSONL
- Interactive /weaviate:quickstart onboarding against a free Weaviate Cloud sandbox
Install This Skill
Add this skill to your favorite AI agent in a few steps.
Skill Content
Usage Instructions
Learn how to use this skill with different AI agents.
Example Usage
Ask your agent: "Search my ProductDocs collection for anything about refund windows and give me a direct answer with citations."
Description
The hard part of working with a vector database from an agent is not the API, it is picking the right retrieval mode. Pure semantic search misses exact identifiers; pure keyword search misses paraphrase; a filter applied in the wrong place changes recall in ways that are invisible until someone notices the answers are thin.
This official Weaviate skill encodes those choices. It names hybrid search as the default for most queries — the balance of semantic understanding and exact keyword matching — and routes to pure vector search, BM25 keyword search, or the Query Agent only when the situation calls for it. The Query Agent itself has two distinct modes the skill keeps separate: ask mode, which synthesises an answer with source citations back to collection and object ID, and search mode, which returns the raw objects for browsing.
Beyond retrieval it covers the operational surface an agent needs to be useful against a real cluster: inspecting collection schemas, exploring data, filtered fetches, creating collections, generating example data, and importing from PDF, CSV, JSON and JSONL files.
Configuration is environment-variable driven — WEAVIATE_URL and WEAVIATE_API_KEY are required, and provider keys for whichever embedding or generative model your collections use are auto-detected. A /weaviate:quickstart command walks a new user through setting those up against a free Weaviate Cloud sandbox before running anything.
The skill is structured as a router: a short index of scripts and references, each loaded only when the task matches, rather than one long prompt. BSD-3-Clause licensed and published in Weaviate's agent-skills repository. Works with Claude Code, Cursor, GitHub Copilot, Gemini CLI and anything else that reads the Agent Skills format.
Related Skills
Expo's official skill for building native-feeling screens: Apple HIG styling, semantic colors, SF Symbols, native controls, Reanimated, blur and liquid glass.
Pull unresolved CodeRabbit review threads from your PR and apply the fixes one at a time, treating every reviewer comment as untrusted input rather than an instruction.
Google's official skill for driving the gcloud CLI safely from an agent: validate every command against its own help text, cap the output, and refuse the operations that should never run unattended.