← Back to Skills Marketplace
sdk-team

Alibabacloud Dataworks Infra Manage

by alibabacloud-skills-team · GitHub ↗ · v0.0.3 · MIT-0
cross-platform ⚠ suspicious
170
Downloads
0
Stars
0
Active Installs
3
Versions
Install in OpenClaw
/install alibabacloud-dataworks-infra-manage
Description
DataWorks Infrastructure Management: Create and query operations for Data Sources (50 types), Compute Resources, and Serverless Resource Groups, plus connect...
README (SKILL.md)

DataWorks Infrastructure Management

Unified management of Data Sources, Compute Resources, and Resource Groups in Alibaba Cloud DataWorks workspaces, supporting create and query operations.

Architecture

DataWorks
├── Workspaces ─── Query and search workspaces
│   ├── Data Sources ─── 50 types: MySQL, Hologres, MaxCompute, ...
│   └── Compute Resources ─── Hologres, MaxCompute, Flink, Spark
└── Resource Groups ─── Serverless resource group management (cross-workspace)

Dependencies:
  Workspace ◀── Data Sources, Compute Resources (must belong to a workspace)
  Workspace ◀── Resource Groups (associated via binding; one resource group can bind to multiple workspaces)
  Connectivity Test ──depends on──▶ Resource Group (must be bound to the workspace of the data source)
  Standard Mode ──requires──▶ Dev (Development) + Prod (Production) dual data sources and compute resources

Global Rules

Prerequisites

  1. Aliyun CLI >= 3.3.1: aliyun version (Installation guide: references/cli-installation-guide.md)
  2. First-time use: aliyun configure set --auto-plugin-install true
  3. jq (required for resource group operations): which jq
  4. Credential status: aliyun configure list, verify valid credentials exist
  5. DataWorks edition: Basic edition or above required

Security Rules: DO NOT read/print/echo AK/SK values, DO NOT let users input AK/SK directly, ONLY use aliyun configure list to check credential status.

Command Formatting

  • User-Agent (mandatory): All aliyun CLI commands must include the --user-agent AlibabaCloud-Agent-Skills parameter to identify the source.
  • Single-line commands: When executing Bash commands, must construct as a single-line string; do not use \ for line breaks.
  • jq step-by-step execution: First execute the aliyun command to get JSON, then format with jq (to avoid multi-line security prompts).
  • Endpoint mandatory: When specifying the --region parameter, you must also add --endpoint dataworks.\x3CREGION_ID>.aliyuncs.com. Not needed when --region is not specified.

Parameter Confirmation

Before executing any command, all user-customizable parameters must be confirmed by the user. Do not assume or use default values. Exception: When the user has explicitly specified parameter values in the conversation, use them directly without re-confirmation.

Resource group related parameters (mandatory user selection): VPC, VSwitch, Resource Group ID (for binding/connectivity testing) — involve networking and billing, DO NOT auto-select; must display a list for the user to explicitly choose. Confirm even if there is only one option.

⚠️ Write API Execution Gate — MUST Check Before Every Write Operation

MANDATORY: Before calling any Write API (Create / Update / Delete / Bind / Unbind / Associate / Dissociate / Test), you MUST perform the following checks in order:

  1. Scan the entire SKILL.md for a Security Restriction or Disabled Operations notice that mentions the target API or module.
  2. If a restriction exists: BLOCK the operation immediately. Do NOT call the API. Respond to the user with:
    • What operation is blocked and why
    • The recommended alternative (e.g., use the DataWorks console, contact administrator)
  3. If no restriction exists: Proceed normally with parameter confirmation and execution.

This check is NOT optional. It applies to every single write operation without exception. Never skip this step.

Quick Reference — Blocked APIs in this skill:

Module Blocked APIs Reason
Data Sources (Module 1) UpdateDataSource, DeleteDataSource Prevent accidental data loss, credential exposure, disruption of running tasks
Compute Resources (Module 2) UpdateComputeResource, DeleteComputeResource Prevent disruption of running development and scheduling tasks

Allowed Write APIs: CreateDataSource, CreateComputeResource, CreateResourceGroup, AssociateProjectToResourceGroup, DissociateProjectFromResourceGroup, TestDataSourceConnectivity

RAM Permissions

All operations require dataworks:\x3CAPIAction> permissions. Creating resource groups additionally requires AliyunBSSOrderAccess and vpc:DescribeVpcs, vpc:DescribeVSwitches.

