Alicloud Ai Pai Aiworkspace

AdvisoryAudited by Static analysis on Apr 30, 2026.

Overview

No suspicious patterns detected.

Findings (0)

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

If used with broad credentials, the agent could access or change AIWorkspace resources allowed by that Alibaba Cloud account.

Why it was flagged

The skill may use Alibaba Cloud account credentials or a local shared credential file. This is expected for AIWorkspace management, but it grants delegated cloud-account authority and is not reflected in the registry credential declarations.

Skill content
Environment variables: `ALICLOUD_ACCESS_KEY_ID` / `ALICLOUD_ACCESS_KEY_SECRET` / `ALICLOUD_REGION_ID` ... Shared config file: `~/.alibabacloud/credentials`
Recommendation

Use least-privilege Alibaba Cloud credentials scoped to the required AIWorkspace actions, set the intended region explicitly, and avoid using broad administrator keys.

What this means

The agent could create or modify AIWorkspace configuration or related resources within the permissions of the supplied credentials.

Why it was flagged

The skill is designed to issue Alibaba Cloud API calls, including mutating operations. This matches the stated purpose, but cloud API mutations can have operational impact if the wrong resource, region, or action is chosen.

Skill content
Call API with SDK or OpenAPI Explorer ... Change/configure: prefer `Create*` / `Update*` / `Modify*` / `Set*` APIs for mutations.
Recommendation

Require explicit user confirmation for mutating API calls, verify resource IDs and region before execution, and check results with describe/list APIs as the skill suggests.

What this means

Local output files may reveal resource IDs, regions, time ranges, or summarized API responses to anyone with access to the workspace files.

Why it was flagged

The skill intentionally persists API response summaries and resource-identifying parameters to local output files. This is useful for auditability, but those files may contain cloud environment metadata.

Skill content
Save artifacts, command outputs, and API response summaries under `output/alicloud-ai-pai-aiworkspace/`. Include key parameters (region/resource id/time range) in evidence files for reproducibility.
Recommendation

Do not save secrets in output artifacts, review generated files before sharing them, and delete or protect the output directory if it contains sensitive cloud metadata.