Agent skill
weaviate
Manage Weaviate vector database — classes, objects, and vector search via the REST API.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/weaviate
Metadata
Additional technical details for this skill
- thinkfleetbot
-
{ "emoji": "\ud83d\udd2e", "requires": { "env": [ "WEAVIATE_URL", "WEAVIATE_API_KEY" ], "bins": [ "curl", "jq" ] } }
SKILL.md
Weaviate
Manage classes, objects, and vector search.
Environment Variables
WEAVIATE_URL- Weaviate instance URLWEAVIATE_API_KEY- API key
Get schema
curl -s -H "Authorization: Bearer $WEAVIATE_API_KEY" \
"$WEAVIATE_URL/v1/schema" | jq '.classes[] | {class, properties: [.properties[] | .name]}'
List objects
curl -s -H "Authorization: Bearer $WEAVIATE_API_KEY" \
"$WEAVIATE_URL/v1/objects?limit=10&class=ClassName" | jq '.objects[] | {id, properties}'
GraphQL vector search
curl -s -X POST -H "Authorization: Bearer $WEAVIATE_API_KEY" \
-H "Content-Type: application/json" \
"$WEAVIATE_URL/v1/graphql" \
-d '{"query":"{Get{ClassName(nearText:{concepts:[\"search query\"]}limit:5){property1 _additional{distance}}}}"}' | jq '.data.Get.ClassName[]'
Add object
curl -s -X POST -H "Authorization: Bearer $WEAVIATE_API_KEY" \
-H "Content-Type: application/json" \
"$WEAVIATE_URL/v1/objects" \
-d '{"class":"ClassName","properties":{"property1":"value1"}}' | jq '{id}'
Notes
- Always confirm before adding or deleting objects.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?