Alibaba Cloud DataWorks skill for AI agents. Manage data development, workflow operations, data quality, metadata lineage, and workspace administration through a single skill.
dataworks-open-api/
├── SKILL.md # Main skill instructions (read by AI agent)
├── README.md # This file — quick start & overview
├── agents/
│ └── openai.yaml # Agent interface definition
├── references/
│ ├── cookbook.md # Verified API patterns, pitfalls, end-to-end lifecycle, recipes & FAQ
│ ├── sources.md # API docs, SDK, and MCP Server links
│ └── mcp_server.md # MCP Server setup and configuration
└── scripts/
├── fetch_api_overview.py # Fetch API list from official help docs
└── list_openapi_meta_apis.py # Fetch API specs from OpenAPI metadata
# Option A: Credentials URI (recommended for local development)
export ALIBABA_CLOUD_CREDENTIALS_URI="http://localhost:7002/api/v1/credentials/0"
# Option B: Static AK/SK
export ALIBABA_CLOUD_ACCESS_KEY_ID="your-ak"
export ALIBABA_CLOUD_ACCESS_KEY_SECRET="your-sk"
export ALIBABA_CLOUD_REGION_ID="cn-shanghai"
# Discover available APIs
python scripts/fetch_api_overview.py
python scripts/list_openapi_meta_apis.py| Language | Package |
|---|---|
| Node.js | @alicloud/dataworks-public20240518 |
| Python | alibabacloud_dataworks_public20240518 |
| Java | com.aliyun:alibabacloud-dataworks_public20240518 |
When execution fails, escalate in this order:
- Cookbook (
references/cookbook.md) — verified patterns, pitfalls & error recovery - Official help docs
- OpenAPI metadata (raw JSON spec)
- SDK API docs
- GitHub SDK source code
- MCP Server
- Browser (DataWorks Homepage)
See SKILL.md for full details on each level.