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-dashvectorExecute the skills CLI command in your project's root directory to begin installation:
Fetches alicloud-ai-search-dashvector 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-dashvector. Access via /alicloud-ai-search-dashvector 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
Use DashVector to manage collections and perform vector similarity search with optional filters and sparse vectors.
python3 -m venv .venv
. .venv/bin/activate
python -m pip install dashvector
DASHVECTOR_API_KEYDASHVECTOR_ENDPOINT (cluster endpoint)name (str)dimension (int)metric (str: cosine | dotproduct | euclidean)fields_schema (optional dict of field types)docs list of {id, vector, fields} or tuplessparse_vector and multi-vector collectionsvector or id (one required; if both empty, only filter is applied)topk (int)filter (SQL-like where clause)output_fields (list of field names)include_vector (bool)import os
import dashvector
from dashvector import Doc
client = dashvector.Client(
api_key=os.getenv("DASHVECTOR_API_KEY"),
endpoint=os.getenv("DASHVECTOR_ENDPOINT"),
)
# 1) Create a collection
ret = client.create(
name="docs",
dimension=768,
metric="cosine",
fields_schema={"title": str, "source": str, "chunk": int},
)
assert ret
# 2) Upsert docs
collection = client.get(name="docs")
ret = collection.upsert(
[
Doc(id="1", vector=[0.01] * 768, fields={"title": "Intro", "source": "kb", "chunk": 0}),
Doc(id="2", vector=[0.02] * 768, fields={"title": "FAQ", "source": "kb", "chunk": 1}),
]
)
assert ret
# 3) Query
ret = collection.query(
vector=[0.01] * 768,
topk=5,
filter="source = 'kb' AND chunk >= 0",
output_fields=["title", "source", "chunk"],
include_vector=False,
)
for doc in ret:
print(doc.id, doc.fields)
python skills/ai/search/alicloud-ai-search-dashvector/scripts/quickstart.py
Environment variables:
DASHVECTOR_API_KEYDASHVECTOR_ENDPOINTDASHVECTOR_COLLECTION (optional)DASHVECTOR_DIMENSION (optional)Optional args: --collection, --dimension, --topk, --filter.
upsert for idempotent ingestion.dimension aligned to your embedding model output size.sparse_vector={token_id: weight, ...} when upserting/querying.DASHVECTOR_API_KEYmkdir -p output/alicloud-ai-search-dashvector
for f in skills/ai/search/alicloud-ai-search-dashvector/scripts/*.py; do
python3 -m py_compile "$f"
done
echo "py_compile_ok" > output/alicloud-ai-search-dashvector/validate.txt
Pass criteria: command exits 0 and output/alicloud-ai-search-dashvector/validate.txt is generated.
output/alicloud-ai-search-dashvector/.DashVector Python SDK: Client.create, Collection.upsert, Collection.query
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-dashvector reduced setup friction for our internal harness; good balance of opinion and flexibility.
Registry listing for alicloud-ai-search-dashvector matched our evaluation — installs cleanly and behaves as described in the markdown.
Registry listing for alicloud-ai-search-dashvector matched our evaluation — installs cleanly and behaves as described in the markdown.
alicloud-ai-search-dashvector reduced setup friction for our internal harness; good balance of opinion and flexibility.
I recommend alicloud-ai-search-dashvector for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
I recommend alicloud-ai-search-dashvector for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
Useful defaults in alicloud-ai-search-dashvector — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
alicloud-ai-search-dashvector fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
We added alicloud-ai-search-dashvector from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
Useful defaults in alicloud-ai-search-dashvector — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
showing 1-10 of 53