Category: service
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionalicloud-compute-swas-openExecute the skills CLI command in your project's root directory to begin installation:
Fetches alicloud-compute-swas-open 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-compute-swas-open. Access via /alicloud-compute-swas-open 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: service
Use SWAS-OPEN OpenAPI to manage full SAS resources: instances, disks, snapshots, images, key pairs, firewall, Cloud Assistant, monitoring, tags, and lightweight databases.
ALICLOUD_REGION_ID can be used as default region; if unset choose the most reasonable region, ask user if unclear.Virtual environment is recommended (avoid PEP 668 system install restrictions).
python3 -m venv .venv
. .venv/bin/activate
python -m pip install alibabacloud_swas_open20200601 alibabacloud_tea_openapi alibabacloud_credentials
import os
from alibabacloud_swas_open20200601.client import Client as SwasClient
from alibabacloud_swas_open20200601 import models as swas_models
from alibabacloud_tea_openapi import models as open_api_models
def create_client(region_id: str) -> SwasClient:
config = open_api_models.Config(
region_id=region_id,
endpoint=f"swas.{region_id}.aliyuncs.com",
)
ak = os.getenv("ALICLOUD_ACCESS_KEY_ID") or os.getenv("ALIBABA_CLOUD_ACCESS_KEY_ID")
sk = os.getenv("ALICLOUD_ACCESS_KEY_SECRET") or os.getenv("ALIBABA_CLOUD_ACCESS_KEY_SECRET")
if ak and sk:
config.access_key_id = ak
config.access_key_secret = sk
return SwasClient(config)
def list_regions():
client = create_client("cn-hangzhou")
resp = client.list_regions(swas_models.ListRegionsRequest())
return [r.region_id for r in resp.body.regions]
def list_instances(region_id: str):
client = create_client(region_id)
resp = client.list_instances(swas_models.ListInstancesRequest(region_id=region_id))
return resp.body.instances
def main():
for region_id in list_regions():
for inst in list_instances(region_id):
ip = getattr(inst, "public_ip_address", None) or getattr(inst, "inner_ip_address", None)
spec = getattr(inst, "plan_name", None) or getattr(inst, "plan_id", None)
print(inst.instance_id, ip or "-", spec or "-", region_id)
if __name__ == "__main__":
main()
scripts/list_instances_all_regions.pyscripts/summary_instances_by_plan.pyscripts/summary_instances_by_status.pyscripts/fix_ssh_access.pyscripts/get_ssh_port.pyaliyun CLI may not expose swas-open as product name; prefer Python SDK.
If CLI is mandatory, generate request examples in OpenAPI Explorer first, then migrate to CLI.references/api_overview.md.ListInstances、StartInstance(s)、StopInstance(s)、RebootInstance(s)RunCommand or CreateCommand + InvokeCommand; use DescribeInvocations/DescribeInvocationResultListFirewallRules/CreateFirewallRule(s)/ModifyFirewallRule/EnableFirewallRule/DisableFirewallRuleCreateSnapshot、ResetDisk、CreateCustomImage etc.InstallCloudAssistant).DescribeInvocations or DescribeInvocationResult to fetch status and outputs.See references/command-assistant.md for details.
If you need to save results or responses, write to:
output/compute-swas-open/
mkdir -p output/alicloud-compute-swas-open
for f in skills/compute/swas/alicloud-compute-swas-open/scripts/*.py; do
python3 -m py_compile "$f"
done
echo "py_compile_ok" > output/alicloud-compute-swas-open/validate.txt
Pass criteria: command exits 0 and output/alicloud-compute-swas-open/validate.txt is generated.
output/alicloud-compute-swas-open/.ALICLOUD_ACCESS_KEY_ID, ALICLOUD_ACCESS_KEY_SECRET, optional ALICLOUD_REGION_ID.references/api_overview.mdreferences/endpoints.mdreferences/command-assistant.mdreferences/sources.mdPrerequisites
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
open-pencil/skills
kostja94/marketing-skills
davila7/claude-code-templates
wshobson/agents
jeffallan/claude-skills
alicloud-compute-swas-open reduced setup friction for our internal harness; good balance of opinion and flexibility.
Keeps context tight: alicloud-compute-swas-open is the kind of skill you can hand to a new teammate without a long onboarding doc.
alicloud-compute-swas-open reduced setup friction for our internal harness; good balance of opinion and flexibility.
We added alicloud-compute-swas-open from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
alicloud-compute-swas-open is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
Registry listing for alicloud-compute-swas-open matched our evaluation — installs cleanly and behaves as described in the markdown.
Useful defaults in alicloud-compute-swas-open — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
Useful defaults in alicloud-compute-swas-open — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
Registry listing for alicloud-compute-swas-open matched our evaluation — installs cleanly and behaves as described in the markdown.
I recommend alicloud-compute-swas-open for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
showing 1-10 of 56