Full permission matrix: references/ram-policies.md


Quick Start: New Workspace Infrastructure Initialization

When the user is unsure about specific operations or has vague requirements, guide them through the following process:

  1. Environment check — Check CLI and credentials per Prerequisites
  2. Confirm workspace — Use ListProjects to locate the workspace, GetProject to confirm the mode (Simple/Standard)
  3. Create compute resources — Guide engine type selection; the system will automatically create corresponding data sources. Standard Mode requires Dev+Prod pairs. Only pure storage-type data sources (MySQL, Kafka, etc.) need separate data source creation
  4. Create/bind resource groups — Query existing resource groups → let user select → bind. Guide creation when no resource groups are available
  5. Test connectivity — Test with bound resource groups; when all pass, inform "Infrastructure configuration complete"

After each step, proactively suggest the next action.


Next Step Guidance

After each write operation is completed and verified, proactively suggest follow-up actions:

Completed Operation Recommended Next Step
Create compute resource Standard Mode: "Create the corresponding Dev resource?"; "Test connectivity?"
Create data source separately "Test connectivity?"; Standard Mode: "Create Dev/Prod environment data sources?"
Create resource group "Bind to a workspace?"
Bind resource group "Test data source connectivity?"
Connectivity test passed "Infrastructure is ready."
Connectivity test failed Analyze the error cause, guide the fix
Unbind resource group "Bind to another workspace?"

Trigger Rules

Trigger scenarios: Data source create/query, compute resource create/query, resource group management, infrastructure initialization, colloquial aliases (DW database connection failure, configure holo/mc resources, create rg)

Not triggered: Data development tasks, scheduling configuration, MaxCompute table management, data integration tasks, ECS/RDS/OSS, workspace member management, data quality/lineage/preview. Standalone workspace queries are handled by the alibabacloud-dataworks-workspace-manage skill.

Interaction Flow

All operations follow: Identify module → Environment check → Collect parameters → Execute command → Verify result → Guide next step

Common aliases: DW=DataWorks, holo=Hologres, mc/MC/odps=MaxCompute, pg=PostgreSQL, rg=Resource Group, ds=Data Source, RDS=InstanceMode MySQL/PG/SQLServer, ADB=AnalyticDB

Naming suggestions: Data source {type}_{business}_{purpose}, Compute resource {type}_{business}, Resource group dw_{purpose}_rg_{env}


Module 0: Workspace Query

If the alibabacloud-dataworks-workspace-manage skill is available, prefer using it for workspace queries. The following is only a fallback.

aliyun dataworks-public ListProjects --user-agent AlibabaCloud-Agent-Skills --Status Available --PageSize 100

When searching by name, first get the full list then filter .PagingInfo.Projects[] by Name/DisplayName using jq.


Module 1: Data Source Management

Supports 50 data source types. See references/data-sources/README.md for details.

When do you need to create a data source separately? Creating a compute resource (Module 2) will automatically create the corresponding data source. Only pure storage-type databases (MySQL, PostgreSQL, Kafka, MongoDB, etc.) need separate creation.

Note: The following types do not currently support OpenAPI: hdfs

Connection modes: UrlMode (self-hosted databases, requires host/port) or InstanceMode (Alibaba Cloud managed instances, requires instanceId). When unsure, proactively ask the user. InstanceMode is preferred.

Instance query APIs: references/data-sources/instance-apis.md

⚠️ Security Restriction — See Write API Execution Gate (Global Rules) for mandatory pre-check

IMPORTANT: The DeleteDataSource and UpdateDataSource APIs are supported by the DataWorks service, but this skill has disabled modifying or deleting data sources for security reasons. Before attempting any write operation, the agent MUST check the Write API Execution Gate section. If you need to modify or delete a data source, please use the DataWorks console directly or contact your administrator.

Connection Mode Quick Reference

ConnectionPropertiesMode selection determines required fields. InstanceMode is preferred when both are available.

Mode Types Count
Both mysql, postgresql, sqlserver, polardb, polardbo, polardb-x-2-0, apsaradb_for_oceanbase, drds, starrocks, analyticdb_for_mysql, analyticdb_for_postgresql, milvus, mongodb, redis, elasticsearch, kafka 16
InstanceMode only hologres, dlf, opensearch 3
UrlMode only oracle, mariadb, dm, db2, tidb, vertica, gbase8a, kingbasees, saphana, snowflake, maxcompute, hive, clickhouse, doris, selectdb, redshift, hbase, lindorm, oss, s3, ftp, ssh, tablestore, memcache, graph_database, datahub, loghub, restapi, salesforce, httpfile, bigquery 31

