Category: provider
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionalicloud-ai-search-milvusExecute the skills CLI command in your project's root directory to begin installation:
Fetches alicloud-ai-search-milvus from cinience/alicloud-skills and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate alicloud-ai-search-milvus. Access via /alicloud-ai-search-milvus in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
0
total installs
0
this week
368
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
368
stars
Category: 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://<host>:19530)MILVUS_TOKEN (<username>:<password>)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.mkdir -p output/alicloud-ai-search-milvus
for f in skills/ai/search/alicloud-ai-search-milvus/scripts/*.py; do
python3 -m py_compile "$f"
done
echo "py_compile_ok" > output/alicloud-ai-search-milvus/validate.txt
Pass criteria: command exits 0 and output/alicloud-ai-search-milvus/validate.txt is generated.
output/alicloud-ai-search-milvus/.PyMilvus MilvusClient examples for AliCloud Milvus
Source list: references/sources.md
Prerequisites
Time Estimate
15-45 minutes depending on use case complexity
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid when
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
cinience/alicloud-skills
kostja94/marketing-skills
aaaaqwq/claude-code-skills
agentbay-ai/agentbay-skills
glebis/claude-skills
shopmeskills/mcp
alicloud-ai-search-milvus reduced setup friction for our internal harness; good balance of opinion and flexibility.
I recommend alicloud-ai-search-milvus for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
Registry listing for alicloud-ai-search-milvus matched our evaluation — installs cleanly and behaves as described in the markdown.
Useful defaults in alicloud-ai-search-milvus — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
I recommend alicloud-ai-search-milvus for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
alicloud-ai-search-milvus reduced setup friction for our internal harness; good balance of opinion and flexibility.
I recommend alicloud-ai-search-milvus for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
Useful defaults in alicloud-ai-search-milvus — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
Registry listing for alicloud-ai-search-milvus matched our evaluation — installs cleanly and behaves as described in the markdown.
alicloud-ai-search-milvus fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
showing 1-10 of 37