/update-compute-source
编辑/更新已存在的计算源配置。 触发场景:修改计算源配置 / 更新计算源密码 / 调整计算源参数 / update-compute-source。 UpdateCommand 需要 Id,Type + ConfigList 的 Key 规则与 create-maxcompute-compute-source 完全相同。 触发词:修改计算源、更新计算源、编辑计算源、update-compute-source。
$ npx -y skills add aliyun/alibabacloud-aiops-skills --skill update-compute-source --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/update-compute-source
Context preview
The summary Claude sees to decide when to auto-load this skill.
编辑/更新已存在的计算源配置。 触发场景:修改计算源配置 / 更新计算源密码 / 调整计算源参数 / update-compute-source。 UpdateCommand 需要 Id,Type + ConfigList 的 Key 规则与 create-maxcompute-compute-source 完全相同。 触发词:修改计算源、更新计算源、编辑计算源、update-compute-source。
SKILL.md
update-compute-source.SKILL.mdname: update-compute-source
description: |-
编辑/更新已存在的计算源配置。 触发场景:修改计算源配置 / 更新计算源密码 / 调整计算源参数 / update-compute-source。 UpdateCommand 需要 Id,Type + ConfigList 的 Key 规则与 create-maxcompute-compute-source 完全相同。 触发词:修改计算源、更新计算源、编辑计算源、update-compute-source。
编辑计算源 skill
适用场景
- 修改计算源 Name / Description
- 更新 ConfigList(如轮换 AccessKey、调整 endpoint)
- 迁移 MaxCompute project(需谨慎,此操作可能影响已运行任务)
命令 & 官方文档
- CLI:`aliyun dataphin-public update-compute-source --help`
- OpenAPI:[UpdateComputeSource](https://next.api.aliyun.com/document/dataphin-public/2023-06-30/UpdateComputeSource)
顶层参数骨架
--tenant-id <int> 必填 | 租户 ID
--update-command <JSON> 必填 | 更新命令体
UpdateCommand JSON 结构
{
"Id": <int>, // 必填,计算源 Id(先调 list-compute-sources 获取)
"Name": "<string>", // 必填,即便不改也要传原值
"Description": "<string>", // 必填
"Type": "<枚举值>", // 必填,值与 create-maxcompute-compute-source 完全一致,原则上不建议改 Type
"ConfigList": [ // 必填,传完整清单(非增量)
{ "Key": "<k>", "Value": "<v>" }
]
}Type 与 Key 规则
**与 `create-maxcompute-compute-source`(经套件入口路由加载) 完全同构。** 详细枚举与 Key 清单见该 skill。
✓ MaxCompute(verified)
# 轮换 MaxCompute AccessKey 示例
aliyun dataphin-public update-compute-source \
--tenant-id <tenant-id> \
--update-command '{
"Id": <compute-source-id>,
"Name": "<compute-source-name>",
"Description": "MaxCompute prod compute source (rotated)",
"Type": "MaxCompute",
"ConfigList": [
{ "Key": "maxcompute.endpoint", "Value": "<maxcompute-endpoint>" },
{ "Key": "maxcompute.project", "Value": "<project-name>" },
{ "Key": "maxcompute.accessId", "Value": "<new_ak_id>" },
{ "Key": "maxcompute.accessKey", "Value": "<new_ak_secret>" }
]
}'⚠ 其他 Type(unverified)
同 `create-maxcompute-compute-source`(经套件入口路由加载) 中的“其他 Type”表;通过 `get-compute-source --compute-source-id <N>` 读取现有 ConfigList 再做最小修改。
常见坑
1. **ConfigList 必须全量传**:update 不是 patch,漏传的 Key 会被清空 2. **改 MaxCompute project 不等于迁移**:只是改了计算源指向的 project;已发布到旧 project 的任务不会自动迁移 3. **Type 原则上不可改**:由 A 类型改成 B 类型通常会报错;如需更换请删后重建 4. **Id 必须是 Long**:注意 shell 里大整数不要被截断(JSON 里写成数字即可,不用加引号)
相关命令
- `create-maxcompute-compute-source`(经套件入口路由加载)
- [check-compute-source-connectivity.md](./check-compute-source-connectivity.md) — 改完再校验
- `aliyun dataphin-public get-compute-source --compute-source-id <N>` — 读取当前 ConfigList 作为 update 模板
Read more
name: update-compute-source description: |- 编辑/更新已存在的计算源配置。 触发场景:修改计算源配置 / 更新计算源密码 / 调整计算源参数 / update-compute-source。 UpdateCommand 需要 Id,Type + ConfigList 的 Key 规则与 create-maxcompute-compute-source 完全相同。 触发词:修改计算源、更新计算源、编辑计算源、update-compute-source。
编辑计算源 skill
适用场景
- 修改计算源 Name / Description
- 更新 ConfigList(如轮换 AccessKey、调整 endpoint)
- 迁移 MaxCompute project(需谨慎,此操作可能影响已运行任务)
命令 & 官方文档
- CLI:`aliyun dataphin-public update-compute-source --help`
- OpenAPI:[UpdateComputeSource](https://next.api.aliyun.com/document/dataphin-public/2023-06-30/UpdateComputeSource)
顶层参数骨架
--tenant-id <int> 必填 | 租户 ID --update-command <JSON> 必填 | 更新命令体
UpdateCommand JSON 结构
{
"Id": <int>, // 必填,计算源 Id(先调 list-compute-sources 获取)
"Name": "<string>", // 必填,即便不改也要传原值
"Description": "<string>", // 必填
"Type": "<枚举值>", // 必填,值与 create-maxcompute-compute-source 完全一致,原则上不建议改 Type
"ConfigList": [ // 必填,传完整清单(非增量)
{ "Key": "<k>", "Value": "<v>" }
]
}Type 与 Key 规则
**与 `create-maxcompute-compute-source`(经套件入口路由加载) 完全同构。** 详细枚举与 Key 清单见该 skill。
✓ MaxCompute(verified)
# 轮换 MaxCompute AccessKey 示例
aliyun dataphin-public update-compute-source \
--tenant-id <tenant-id> \
--update-command '{
"Id": <compute-source-id>,
"Name": "<compute-source-name>",
"Description": "MaxCompute prod compute source (rotated)",
"Type": "MaxCompute",
"ConfigList": [
{ "Key": "maxcompute.endpoint", "Value": "<maxcompute-endpoint>" },
{ "Key": "maxcompute.project", "Value": "<project-name>" },
{ "Key": "maxcompute.accessId", "Value": "<new_ak_id>" },
{ "Key": "maxcompute.accessKey", "Value": "<new_ak_secret>" }
]
}'⚠ 其他 Type(unverified)
同 `create-maxcompute-compute-source`(经套件入口路由加载) 中的“其他 Type”表;通过 `get-compute-source --compute-source-id <N>` 读取现有 ConfigList 再做最小修改。
常见坑
1. **ConfigList 必须全量传**:update 不是 patch,漏传的 Key 会被清空 2. **改 MaxCompute project 不等于迁移**:只是改了计算源指向的 project;已发布到旧 project 的任务不会自动迁移 3. **Type 原则上不可改**:由 A 类型改成 B 类型通常会报错;如需更换请删后重建 4. **Id 必须是 Long**:注意 shell 里大整数不要被截断(JSON 里写成数字即可,不用加引号)
相关命令
- `create-maxcompute-compute-source`(经套件入口路由加载)
- [check-compute-source-connectivity.md](./check-compute-source-connectivity.md) — 改完再校验
- `aliyun dataphin-public get-compute-source --compute-source-id <N>` — 读取当前 ConfigList 作为 update 模板
Official Alibaba Cloud Agent Skills collection, providing AI agents with rich Alibaba Cloud product capabilities and general-purpose tooling.
Other skills on alibabacloud-aiops-skills.
- /alibabacloud-agentbay-aio-skills
Execute code in a secure cloud sandbox via AgentBay SDK. Use this skill whenever users request to run, execute, or evaluate code (Python, JavaScript, R, Java), including plotting charts, running scripts, or viewing code output. Covers requests like "run this code", "execute
Open skill - /alibabacloud-agentloop-dataset
Operate Alibaba Cloud AgentLoop Dataset resources with aliyun CLI and the AgentLoop API version 2026-05-20. Use when requests concern AgentLoop datasets, data rows, Dataset schemas, embedding fields, semantic search, ExecuteQuery, AgentSpace data, 数据集, 数据写入, 数据查询, 语义检索, or ask
Open skill - /alibabacloud-agentloop-evaluation
Orchestrate AgentLoop evaluation workflows through the Aliyun CLI plugin with safe previews, saved evaluator and evaluator-skill management, one-shot sample tests, trace or dataset batch runs, polling, and result inspection. Analyze evaluation quality and low-score cases from
Open skill - /alibabacloud-agentloop-experience
Proactively use AgentLoop Recall to retrieve prior Alibaba Cloud AgentLoop experience through the bundled SearchContext CLI whenever the user asks or implies that prior work may help. Trigger for requests to check, search, recall, retrieve, look up, review, consult, reference,
Open skill - /alibabacloud-agentloop-management
AgentLoop APM接入 / AI可观测接入 / 应用监控接入 / 自研探针 / 探针安装. Use for Python aliyun-bootstrap (aliyun-instrument), Java AliyunJavaAgent, Golang instgo, Node.js cms_node_sdk, PHP/.NET OpenTelemetry, ack-onepilot, LicenseKey, AgentLoop workspace agentloop-*. Also for LangChain, Dify,
Open skill - /alibabacloud-avatar-video
Use Alibaba Cloud DashScope API and LingMou to generate AI video and speech. Seven capabilities — (1) LivePortrait talking-head (image + audio → video, two-step), (2) EMO talking-head, (3) AA/AnimateAnyone full-body animation (three-step), (4) T2I text-to-image (Wan 2.x, default
Open skill