hdfs — not supported via OpenAPI. Full details: references/data-sources/README.md

Workspace Mode

Environment note: Prod (Production) is for production data processing; Dev (Development) is for development and debugging, physically isolated from production.

aliyun dataworks-public GetProject --user-agent AlibabaCloud-Agent-Skills --Id \x3CPROJECT_ID> — check DevEnvironmentEnabled:

  • false → Simple Mode (1 data source, envType=Prod)
  • true → Standard Mode (2 data sources, Dev + Prod, physically isolated)

Full mode comparison: references/data-sources/README.md

Task 1.1: Create Data Source (CreateDataSource)

aliyun dataworks-public CreateDataSource --user-agent AlibabaCloud-Agent-Skills [--region \x3CREGION_ID> --endpoint dataworks.\x3CREGION_ID>.aliyuncs.com] --ProjectId \x3CPROJECT_ID> --Name \x3CNAME> --Type \x3CTYPE> --ConnectionPropertiesMode \x3CUrlMode|InstanceMode> --ConnectionProperties '\x3CJSON>' --Description "\x3CDESC>"

ConnectionProperties common structure:

  • UrlMode: {"envType":"Prod","address":[{"host":"\x3CIP>","port":\x3CPORT>}],"database":"\x3CDB>","username":"\x3CUSER>","password":"\x3CPWD>"}
  • InstanceMode: {"envType":"Prod","instanceId":"\x3CID>","regionId":"\x3CREGION>","database":"\x3CDB>","username":"\x3CUSER>","password":"\x3CPWD>"}

Special type structures (Oracle, MaxCompute, HBase, etc.): see references/data-sources/ per-type docs

Cross-account data source configuration: references/cross-account-datasources.md

Task 1.2: Get Data Source (GetDataSource)

aliyun dataworks-public GetDataSource --user-agent AlibabaCloud-Agent-Skills --Id \x3CDATASOURCE_ID> [--region \x3CREGION_ID> --endpoint dataworks.\x3CREGION_ID>.aliyuncs.com]

Task 1.3: List Data Sources (ListDataSources)

aliyun dataworks-public ListDataSources --user-agent AlibabaCloud-Agent-Skills --ProjectId \x3CPROJECT_ID> [--Types '["mysql"]'] [--EnvType \x3CDev|Prod>] [--PageNumber 1] [--PageSize 20]

Returns nested structure DataSources[].DataSource[]; Name/Type are in the outer layer, Id/Description in the inner layer.

Task 1.4: Test Connectivity (TestDataSourceConnectivity)

Process: Query resource group list → Let user select a resource group → Execute test.

# Step 1: Query project resource groups
aliyun dataworks-public ListResourceGroups --user-agent AlibabaCloud-Agent-Skills --ProjectId \x3CPROJECT_ID>

# Step 2: Execute test after user selects a resource group
aliyun dataworks-public TestDataSourceConnectivity --user-agent AlibabaCloud-Agent-Skills --DataSourceId \x3CID> --ProjectId \x3CPROJECT_ID> --ResourceGroupId "\x3CRG_ID>"

If error "resourceGroupId is not in the project", the resource group needs to be bound first (confirm with user, then execute AssociateProjectToResourceGroup).


Module 2: Compute Resource Management

Supports Hologres, MaxCompute, Flink, Spark, and other types. The system will automatically create corresponding data sources upon creation.

⚠️ Security Restriction — See Write API Execution Gate (Global Rules) for mandatory pre-check

IMPORTANT: For security reasons, this skill does NOT support modifying or deleting compute resources. Before attempting any write operation, the agent MUST check the Write API Execution Gate section. These operations are disabled to prevent:

  • Accidental data loss or service interruption
  • Disruption of running data development and scheduling tasks
  • Unintended changes to production compute resource configurations

If you need to modify or delete a compute resource, please use the DataWorks console directly or contact your administrator.

authType Rules

  • Dev environment: authType is fixed as Executor
  • Prod environment: Options are PrimaryAccount (recommended), TaskOwner, SubAccount, RamRole. Default recommendation is PrimaryAccount unless user has special requirements

