weaviate-local-setup

weaviate-local-setup is a skill for Claude Code, Codex from saskinosie/weaviate-claude-skills. It costs 19 tokens per session (3,716 once invoked), scanned A, original, MIT.

A setup tool for running Weaviate, a database with meaning-based search, on your own computer using Docker. It prepares the local environment and helps manage the running instance.

In plain words
What is it for?
Use it to install the needed Python environment, start or manage Weaviate in Docker, and prepare a local database for later collection management.
Why use it?
It provides a local Weaviate server for development and testing without relying on a hosted database or cloud connection.

Skill for Claude CodeCodex

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

Good fit Use it to install the needed Python environment, start or manage Weaviate in Docker, and prepare a local database for later collection management.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/saskinosie/weaviate-claude-skills/weaviate-local-setup"><img src="https://agentmods.dev/badge/skills/saskinosie/weaviate-claude-skills/weaviate-local-setup.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 19 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,716 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 2 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.00019 $0.03716
Opus 5 $0.00010 $0.01858
Sonnet 5 $0.00004 $0.00743
Haiku 4.5 $0.00002 $0.00372

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

Security

Grade A, and why

weaviate-local-setup scanned grade A with 2 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 13d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl http://localhost:8080/v1/.well-known/ready

Runs shell commandslowCapability

Expected in a hook, worth knowing in a rule or an instructions file.

subprocess.check_call([sys.executable, "-m", "pip", "install",
weaviate-local-setup/SKILL.md · 575 lines

How it starts

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

Weaviate Local Setup Skill

Run Weaviate locally using Docker for development, testing, and avoiding network restrictions in Claude Desktop/Web.

Why Use Local Weaviate?

Benefits:

  • No network restrictions in Claude Desktop/Web
  • Free (no cloud costs)
  • Full control over data and configuration
  • Fast development/testing cycles
  • Works offline
  • No API key management for cloud instances

Best for:

  • Development and testing
  • Learning Weaviate
  • Working in Claude Desktop with network restrictions
  • Privacy-sensitive projects

Prerequisites

Required:

  • Docker Desktop installed and running
  • Available ports: 8080 (Weaviate), 8081 (optional for Weaviate Console)
  • Python 3.8+ installed

Optional (for specific vectorizers):

  • OpenAI API key (for text2vec-openai)
  • Cohere API key (for text2vec-cohere)
  • Anthropic API key (for generative-anthropic)

Python Environment Setup

IMPORTANT: Do this FIRST before using any Weaviate skills!

Claude will create a virtual environment and install dependencies to avoid conflicts with your system Python.

Step 1: Create Virtual Environment

# Navigate to the weaviate-claude-skills directory
cd ~/Documents/weaviate-claude-skills

# Create virtual environment
python3 -m venv .venv

# Activate it
source .venv/bin/activate  # macOS/Linux
# OR
.venv\Scripts\activate     # Windows

Step 2: Install Dependencies

# Install required packages
pip install weaviate-client python-dotenv

# Optional: Install additional packages for specific vectorizers
pip install openai  # If using OpenAI vectorizer
pip install cohere  # If using Cohere vectorizer

Or install everything at once:

pip install -r requirements.txt

Step 3: Verify Installation

import subprocess
import sys

# Check if dependencies are installed
try:
    import weaviate
    from dotenv import load_dotenv
    print("✅ All required packages are installed!")
except ImportError as e:
    print(f"❌ Missing package: {e}")
    print("Installing dependencies...")
    subprocess.check_call([sys.executable, "-m", "pip", "install",
                          "weaviate-client", "python-dotenv"])
    print("✅ Dependencies installed successfully!")

Read the full file on GitHub · 575 lines

Files

What ships with it

1 file 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.

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. 13d ago First seen · 575 lines · 19 tokens per session scan A 96c283ec283d

Subscribe to this mod's changes

weaviate-local-setup is a skill published in the GitHub repository saskinosie/weaviate-claude-skills (39 stars, last pushed 10mo ago), licensed MIT. It adds 19 tokens to every session and 3,716 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 2 findings (makes network calls, runs shell commands). 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

offensive-container-escape

Container escape and breakout techniques targeting Docker, containerd, and Podman runtimes. Covers privileged container breakout via host filesystem mount and nsenter, Docker socket abuse through /var/run/docker.sock, Linux capability exploitation including CAPSYSADMIN, CAPSYSPTRACE, and CAPNETADMIN, cgroup v1…

SnailSploit/Claude-Red · 196 tokens

offensive-sqli

SQL injection testing skill for offensive security assessments and bug bounty hunting. Covers error-based, UNION-based, boolean/time-based blind, out-of-band, second-order, NoSQL, GraphQL, WebSocket, and JSON-operator SQLi. Includes WAF bypass techniques, database-specific exploitation (MySQL, MSSQL, PostgreSQL…

SnailSploit/Claude-Red · 117 tokens

cnpg

Create and operate CloudNativePG (CNPG) Postgres databases on Kubernetes the GitOps/Flux way - on managed cloud (GKE + GCS via Workload Identity) OR self-hosted (K3s/bare-metal + any S3-compatible store via a credentials secret). Covers Cluster + ScheduledBackup manifests, barman WAL archiving, pgvector, PITR…

vanducng/skills · 155 tokens

Docker Compose Generator

Generates production-ready docker-compose.yml files for any application stack.

Notysoty/openagentskills · 17 tokens

docker-compose

Multi-container Docker applications with docker-compose — define services, networks, volumes, and orchestrate local development environments.

kevinnft/ai-agent-skills · 24 tokens

exasol-itde

Use notebook-connector's itdemanager to run a local Docker-based Exasol database. Covers bringitdeup, getitdestatus, restartitde, takeitdedown, and how ITDE populates notebook-connector configuration automatically.

exasol-labs/exasol-agent-skills · 55 tokens