Aliyun Qwen Generation

Security checks across static analysis, malware telemetry, and agentic risk

Overview

This is a straightforward Alibaba Qwen text-generation helper with expected API-key, provider-call, package-install, and local-output considerations.

Install only if you intend to use Alibaba Cloud Model Studio Qwen models. Configure a scoped DashScope/API key, avoid sending sensitive data unless the provider terms fit your needs, and periodically review the generated files under `output/aliyun-qwen-generation/`.

Static analysis

No static analysis findings were reported for this release.

VirusTotal

VirusTotal findings are pending for this skill version.

View on VirusTotal

Risk analysis

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

Using the skill may consume Alibaba Cloud API quota or incur costs under the configured account.

Why it was flagged

The skill requires a provider credential to access Alibaba Cloud Model Studio. This is expected for the stated purpose, but the credential can authorize API use and potential account charges.

Skill content
Set `DASHSCOPE_API_KEY` in your environment, or add `dashscope_api_key` to `~/.alibabacloud/credentials`.
Recommendation

Use a scoped Model Studio API key where possible, avoid sharing it in prompts or logs, and verify account billing/quota settings.

What this means

Installing the SDK adds third-party code to the local Python environment.

Why it was flagged

The setup asks the user to install the provider SDK from a package index without pinning a version. This is normal for a provider integration, but it is still a supply-chain dependency.

Skill content
python -m pip install dashscope
Recommendation

Install in the documented virtual environment, consider pinning or reviewing the `dashscope` package version, and use trusted package sources.

What this means

Prompt content and request parameters may be processed by Alibaba Cloud Model Studio.

Why it was flagged

The documented workflow sends chat messages to Alibaba Cloud's DashScope-compatible endpoint using the user's bearer token. This external provider communication is disclosed and purpose-aligned.

Skill content
curl -sS https://dashscope.aliyuncs.com/compatible-mode/v1/chat/completions ... -H "Authorization: Bearer $DASHSCOPE_API_KEY" ... "messages"
Recommendation

Do not send secrets or regulated data unless your Alibaba Cloud account, region, and data-handling terms are appropriate for that use.

What this means

Generated request and response evidence may remain on disk after use.

Why it was flagged

The skill intentionally persists prompt and response artifacts locally. The path is scoped and disclosed, but those files may contain sensitive prompt content if the user includes it.

Skill content
Save prompt templates, normalized request payloads, and response summaries under `output/aliyun-qwen-generation/`.
Recommendation

Review or clean the output directory if prompts include private information, and avoid committing generated outputs to shared repositories.