authType details and guidance: references/compute-resources/README.md

Type-Specific Notes

  • Hologres: Only supports InstanceMode, requires instanceId, securityProtocol
  • MaxCompute: Only supports UrlMode, requires project, endpointMode

Full ConnectionProperties examples: references/compute-resources/README.md

Task 2.1: Create Compute Resource (CreateComputeResource)

aliyun dataworks-public CreateComputeResource --user-agent AlibabaCloud-Agent-Skills [--region \x3CREGION_ID> --endpoint dataworks.\x3CREGION_ID>.aliyuncs.com] --ProjectId \x3CPROJECT_ID> --Name \x3CNAME> --Type \x3CTYPE> --ConnectionPropertiesMode \x3CInstanceMode|UrlMode> --ConnectionProperties '\x3CJSON>' [--Description "\x3CDESC>"]

After creation, use ListDataSources to verify the corresponding data source was auto-generated.

Task 2.2: Get Compute Resource (GetComputeResource)

aliyun dataworks-public GetComputeResource --user-agent AlibabaCloud-Agent-Skills --Id \x3CID> --ProjectId \x3CPROJECT_ID>

Task 2.3: List Compute Resources (ListComputeResources)

aliyun dataworks-public ListComputeResources --user-agent AlibabaCloud-Agent-Skills --ProjectId \x3CPROJECT_ID> [--Name \x3CFILTER>] [--EnvType \x3CDev|Prod>] [--PageSize 20] [--SortBy CreateTime] [--Order Desc]

Returns nested structure ComputeResources[].ComputeResource[]; Name/Type are in the outer layer, Id in the inner layer.


Module 3: Resource Group Management

Manages the full lifecycle of Serverless resource groups.

Task 3.1: Create Resource Group (CreateResourceGroup)

Requires AliyunBSSOrderAccess permission.

Interaction flow (let user choose at each step, DO NOT auto-select):

  1. Query and select VPC:
aliyun vpc DescribeVpcs --user-agent AlibabaCloud-Agent-Skills --RegionId "\x3CREGION_ID>" --PageSize 50

If the list is empty, guide the user to create a VPC; DO NOT auto-create.

  1. Query and select VSwitch:
aliyun vpc DescribeVSwitches --user-agent AlibabaCloud-Agent-Skills --RegionId "\x3CREGION_ID>" --VpcId "\x3CVPC_ID>" --PageSize 50
  1. Confirm name and specification → Execute creation:
aliyun dataworks-public CreateResourceGroup --user-agent AlibabaCloud-Agent-Skills [--region \x3CREGION_ID> --endpoint dataworks.\x3CREGION_ID>.aliyuncs.com] --Name "\x3CNAME>" --PaymentType PostPaid --VpcId "\x3CVPC_ID>" --VswitchId "\x3CVSWITCH_ID>" --ClientToken "$(uuidgen 2>/dev/null || echo "token-$(date +%s)")" --Remark "Created by Agent"

After creation, poll GetResourceGroup until status becomes Normal (every 10 seconds, up to 10 minutes).

Task 3.2: Get Resource Group (GetResourceGroup)

aliyun dataworks-public GetResourceGroup --user-agent AlibabaCloud-Agent-Skills --Id "\x3CID>"

Task 3.3: List Resource Groups (ListResourceGroups)

aliyun dataworks-public ListResourceGroups --user-agent AlibabaCloud-Agent-Skills [--ProjectId \x3CPROJECT_ID>] [--Statuses '["Normal"]'] --PageSize 100

Task 3.4: Bind Resource Group (AssociateProjectToResourceGroup)

Process: Query available resource groups → Display list for user to select → Bind after user confirms.

aliyun dataworks-public AssociateProjectToResourceGroup --user-agent AlibabaCloud-Agent-Skills --ResourceGroupId "\x3CRG_ID>" --ProjectId "\x3CPROJECT_ID>"

Task 3.5: Query Binding Relationships

aliyun dataworks-public ListResourceGroupAssociateProjects --user-agent AlibabaCloud-Agent-Skills --ResourceGroupId "\x3CRG_ID>"

Task 3.6: Unbind Resource Group (DissociateProjectFromResourceGroup)

