← Back to Skills Marketplace
cinience

Alicloud Ai Entry Modelstudio

by cinience · GitHub ↗ · v1.0.3 · MIT-0
cross-platform ⚠ suspicious
1195
Downloads
0
Stars
2
Active Installs
4
Versions
Install in OpenClaw
/install alicloud-ai-entry-modelstudio
Description
Route Alibaba Cloud Model Studio requests to the right local skill (Qwen Image, Qwen Image Edit, Wan Video, Wan R2V, Qwen TTS, Qwen ASR and advanced TTS vari...
README (SKILL.md)

Category: task

Alibaba Cloud Model Studio Entry (Routing)

Route requests to existing local skills to avoid duplicating model/parameter details.

Prerequisites

  • Install SDK (virtual environment recommended to avoid PEP 668 restrictions):
python3 -m venv .venv
. .venv/bin/activate
python -m pip install dashscope
  • Configure DASHSCOPE_API_KEY (environment variable preferred; or dashscope_api_key in ~/.alibabacloud/credentials).

Routing Table (currently supported in this repo)

Need Target skill
Text-to-image / image generation skills/ai/image/alicloud-ai-image-qwen-image/
Image editing skills/ai/image/alicloud-ai-image-qwen-image-edit/
Text-to-video / image-to-video (i2v) skills/ai/video/alicloud-ai-video-wan-video/
Reference-to-video (r2v) skills/ai/video/alicloud-ai-video-wan-r2v/
Text-to-speech (TTS) skills/ai/audio/alicloud-ai-audio-tts/
Speech recognition/transcription (ASR) skills/ai/audio/alicloud-ai-audio-asr/
Realtime speech recognition skills/ai/audio/alicloud-ai-audio-asr-realtime/
Realtime TTS skills/ai/audio/alicloud-ai-audio-tts-realtime/
Live speech translation skills/ai/audio/alicloud-ai-audio-livetranslate/
CosyVoice voice clone skills/ai/audio/alicloud-ai-audio-cosyvoice-voice-clone/
CosyVoice voice design skills/ai/audio/alicloud-ai-audio-cosyvoice-voice-design/
Voice clone skills/ai/audio/alicloud-ai-audio-tts-voice-clone/
Voice design skills/ai/audio/alicloud-ai-audio-tts-voice-design/
Omni multimodal interaction skills/ai/multimodal/alicloud-ai-multimodal-qwen-omni/
Visual reasoning skills/ai/multimodal/alicloud-ai-multimodal-qvq/
Text embeddings skills/ai/search/alicloud-ai-search-text-embedding/
Rerank skills/ai/search/alicloud-ai-search-rerank/
Vector retrieval skills/ai/search/alicloud-ai-search-dashvector/ or skills/ai/search/alicloud-ai-search-opensearch/ or skills/ai/search/alicloud-ai-search-milvus/
Document understanding skills/ai/text/alicloud-ai-text-document-mind/
Video editing skills/ai/video/alicloud-ai-video-wan-edit/
Model list crawl/update skills/ai/misc/alicloud-ai-misc-crawl-and-skill/

When Not Matched

  • Clarify model capability and input/output type first.
  • If capability is missing in repo, add a new skill first.

Common Missing Capabilities In This Repo (remaining gaps)

  • text generation/chat (LLM)

  • multimodal embeddings

  • OCR-specialized extraction and image translation

  • virtual try-on / digital human / advanced video personas

  • For multimodal/ASR download failures, prefer public URLs listed above.

  • For ASR parameter errors, use data URI in input_audio.data.

  • For multimodal embedding 400, ensure input.contents is an array.

Async Task Polling Template (video/long-running tasks)

When X-DashScope-Async: enable returns task_id, poll as follows:

GET https://dashscope.aliyuncs.com/api/v1/tasks/\x3Ctask_id>
Authorization: Bearer $DASHSCOPE_API_KEY

Example result fields (success):

{
  "output": {
    "task_status": "SUCCEEDED",
    "video_url": "https://..."
  }
}

Notes:

  • Recommended polling interval: 15-20 seconds, max 10 attempts.
  • After success, download output.video_url.

Clarifying questions (ask when uncertain)

  1. Are you working with text, image, audio, or video?
  2. Is this generation, editing/understanding, or retrieval?
  3. Do you need speech (TTS/ASR/live translate) or retrieval (embedding/rerank/vector DB)?
  4. Do you want runnable SDK scripts or just API/parameter guidance?

References

  • Model list and links:output/alicloud-model-studio-models-summary.md

  • API/parameters/examples: see target sub-skill SKILL.md and references/*.md

  • Official source list:references/sources.md

Validation

mkdir -p output/alicloud-ai-entry-modelstudio
echo "validation_placeholder" > output/alicloud-ai-entry-modelstudio/validate.txt

Pass criteria: command exits 0 and output/alicloud-ai-entry-modelstudio/validate.txt is generated.

Output And Evidence

  • Save artifacts, command outputs, and API response summaries under output/alicloud-ai-entry-modelstudio/.
  • Include key parameters (region/resource id/time range) in evidence files for reproducibility.

Workflow

  1. Confirm user intent, region, identifiers, and whether the operation is read-only or mutating.
  2. Run one minimal read-only query first to verify connectivity and permissions.
  3. Execute the target operation with explicit parameters and bounded scope.
  4. Verify results and save output/evidence files.
Usage Guidance
This skill appears to be a router for Alibaba Cloud Model Studio but there are a few mismatches and modest risks to check before installing or running it: 1) Metadata vs. instructions: ask the author to add DASHSCOPE_API_KEY (or equivalent) to the skill's declared requires.env so the manifest matches runtime needs. 2) Verify the dashscope package on PyPI (or the project homepage) before pip installing; prefer installing in an isolated virtualenv. 3) Confirm you trust the referenced local skill paths (skills/ai/...) — the router will dispatch requests there; review those skills for unexpected behavior. 4) Be aware the instructions reference ~/.alibabacloud/credentials and ask you to save region/resource IDs/time ranges to output files; ensure those outputs do not leak secrets or tenancy-identifying information you don't want stored. 5) If you want stronger safety, request the skill author to: add a clear requires.env entry, document exactly what dashscope API calls will be made, and avoid storing sensitive identifiers in output artifacts or provide explicit redaction guidance.
Capability Analysis
Type: OpenClaw Skill Name: alicloud-ai-entry-modelstudio Version: 1.0.3 The skill bundle serves as a routing entry point for Alibaba Cloud Model Studio services, directing the agent to specific sub-skills for tasks like image generation, video editing, and speech recognition. It uses the official Alibaba Cloud 'dashscope' SDK and legitimate API endpoints (dashscope.aliyuncs.com) without any signs of malicious intent, data exfiltration, or unauthorized execution.
Capability Assessment
Purpose & Capability
The SKILL.md describes a router that dispatches Model Studio requests to local sub-skills; that purpose is coherent with the routing table and workflow. However the instructions require a DashScope SDK and a DASHSCOPE_API_KEY (or a ~/.alibabacloud/credentials entry), yet the skill metadata declares no required environment variables or credentials. The requested credential access is plausible for polling async tasks, but the metadata/manifest should have declared it.
Instruction Scope
Instructions explicitly tell the agent to install a Python package (dashscope), set or read DASHSCOPE_API_KEY or ~/.alibabacloud/credentials, poll an external dashscope.aliyuncs.com endpoint, and save evidence files containing region/resource ids/time ranges. These actions are within a cloud-integration scenario but the SKILL.md references environment/config locations not declared in the manifest and asks the agent to produce artifacts that may contain sensitive identifiers.
Install Mechanism
This is an instruction-only skill (no install spec). It tells the operator to pip install dashscope inside a venv. That is a moderate-risk instruction because dashscope is a third-party PyPI package (unknown from this package alone). No automatic downloads or obscure URLs are present in the skill itself, but the package should be verified before installing.
Credentials
The skill metadata lists no required environment variables, but the runtime instructions require DASHSCOPE_API_KEY or reading ~/.alibabacloud/credentials. It also asks the agent to include region/resource ids and times in output artifacts. Requesting a single cloud API key for polling is reasonable, but the omission in metadata and the potential to store sensitive identifiers in output files are disproportionate and should be clarified.
Persistence & Privilege
The skill does not request always:true, does not modify other skills, and has no install-time persistence. It does instruct saving output artifacts under output/alicloud-ai-entry-modelstudio/, which is expected for reproducibility and is a limited filesystem footprint.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install alicloud-ai-entry-modelstudio
  3. After installation, invoke the skill by name or use /alicloud-ai-entry-modelstudio
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.3
batch publish from alicloud-skills on 2026-03-11
v1.0.2
batch publish from alicloud-skills on 2026-02-13
v1.0.1
Initial ClawHub publish for Alibaba Cloud skills with agents metadata.
v1.0.0
Initial ClawHub publish for Alibaba Cloud skills with agents metadata.
Metadata
Slug alicloud-ai-entry-modelstudio
Version 1.0.3
License MIT-0
All-time Installs 2
Active Installs 2
Total Versions 4
Frequently Asked Questions

What is Alicloud Ai Entry Modelstudio?

Route Alibaba Cloud Model Studio requests to the right local skill (Qwen Image, Qwen Image Edit, Wan Video, Wan R2V, Qwen TTS, Qwen ASR and advanced TTS vari... It is an AI Agent Skill for Claude Code / OpenClaw, with 1195 downloads so far.

How do I install Alicloud Ai Entry Modelstudio?

Run "/install alicloud-ai-entry-modelstudio" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Alicloud Ai Entry Modelstudio free?

Yes, Alicloud Ai Entry Modelstudio is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Alicloud Ai Entry Modelstudio support?

Alicloud Ai Entry Modelstudio is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Alicloud Ai Entry Modelstudio?

It is built and maintained by cinience (@cinience); the current version is v1.0.3.

💬 Comments