← Back to Skills Marketplace
sdk-team

Alibabacloud Pds Intelligent Workspace

by alibabacloud-skills-team · GitHub ↗ · v0.0.2 · MIT-0
cross-platform ⚠ suspicious
110
Downloads
0
Stars
0
Active Installs
2
Versions
Install in OpenClaw
/install alibabacloud-pds-intelligent-workspace
Description
Implements file upload, file download, document analysis, video analysis, and image editing features. Image editing supports scaling, cropping, rotation, seg...
README (SKILL.md)

PDS (Cloud Drive)

Please read this entire skill document carefully

Features

  • For getting drive/drive_id, querying enterprise space, team space, personal space -> read references/drive.md
  • For uploading local files to enterprise space, team space, personal space → read references/upload-file.md
  • For downloading files from enterprise space, team space, personal space to local → read references/download-file.md
  • For searching or finding files → read references/search-file.md
  • For document/audio/video analysis, quick view, summarization on cloud drive → read references/multianalysis-file.md
  • For image search, similar image search, image-text hybrid retrieval → read references/visual-similar-search.md
  • For mount app, install mount app, uninstall mount app, stop mount app → read references/mountapp.md
  • For image editing, image processing → read references/image-editing.md

Agent Execution Guidelines

  • Must execute steps in order: Do not skip any step, do not proceed to the next step before the previous one is completed.
  • Must follow documentation: The aliyun pds cli commands and parameters must follow this document's guidance, do not fabricate commands.
  • Recommended parameter: All aliyun pds commands should include --user-agent AlibabaCloud-Agent-Skills parameter to help server identify request source, track usage, and troubleshoot issues.

Core Concepts:

  • Domain: PDS instance with a unique domain_id, data is completely isolated between domains
  • User: End user under a domain, has user_id
  • Group: Team organization under a domain, divided into enterprise group and team group
  • Drive: Storage space, can belong to a user (personal space) or team (team/enterprise space)
  • File: File or folder under a space, has file_id
  • Mountapp: PDS mount app plugin, used to mount PDS space to local, allowing users to access and manage files in PDS space conveniently

Installation Requirements

Prerequisites: Requires Aliyun CLI >= 3.3.1

Verify CLI version:

aliyun version  # requires >= 3.3.1

Verify PDS plugin version:

aliyun pds version  # requires >= 0.1.4

If version requirements are not met, refer to references/cli-installation-guide.md for installation or upgrade.

After installation, must enable auto plugin installation:

aliyun configure set --auto-plugin-install true

Authentication Configuration

Prerequisites: Alibaba Cloud credentials must be configured

Security Rules:

  • Forbidden to read, output, or print AK/SK values (e.g., echo $ALIBABA_CLOUD_ACCESS_KEY_ID is forbidden)
  • Forbidden to ask users to input AK/SK directly in conversation or command line
  • Forbidden to use aliyun configure set to set plaintext credentials
  • Only allowed to use aliyun configure list to check credential status

Check credential configuration:

aliyun configure list

Confirm the output shows a valid profile (AK, STS, or OAuth identity).

If no valid configuration exists, stop first.

  1. Obtain credentials from Alibaba Cloud Console
  2. Configure credentials outside this session (run aliyun configure in terminal or set environment variables)
  3. Run aliyun configure list to verify after configuration is complete
# Install Aliyun CLI (if not installed)
curl -fsSL --max-time 10 https://aliyuncli.alicdn.com/install.sh | bash
aliyun version  # confirm >= 3.3.1

# Enable auto plugin installation
aliyun configure set --auto-plugin-install true

# Install Python dependencies (for multipart upload script)
pip3 install requests

PDS-Specific Configuration

Before executing any PDS operations, you must first configure domain_id, user_id, and authentication type -> read references/config.md

Recommended parameter: All aliyun pds commands should include --user-agent AlibabaCloud-Agent-Skills parameter

Examples:

aliyun pds get-user --user-agent AlibabaCloud-Agent-Skills
aliyun pds list-my-drives --user-agent AlibabaCloud-Agent-Skills
aliyun pds upload-file --drive-id \x3Cid> --local-path \x3Cpath> --user-agent AlibabaCloud-Agent-Skills

References

Reference Document Path
CLI Installation Guide references/cli-installation-guide.md
RAM Permission Policies references/ram-policies.md

Error Handling

  1. If file search fails, please read references/search-file.md and strictly follow the documented process to re-execute file search.
