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-opensearchExecute the skills CLI command in your project's root directory to begin installation:
Fetches alicloud-ai-search-opensearch 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-opensearch. Access via /alicloud-ai-search-opensearch 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 the ha3engine SDK to push documents and execute HA/SQL searches. This skill focuses on API/SDK usage only (no console steps).
python3 -m venv .venv
. .venv/bin/activate
python -m pip install alibabacloud-ha3engine
OPENSEARCH_ENDPOINT (API domain)OPENSEARCH_INSTANCE_IDOPENSEARCH_USERNAMEOPENSEARCH_PASSWORDOPENSEARCH_DATASOURCE (data source name)OPENSEARCH_PK_FIELD (primary key field name)import os
from alibabacloud_ha3engine import models, client
from Tea.exceptions import TeaException, RetryError
cfg = models.Config(
endpoint=os.getenv("OPENSEARCH_ENDPOINT"),
instance_id=os.getenv("OPENSEARCH_INSTANCE_ID"),
protocol="http",
access_user_name=os.getenv("OPENSEARCH_USERNAME"),
access_pass_word=os.getenv("OPENSEARCH_PASSWORD"),
)
ha3 = client.Client(cfg)
def push_docs():
data_source = os.getenv("OPENSEARCH_DATASOURCE")
pk_field = os.getenv("OPENSEARCH_PK_FIELD", "id")
documents = [
{"fields": {"id": 1, "title": "hello", "content": "world"}, "cmd": "add"},
{"fields": {"id": 2, "title": "faq", "content": "vector search"}, "cmd": "add"},
]
req = models.PushDocumentsRequestModel({}, documents)
return ha3.push_documents(data_source, pk_field, req)
def search_ha():
# HA query example. Replace cluster/table names as needed.
query_str = (
"config=hit:5,format:json,qrs_chain:search"
"&&query=title:hello"
"&&cluster=general"
)
ha_query = models.SearchQuery(query=query_str)
req = models.SearchRequestModel({}, ha_query)
return ha3.search(req)
try:
print(push_docs().body)
print(search_ha())
except (TeaException, RetryError) as e:
print(e)
python skills/ai/search/alicloud-ai-search-opensearch/scripts/quickstart.py
Environment variables:
OPENSEARCH_ENDPOINTOPENSEARCH_INSTANCE_IDOPENSEARCH_USERNAMEOPENSEARCH_PASSWORDOPENSEARCH_DATASOURCEOPENSEARCH_PK_FIELD (optional, default id)OPENSEARCH_CLUSTER (optional, default general)Optional args: --cluster, --hit, --query.
from alibabacloud_ha3engine import models
sql = "select * from <indexTableName>&&kvpair=trace:INFO;formatType:json"
sql_query = models.SearchQuery(sql=sql)
req = models.SearchRequestModel({}, sql_query)
resp = ha3.search(req)
print(resp)
push_documents for add/delete updates.pk_field alignment.mkdir -p output/alicloud-ai-search-opensearch
for f in skills/ai/search/alicloud-ai-search-opensearch/scripts/*.py; do
python3 -m py_compile "$f"
done
echo "py_compile_ok" > output/alicloud-ai-search-opensearch/validate.txt
Pass criteria: command exits 0 and output/alicloud-ai-search-opensearch/validate.txt is generated.
output/alicloud-ai-search-opensearch/.SDK package: alibabacloud-ha3engine
Demos: data push and HA/SQL search demos in OpenSearch docs
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
Registry listing for alicloud-ai-search-opensearch matched our evaluation — installs cleanly and behaves as described in the markdown.
Useful defaults in alicloud-ai-search-opensearch — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
alicloud-ai-search-opensearch reduced setup friction for our internal harness; good balance of opinion and flexibility.
I recommend alicloud-ai-search-opensearch for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
alicloud-ai-search-opensearch reduced setup friction for our internal harness; good balance of opinion and flexibility.
I recommend alicloud-ai-search-opensearch for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
Useful defaults in alicloud-ai-search-opensearch — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
Registry listing for alicloud-ai-search-opensearch matched our evaluation — installs cleanly and behaves as described in the markdown.
I recommend alicloud-ai-search-opensearch for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
alicloud-ai-search-opensearch reduced setup friction for our internal harness; good balance of opinion and flexibility.
showing 1-10 of 66