alicloud-ai-search-milvusUse AliCloud Milvus (serverless) with PyMilvus to create collections, insert vectors, and run filtered similarity search. Optimized for Claude Code/Codex vector retrieval flows.
Install via ClawdBot CLI:
clawdbot install cinience/alicloud-ai-search-milvusCategory: provider
This skill uses standard PyMilvus APIs to connect to AliCloud Milvus and run vector search.
python3 -m venv .venv
. .venv/bin/activate
python -m pip install --upgrade pymilvus
MILVUS_URI (e.g. http://:19530 )MILVUS_TOKEN (: )MILVUS_DB (default: default)import os
from pymilvus import MilvusClient
client = MilvusClient(
uri=os.getenv("MILVUS_URI"),
token=os.getenv("MILVUS_TOKEN"),
db_name=os.getenv("MILVUS_DB", "default"),
)
# 1) Create a collection
client.create_collection(
collection_name="docs",
dimension=768,
)
# 2) Insert data
items = [
{"id": 1, "vector": [0.01] * 768, "source": "kb", "chunk": 0},
{"id": 2, "vector": [0.02] * 768, "source": "kb", "chunk": 1},
]
client.insert(collection_name="docs", data=items)
# 3) Search
query_vectors = [[0.01] * 768]
res = client.search(
collection_name="docs",
data=query_vectors,
limit=5,
filter='source == "kb" and chunk >= 0',
output_fields=["source", "chunk"],
)
print(res)
python skills/ai/search/alicloud-ai-search-milvus/scripts/quickstart.py
Environment variables:
MILVUS_URIMILVUS_TOKENMILVUS_DB (optional)MILVUS_COLLECTION (optional)MILVUS_DIMENSION (optional)Optional args: --collection, --dimension, --limit, --filter.
dimension aligned with your embedding model.MILVUS_TOKEN and instance permissions.MilvusClient examples for AliCloud Milvusreferences/sources.mdGenerated Mar 1, 2026
Enhance customer support chatbots by storing and retrieving vectorized support articles or FAQs. This allows for quick, context-aware responses to user queries based on semantic similarity, improving resolution times and accuracy.
Power personalized product recommendations by embedding user preferences and product descriptions as vectors. Perform similarity searches to suggest relevant items, boosting sales and user engagement through tailored shopping experiences.
Organize and search large document repositories, such as legal or research papers, by converting text to vectors. Enable efficient retrieval of semantically similar documents, aiding in research and compliance tasks.
Detect and filter inappropriate or duplicate content by embedding user-generated posts or media. Use filtered similarity searches to identify violations based on predefined criteria, ensuring platform safety and quality.
Analyze medical records or research data by embedding patient information or clinical notes. Perform searches to find similar cases or trends, supporting diagnostics and personalized treatment plans.
Offer a cloud-based vector search service with tiered pricing based on usage, such as data volume or query frequency. This model provides recurring revenue and scalability for clients needing managed AI search solutions.
Provide expert services to integrate this skill into existing systems, including custom embedding setups and performance optimization. Charge per project or hourly, targeting enterprises with specific vector search needs.
Offer a free tier with basic search capabilities and limited data storage, then upsell to premium plans with advanced features like higher dimensions, priority support, and enhanced filtering options.
💬 Integration Tip
Ensure environment variables are securely managed and vector dimensions match your embedding model to avoid errors during collection creation and search operations.
Automate Xiaohongshu (RedNote) content operations using a Python client for the xiaohongshu-mcp server. Use for: (1) Publishing image, text, and video content, (2) Searching for notes and trends, (3) Analyzing post details and comments, (4) Managing user profiles and content feeds. Triggers: xiaohongshu automation, rednote content, publish to xiaohongshu, xiaohongshu search, social media management.
Feishu-integrated wrapper for the capability-evolver. Manages the evolution loop lifecycle (start/stop/ensure), sends rich Feishu card reports, and provides...
The Baidu Baike Component is a knowledge service tool designed to query authoritative encyclopedia explanations for various nouns. Its core function is given a specific "noun" (object, person, location, concept, event, etc.) provided by the user, it returns a standardized, detailed entry explanation sourced from Baidu Baike.
Draft and publish posts to 小红书 (Xiaohongshu/RED). Use when creating content for 小红书, drafting posts, generating cover images, or publishing via browser automation. Covers the full workflow from content creation to browser-based publishing, including cover image generation with Pillow.
AI-assisted creation, rendering, and automated publishing of Xiaohongshu-style content with support for Markdown to image cards and data tracking.
小红书全能助手 — 文案生成、封面制作、内容发布与管理。当用户要求写小红书笔记、生成小红书文案/标题/封面、发小红书、搜索小红书、评论点赞收藏等任何小红书相关操作时使用。支持一站式从文案创作到自动发布的完整流程。封面AI生图需配置可选环境变量(GEMINI_API_KEY 或 IMG_API_KEY 或 HUNY...