Usage Guidance
This skill appears to be a real Aliyun PDS integration, but it asks you (via instructions) to install system components and to have Alibaba Cloud credentials configured — details that the registry metadata omits. Before using it: 1) Do not run any install commands (especially curl | bash or driver installers) unless you trust the source and have a backup. 2) Verify the mount app download URL returned by aliyun pds mountapp --action get-latest-version points to a trusted vendor domain before downloading/executing installers. 3) Prepare least-privilege RAM credentials (not root) and configure them yourself via the Aliyun CLI (outside any chat). 4) If you need only read/download analysis results, avoid installing the mount app and run only the minimal CLI/Python commands. 5) If possible, audit the included scripts locally (they are bundled) before executing them, and run installation steps manually with awareness of required privileges.
Capability Analysis
Type: OpenClaw Skill Name: alibabacloud-pds-intelligent-workspace Version: 0.0.2 The skill bundle implements extensive management features for Alibaba Cloud PDS, including a 'mount app' that installs system drivers (Dokan/macFUSE), executes remote scripts, and establishes persistence via Windows Scheduled Tasks and macOS LaunchAgents (references/mountapp.md). It also utilizes a curl-to-bash pattern for installing the Aliyun CLI (SKILL.md). While these capabilities are aligned with the stated purpose of mounting a cloud drive, the automated installation of drivers and persistence mechanisms represents a significant security risk and high-privilege attack surface.
Capability Tags
requires-walletrequires-oauth-tokenrequires-sensitive-credentials
Capability Assessment
Purpose & Capability
The skill claims to use the Aliyun CLI, PDS plugin, and Python scripts, but the registry metadata declares no required binaries or credentials. The runtime instructions explicitly require aliyun CLI >=3.3.1, the PDS plugin, Python/pip, and configured Alibaba Cloud credentials — these runtime requirements are not reflected in the declared metadata, which is inconsistent.
Instruction Scope
SKILL.md instructs the agent to run many system-level operations: query/list drives, download signed URLs, run curl|bash to install Aliyun CLI, pip install packages, and (for mount app) download and execute installers that install drivers (Dokan/macFUSE), create services/scheduled tasks, and modify system configuration. Those instructions will read and write local files, create system services and drivers, and download executables from endpoints returned by the service — all of which go beyond simple API calls.
Install Mechanism
There is no formal install spec in the registry, but SKILL.md recommends running remote installers (e.g., curl https://aliyuncli.alicdn.com/install.sh | bash) and downloading the mount app from a URL returned by the PDS API. While the Aliyun domains cited for CLI are official, the mount app download URL is obtained at runtime and could point to arbitrary locations; installers and driver installation will extract and run code with elevated privileges.
Credentials
The skill requires valid Alibaba Cloud credentials and persistent Aliyun CLI configuration to function, yet the manifest lists no required env vars or primary credential. The SKILL.md forbids printing or asking for AK/SK in chat (good), but the absence of declared credential requirements in metadata is a mismatch and deserves caution. The scripts will also write CLI config (~/.aliyun/config.json) and may rely on env vars like ALIBABA_CLOUD_ACCESS_KEY_ID if used.
Persistence & Privilege
always:false and the skill is user-invocable (normal). However, the mount app flow instructs installing drivers, registering services/scheduled tasks, and writing files under system locations (e.g., /opt/mountapp, ~/.edm/plugins, systemctl service) — operations that grant lasting system presence and require admin privileges. That behavior is consistent with a mount tool but increases risk and should be allowed only after explicit user approval.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install alibabacloud-pds-intelligent-workspace
  3. After installation, invoke the skill by name or use /alibabacloud-pds-intelligent-workspace
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v0.0.2
- Added image editing and processing features, including scaling, cropping, rotation, segmentation, removal, and watermark operations with save-as to PDS drive. - Introduced new triggers for "PDS image editing" and "PDS image processing". - Expanded documentation with `references/image-editing.md` and supporting script for image editing workflow. - Updated skill description and feature list to reflect image editing support.
v0.0.1
Initial release with core PDS cloud drive and mount app capabilities. - Supports file upload, file download, document analysis, and video analysis on Alibaba Cloud PDS drives. - Provides commands and guidelines for installing and configuring the PDS mount app plugin. - Includes strict agent execution guidelines and security controls for handling credentials. - Reference documentation links for drive, upload, download, search, analysis, and mount app usage. - Details installation prerequisites and version requirements for Aliyun CLI and PDS plugin.
Metadata
Slug alibabacloud-pds-intelligent-workspace
Version 0.0.2
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 2
Frequently Asked Questions

What is Alibabacloud Pds Intelligent Workspace?

Implements file upload, file download, document analysis, video analysis, and image editing features. Image editing supports scaling, cropping, rotation, seg... It is an AI Agent Skill for Claude Code / OpenClaw, with 110 downloads so far.

How do I install Alibabacloud Pds Intelligent Workspace?

Run "/install alibabacloud-pds-intelligent-workspace" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Alibabacloud Pds Intelligent Workspace free?

Yes, Alibabacloud Pds Intelligent Workspace is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Alibabacloud Pds Intelligent Workspace support?

Alibabacloud Pds Intelligent Workspace is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Alibabacloud Pds Intelligent Workspace?

It is built and maintained by alibabacloud-skills-team (@sdk-team); the current version is v0.0.2.

💬 Comments