Install
openclaw skills install aliyun-devops-manageUse when managing Alibaba Cloud DevOps (Yunxiao 2020) via OpenAPI/SDK, including project/repository/pipeline resource discovery, read-only inspection, and safe change planning before mutating operations.
openclaw skills install aliyun-devops-manageCategory: service
Use Alibaba Cloud DevOps OpenAPI to support:
python3 -m venv .venv
. .venv/bin/activate
python -m pip install -U alibabacloud_devops20210625 alibabacloud_tea_openapi
ALICLOUD_ACCESS_KEY_IDALICLOUD_ACCESS_KEY_SECRETALICLOUD_REGION_IDALICLOUD_ACCESS_KEY_ID / ALICLOUD_ACCESS_KEY_SECRET / ALICLOUD_REGION_ID~/.alibabacloud/credentialsIf region/environment is unclear, confirm with user before mutating operations.
List* / Get* / Query*).output/aliyun-devops-manage/.devops2021-06-25https://api.aliyun.com/meta/v1/products/devops/versions/2021-06-25/api-docs.jsonpython skills/platform/devops/aliyun-devops-manage/scripts/list_openapi_meta_apis.py
Optional arguments:
python skills/platform/devops/aliyun-devops-manage/scripts/list_openapi_meta_apis.py \
--product-code devops \
--version 2021-06-25 \
--output-dir output/aliyun-devops-manage
List projects (read-only):
python skills/platform/devops/aliyun-devops-manage/scripts/list_projects.py \
--organization-id <organization-id> \
--region cn-hangzhou \
--max-results 20 \
--output output/aliyun-devops-manage/projects.txt
List repositories (read-only):
python skills/platform/devops/aliyun-devops-manage/scripts/list_repositories.py \
--organization-id <organization-id> \
--region cn-hangzhou \
--page 1 \
--per-page 20 \
--output output/aliyun-devops-manage/repositories.txt
List pipelines (read-only):
python skills/platform/devops/aliyun-devops-manage/scripts/list_pipelines.py \
--organization-id <organization-id> \
--region cn-hangzhou \
--max-results 20 \
--output output/aliyun-devops-manage/pipelines.txt
CreateProject, GetProject, ListProjectMembers, UpdateProjectCreateRepository, GetRepository, ListRepositories, CreateMergeRequestCreatePipeline, GetPipeline, ListPipelines, RunPipelineCreateWorkitem, GetWorkitemDetail, ListTestCase, CreateTestCaseSee references/api_quick_map.md for grouped APIs.
scripts/list_openapi_meta_apis.py: fetch metadata and generate API inventory files.scripts/list_projects.py: list projects in one organization.scripts/list_repositories.py: list repositories in one organization.scripts/list_pipelines.py: list pipelines in one organization.mkdir -p output/aliyun-devops-manage
for f in skills/platform/devops/aliyun-devops-manage/scripts/*.py; do
python3 -m py_compile "$f"
done
echo "py_compile_ok" > output/aliyun-devops-manage/validate.txt
Pass criteria: command exits 0 and output/aliyun-devops-manage/validate.txt is generated.
output/aliyun-devops-manage/.references/sources.mdreferences/api_quick_map.mdreferences/templates.md