aliyun dataworks-public DissociateProjectFromResourceGroup --user-agent AlibabaCloud-Agent-Skills --ResourceGroupId "\x3CRG_ID>" --ProjectId "\x3CPROJECT_ID>"

Success Verification

After all write operations, use the corresponding Get/List command to verify the result.

Common Errors

Error Code Solution
Forbidden.Access / PermissionDenied Check RAM permissions, see references/ram-policies.md
InvalidParameter Check ConnectionProperties JSON and required parameters
EntityNotExists Verify the ID and Region are correct
QuotaExceeded Delete unused resources or request a quota increase
Duplicate* Use a different name

Region

Common: cn-hangzhou, cn-shanghai, cn-beijing, cn-shenzhen. Endpoint: dataworks.\x3Cregion-id>.aliyuncs.com

Full list: references/related-apis.md

Best Practices

  1. Query before action — Confirm current state before create operations
  2. Manage by environment — Manage Dev and Prod resources separately
  3. Verify operations — Use Get/List to verify after each write operation
  4. Proactive guidance — Suggest the next step after each step completes
  5. Protect data sources and compute resources — Never modify or delete data sources or compute resources via this skill; use the DataWorks console for such operations

Reference Links

Reference Description
references/data-sources/README.md Data source type list and ConnectionProperties examples
references/data-sources/ Detailed configuration docs for each data source type (50 files)
references/cross-account-datasources.md Cross-account data source configuration guide
references/compute-resources/README.md Compute resource ConnectionProperties examples
references/cli-installation-guide.md Aliyun CLI installation guide
references/ram-policies.md RAM permission configuration and policy examples
references/related-apis.md API parameter details and Region Endpoints
Usage Guidance
This skill appears to do what it says (manage DataWorks infra via the Aliyun CLI) but has several practical and safety issues you should consider before installing or using it: - Metadata vs instructions mismatch: The package metadata claims no required binaries, but SKILL.md requires aliyun CLI >= 3.3.1 and jq and expects valid Aliyun credentials configured locally. Expect to install and configure the CLI yourself; the skill won't declare that for you. - Credentials handling: Do NOT paste your AK/SK into chat. Configure the Aliyun CLI locally (aliyun configure) or use scoped RAM roles/STS tokens. Be cautious: many example commands embed DB passwords or access keys as CLI arguments or JSON properties — these can leak via shell history or process listings. Prefer using secure methods (prompting securely, reading from protected files, or short-lived tokens) and avoid sending secrets into the conversation. - Write-operation risk: The SKILL.md requires a manual scan before any write API; that is an instruction, not an enforced control. Treat any create/update/delete operation as potentially destructive. Always run write operations in a test/non-production workspace first and confirm exact parameters with an administrator. - Principle of least privilege: Ensure the Alibaba Cloud credentials used have the minimal DataWorks and VPC/RAM permissions needed (see references/ram-policies.md) rather than broad account-level privileges. - Review the full SKILL.md and reference docs: Because the skill supports many datasource types, review the specific datasource docs you will use (e.g., cross-account, bigQuery, datahub) to understand what secrets/permissions they require. If you plan to proceed: test with a throwaway workspace, do not paste AK/SK into chat, avoid passing passwords on the command line where possible, and confirm every write action explicitly before execution.
Capability Analysis
Type: OpenClaw Skill Name: alibabacloud-dataworks-infra-manage Version: 0.0.3 The skill bundle for Alibaba Cloud DataWorks infrastructure management is well-structured and includes several proactive security measures. It explicitly forbids the reading or printing of Access Keys (AK/SK), mandates user confirmation for all customizable parameters, and implements a 'Write API Execution Gate' that intentionally blocks destructive operations like Update and Delete for data sources and compute resources to prevent accidental data loss. The commands use the official aliyun CLI with a specific User-Agent for tracking, and the documentation (SKILL.md and various reference files) is consistent with the stated purpose of managing cloud infrastructure without any signs of malicious intent, data exfiltration, or prompt-injection attacks.
Capability Tags
cryptorequires-walletcan-make-purchasesrequires-oauth-token
Capability Assessment
Purpose & Capability
The skill's description and SKILL.md clearly target Alibaba Cloud DataWorks and legitimately require the Aliyun CLI and jq plus valid Alibaba Cloud credentials. However the registry metadata declares no required binaries or primary credential even though the instructions mandate aliyun CLI >= 3.3.1, jq, and an already-configured AK/SK (via aliyun configure). This metadata omission is an inconsistency that can mislead users or automated installers.
Instruction Scope
SKILL.md gives explicit CLI command patterns and strict rules (user-agent, single-line commands, scan SKILL.md before any write). That scope is appropriate for DataWorks operations, but the instructions do not adequately mitigate sensitive-parameter exposure: examples and CreateDataSource usage embed database passwords in JSON/CLI arguments (which can appear in shell history or process lists). The security rules explicitly forbid echoing AK/SK but do not explicitly forbid echoing other secrets (DB passwords, accessKeys for datahub, bigQueryAuth, etc.), nor do they recommend safer approaches (stdin, config files, or using RAM roles/temporary credentials). The write-operation gating is only an instruction inside SKILL.md (not enforced by platform) and relies on the agent following it; this is a process risk.
Install Mechanism
This is an instruction-only skill with no install spec and no code files; that minimizes platform install risk. The included references show official Aliyun CLI download URLs (aliyuncli.alicdn.com). Nothing in the package auto-downloads or executes code on install, so install risk is low.
Credentials
Metadata lists no required environment variables or primary credential, but SKILL.md requires an already-configured Aliyun CLI credential (AK/SK in local config) and the user will likely need to provide database usernames/passwords and cross-account IDs/role names when creating datasources. The absence of declared credential requirements in the metadata is misleading. The skill also references many data source types that require sensitive secrets (DB passwords, accessKey/accessId, bigQueryAuth file ID) — these are proportionate to the functionality but the skill does not instruct safe handling for them.
Persistence & Privilege
The skill does not request permanent/always-on inclusion (always:false), does not claim system-level persistence, and does not attempt to modify other skills or system settings. Autonomous invocation is allowed (default) but not combined with other high-risk indicators here.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install alibabacloud-dataworks-infra-manage
  3. After installation, invoke the skill by name or use /alibabacloud-dataworks-infra-manage
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v0.0.3
**Write API restriction logic added and data source type updates.** - Introduced a mandatory security gate before every write operation; certain Data Source and Compute Resource modification APIs are now explicitly blocked for safety. - Reduced supported data source types to 50; added ApsaraDB for OceanBase, PolarDB O, and Graph Database references, updated type names and files accordingly. - Removed support files/references for deprecated data source types (oceanbase, polardb-o, graph-database, oss-hdfs). - Updated documentation in SKILL.md to reflect these changes, including detailed write API restriction rules and updated lists.
v0.0.2
**Summary:** This version restricts the skill's capabilities to create and query operations (removes delete/unbind functionality) and updates guidance accordingly. - Limits supported operations to create and query for data sources, compute resources, and resource groups; delete/unbind instructions and flows removed. - Removes or updates references and guidance about resource deletion and unbinding throughout documentation. - Updates "Next Step Guidance" table to reflect only supported actions. - No changes to the supported list of data source types or architecture diagrams. - General description and triggers updated for clarity and scope alignment.
v0.0.1
Initial release: Infrastructure management for Alibaba Cloud DataWorks. - Supports CRUD operations for 51+ Data Source types, Compute Resources, and Serverless Resource Groups. - Includes connectivity testing and resource group binding/unbinding features. - Uses aliyun CLI to call DataWorks Public OpenAPI (2024-05-18). - Enforces strict user-parameter confirmation and security rules (e.g., never expose AK/SK). - Provides proactive guidance after each operation to recommend logical next steps. - Not triggered for data development tasks, scheduling config, or other non-infrastructure-related actions.
Metadata
Slug alibabacloud-dataworks-infra-manage
Version 0.0.3
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 3
Frequently Asked Questions

What is Alibabacloud Dataworks Infra Manage?

DataWorks Infrastructure Management: Create and query operations for Data Sources (50 types), Compute Resources, and Serverless Resource Groups, plus connect... It is an AI Agent Skill for Claude Code / OpenClaw, with 170 downloads so far.

How do I install Alibabacloud Dataworks Infra Manage?

Run "/install alibabacloud-dataworks-infra-manage" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Alibabacloud Dataworks Infra Manage free?

Yes, Alibabacloud Dataworks Infra Manage is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Alibabacloud Dataworks Infra Manage support?

Alibabacloud Dataworks Infra Manage is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Alibabacloud Dataworks Infra Manage?

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

💬 Comments