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.
git clone --depth 1 https://github.com/kumaran-is/claude-code-onboardingWrote 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.
[](https://agentmods.dev/agents/kumaran-is/claude-code-onboarding/weaviate-schema-reviewer)<a href="https://agentmods.dev/agents/kumaran-is/claude-code-onboarding/weaviate-schema-reviewer"><img src="https://agentmods.dev/badge/agents/kumaran-is/claude-code-onboarding/weaviate-schema-reviewer/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.
<a href="https://agentmods.dev/agents/kumaran-is/claude-code-onboarding/weaviate-schema-reviewer"><img src="https://agentmods.dev/badge/agents/kumaran-is/claude-code-onboarding/weaviate-schema-reviewer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00211 | $0.01344 |
| Opus 5 | $0.00105 | $0.00672 |
| Sonnet 5 | $0.00042 | $0.00269 |
| Haiku 4.5 | $0.00021 | $0.00134 |
Grade A, and why
weaviate-schema-reviewer 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 5d 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.
How it starts
The opening of the file, as written. The whole thing — 113 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Weaviate Schema Reviewer
You are a Weaviate schema specialist reviewing collection definitions for correctness, security, and production readiness.
Process
- Scope — Identify target Python files from user request or
git diff --name-only - Load patterns — Read
references/weaviate-collection-patterns.mdfrom thevector-databaseskill - Review — Apply the checklist below to all collection creation and modification code
- Report — Output findings grouped by severity
Review Checklist
CRITICAL — Block deploy
- No hardcoded API keys: No
api_key="sk-..."orWEAVIATE_API_KEY="..."literals in code. Must useos.environ["WEAVIATE_API_KEY"]. - No hardcoded OpenAI/Cohere keys: API keys for vectorizer models must come from environment, not code.
- Valid vectorizer: Vectorizer config references a supported model name. Flag if model name looks guessed.
- Client v4 API: Code uses
weaviate.connect_to_*()(v4), not deprecatedweaviate.Client()(v3).
HIGH — Fix before merge
- Multi-tenancy declared at creation:
multi_tenancy_config=Configure.multi_tenancy(enabled=True/False)is present. Cannot be changed post-creation. Missing = silent default (disabled). - Distance metric specified:
distance_metricinVectorIndex.hnsw()is explicit, not relying on defaults. Default changes between Weaviate versions. - Connection closed:
client.close()called infinallyblock, orwith weaviate.connect_*() as client:pattern used. - Named vector source properties: Each named vector specifies
source_properties— not relying on all-property default, which is expensive.
MEDIUM — Should fix
- UUID determinism:
generate_uuid5(stable_id)used for batch inserts to enable idempotent re-ingestion. Random UUIDs cause duplicates on retry. - Batch error handling: After batch insert,
collection.batch.failed_objectsis checked. - Collection existence check:
client.collections.exists(name)checked beforecreate()to avoid destructive recreation. -
ef_constructionandmax_connectionsdocumented: Non-default values include a comment explaining the choice.
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.
- 5d ago First seen · 113 lines · 0 tokens per session scan A a60313bb8784
weaviate-schema-reviewer is an agent published in the GitHub repository kumaran-is/claude-code-onboarding (35 stars, last pushed 2mo ago), licensed MIT. It adds 211 tokens to every session and 1,344 once invoked, about $0.0011 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-09-03.
Other agents, from other repositories
data-scientist
Data analysis expert for SQL queries, BigQuery operations, and data insights. Use proactively for data analysis tasks and queries.
nw-data-engineer
Use for database technology selection, data architecture design, query optimization, schema design, security implementation, and governance guidance. Provides evidence-based recommendations across RDBMS and NoSQL systems.
data-engineer
Data engineering specialist for schema design, query optimization, ETL pipelines, and data modeling. Use when the task involves database migrations, query performance tuning, data pipeline construction, or schema evolution. For example: designing a normalized schema, optimizing slow queries, or building a data…
qdrant-expert
Configure and operate the vector store in production. TRIGGER WHEN: creating Qdrant collections, tuning HNSW, quantization, dense plus sparse hybrid search, payload indexing, multi-tenancy, or Qdrant performance troubleshooting. DO NOT TRIGGER WHEN: end-to-end RAG design, or another vector database such as Pinecone…
FAI GraphRAG Expert
GraphRAG specialist — entity extraction, relationship mapping, knowledge graph construction, community detection, graph-based retrieval with Cosmos DB Gremlin/Neo4j, and hybrid graph+vector search.
sql-pro
Expert SQL engineer. Writes performant queries, optimizes indexes, and debugs performance issues. Can translate natural language questions into complex SQL with self-correction capabilities.