weaviate-query-agent

weaviate-query-agent is a skill for Claude Code, Codex from saskinosie/weaviate-claude-skills. It costs 27 tokens per session (6,929 once invoked), scanned A, original, MIT.

A search and question-answering tool for data stored in a local Weaviate instance. Weaviate is a database that supports meaning-based and keyword search over stored content.

In plain words
What is it for?
Use it for semantic search, similar-item lookup, filtered retrieval, and retrieval-augmented question answering when local Weaviate and its data are available.
Why use it?
It helps find relevant records even when the search wording differs from the stored text, with optional filters and combined search methods.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it for semantic search, similar-item lookup, filtered retrieval, and retrieval-augmented question answering when local Weaviate and its data are available.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/saskinosie/weaviate-claude-skills/weaviate-query-agent
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.

Any agent
npx skills add saskinosie/weaviate-claude-skills --skill weaviate-query-agent
Clone the repo
git clone --depth 1 https://github.com/saskinosie/weaviate-claude-skills

Made for: Claude Code, Codex.

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 weaviate-query-agent

README.md
[![agentmods](https://agentmods.dev/badge/skills/saskinosie/weaviate-claude-skills/weaviate-query-agent/github.svg)](https://agentmods.dev/skills/saskinosie/weaviate-claude-skills/weaviate-query-agent)
Your own site
<a href="https://agentmods.dev/skills/saskinosie/weaviate-claude-skills/weaviate-query-agent"><img src="https://agentmods.dev/badge/skills/saskinosie/weaviate-claude-skills/weaviate-query-agent/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.

agentmods 80×15 button for weaviate-query-agent

Your own site · 80×15
<a href="https://agentmods.dev/skills/saskinosie/weaviate-claude-skills/weaviate-query-agent"><img src="https://agentmods.dev/badge/skills/saskinosie/weaviate-claude-skills/weaviate-query-agent.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 27 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 6,929 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00027 $0.06929
Opus 5 $0.00014 $0.03465
Sonnet 5 $0.00005 $0.01386
Haiku 4.5 $0.00003 $0.00693

Measured 12d ago against content hash 8d96a9368d50, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

weaviate-query-agent 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 12d 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.

weaviate-query-agent/SKILL.md · 1,000 lines

How it starts

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

Weaviate Query Agent Skill

This skill helps you search and retrieve data from your local Weaviate collections using semantic vector search, keyword search, filters, and RAG capabilities.

Important Note

This skill is designed for LOCAL Weaviate instances only. Ensure you have Weaviate running locally in Docker before using this skill.

Purpose

Query your local Weaviate collections intelligently to find relevant information, perform Q&A, and analyze your data.

When to Use This Skill

  • User wants to search for information in a collection
  • User asks questions that need semantic search
  • User needs to filter results by specific criteria
  • User wants to use RAG (Retrieval Augmented Generation) for Q&A
  • User asks about finding similar items
  • User needs to combine vector search with filters

Prerequisites Check

Claude should verify these prerequisites before proceeding:

  1. weaviate-local-setup completed - Python environment and dependencies installed
  2. weaviate-connection completed - Successfully connected to Weaviate
  3. weaviate-data-ingestion used - Collection has data to query
  4. Docker container running - Weaviate is accessible at localhost:8080

If any prerequisites are missing, Claude should:

  • Load the required prerequisite skill first
  • Guide the user through the setup
  • Then return to this skill

Prerequisites

  • Local Weaviate running in Docker (see weaviate-local-setup skill)
  • Active Weaviate connection (use weaviate-connection skill first)
  • Collection with data (use weaviate-data-ingestion skill to add data)
  • Python weaviate-client library installed

Query Types

1. Semantic Search (Vector Search)

Find objects semantically similar to your query:

import weaviate

# Assuming client is already connected
collection = client.collections.get("Articles")

# Search by meaning
response = collection.query.near_text(
    query="artificial intelligence and machine learning",
    limit=5
)

# Display results
for obj in response.objects:
    print(f"Title: {obj.properties['title']}")
    print(f"Content: {obj.properties['content'][:200]}...")
    print(f"Score: {obj.metadata.score}\n")

Read the full file on GitHub · 1,000 lines

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. 12d ago First seen · 1,000 lines · 27 tokens per session scan A 8d96a9368d50

Subscribe to this mod's changes

weaviate-query-agent is a skill published in the GitHub repository saskinosie/weaviate-claude-skills (39 stars, last pushed 10mo ago), licensed MIT. It adds 27 tokens to every session and 6,929 once invoked, about $0.0001 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-30.

Related

Other skills, from other repositories

pinecone

Managed vector database for production AI applications. Fully managed, auto-scaling, with hybrid search (dense + sparse), metadata filtering, and namespaces. Low latency (<100ms p95). Use for production RAG, recommendation systems, or semantic search at scale. Best for serverless, managed infrastructure.

Zephyrex21/claude-skills-vetted · 63 tokens

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…

timescale/pg-aiguide · 190 tokens

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…

timescale/pg-aiguide · 162 tokens

laravel-vector-search

Use when implementing semantic/vector search in Laravel 13 with PostgreSQL + pgvector.

fusengine/agents · 22 tokens

RAG Workflow Planner

Designs a complete Retrieval-Augmented Generation (RAG) pipeline for a given use case, including chunking strategy, embedding model selection, and retrieval approach.

Notysoty/openagentskills · 37 tokens

AgentDB Performance Optimization

Optimize AgentDB performance with quantization (4-32x memory reduction), HNSW indexing (150x faster search), caching, and batch operations. Use when optimizing memory usage, improving search speed, or scaling to millions of vectors.

Microck/ordinary-claude-skills · 53 tokens