/manage-data-standard
管理 Dataphin 数据标准的完整生命周期:创建、更新、发布、下线、删除、查询,支持元数据监控(METADATA)与数据质量监控(QUALITY)。 触发场景:管理数据标准 / 新建标准 / 修改标准 / 发布标准 / 下线标准 / 删除标准 / 查询标准列表 / 质量规则 / 元数据监控。 流程:list-standards/get-standard 查询 → create-standard 创建 → publish-standard 发布 → update-standard 修订 → offline/delete-standard 下线删除。
$ npx -y skills add aliyun/alibabacloud-aiops-skills --skill manage-data-standard --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
/manage-data-standard
Context preview
The summary Claude sees to decide when to auto-load this skill.
管理 Dataphin 数据标准的完整生命周期:创建、更新、发布、下线、删除、查询,支持元数据监控(METADATA)与数据质量监控(QUALITY)。 触发场景:管理数据标准 / 新建标准 / 修改标准 / 发布标准 / 下线标准 / 删除标准 / 查询标准列表 / 质量规则 / 元数据监控。 流程:list-standards/get-standard 查询 → create-standard 创建 → publish-standard 发布 → update-standard 修订 → offline/delete-standard 下线删除。
SKILL.md
manage-data-standard.SKILL.mdname: manage-data-standard
description: |
管理 Dataphin 数据标准的完整生命周期:创建、更新、发布、下线、删除、查询,支持元数据监控(METADATA)与数据质量监控(QUALITY)。
触发场景:管理数据标准 / 新建标准 / 修改标准 / 发布标准 / 下线标准 / 删除标准 / 查询标准列表 / 质量规则 / 元数据监控。
流程:list-standards/get-standard 查询 → create-standard 创建 → publish-standard 发布 → update-standard 修订 → offline/delete-standard 下线删除。
关键点:19 位大整数 ID 用字符串传参;monitor-config 的 Type(METADATA/QUALITY)决定字段组合;写操作需 HITL 确认。
触发词:数据标准、管理标准、发布标准、下线标准、删除标准、标准列表、质量规则、元数据监控、data standard、METADATA、QUALITY。
数据标准管理 Skill
1. Scenario Description
在 Dataphin 资产治理中对「数据标准」做全生命周期管理。数据标准挂在「标准模板(StandardTemplate)+ 标准集(StandardSet)」之下,可为其配置元数据监控(METADATA,仅校验元数据本身)或数据质量监控(QUALITY,对实际表数据做指标+阈值校验)。
本 Skill 覆盖标准的创建、修订、提交审批与发布、下线、删除、查询等原子动作,是 `create-standard`(仅创建)与 `update-standard`(仅更新)之上的完整生命周期管理入口。
Architecture
用户请求 → 确认参数
→ list-standards / get-standard 查询定位(只读)
→ create-standard 创建(DRAFT 草稿态)
→ publish-standard 提交审批 + 自动发布(DEV → PROD)
→(可选)update-standard 修订已有标准
→(可选)offline-standard 下线 / delete-standard 删除
涉及 Dataphin OpenAPI
- `CreateStandard` — 创建数据标准
- `UpdateStandard` — 更新(修订)数据标准
- `PublishStandard` — 提交审批并(默认)自动发布
- `OfflineStandard` — 下线标准
- `DeleteStandard` — 删除标准
- `ListStandards` — 分页查询标准列表
- `GetStandard` — 获取标准详情
2. Installation
# 安装 aliyun CLI(>= 3.4.8)
# 各操作系统一键安装脚本见 ./references/cli-installation-guide.md
# 安装 dataphin-public 插件
aliyun plugin install --names aliyun-cli-dataphin-public
# 验证
aliyun dataphin-public --help
详见 [CLI 安装指南](./references/cli-installation-guide.md)。
3. Environment Variables
> 凭证与环境变量由父 skill `alibabacloud-dataphin-skills` 统一声明并预检(父 §3 + §4 Authentication + §8 Step 0,先于路由到本 skill 执行);本 skill 不重复声明。
4. Authentication
Pre-check: Credentials Required
> **Security Rules:** > - **NEVER** 读取、回显或打印凭证环境变量(禁止对 AccessKey ID / Secret 做任何输出或日志) > - **NEVER** 要求用户在本会话或命令行直接输入 AK/SK > - **NEVER** 使用 `aliyun configure set` 写入字面量凭证 > - **ONLY** 使用 `aliyun configure list` 检查凭证状态 > > ```bash > aliyun configure list > ``` > 检查输出中是否存在有效 profile(AK、STS 或 OAuth 身份)。 > > **如果没有有效 profile,请在此停止。** > 1. 从 [Alibaba Cloud Console](https://ram.console.aliyun.com/manage/ak) 获取凭证 > 2. 在会话外配置(终端执行 `aliyun configure`,或在 shell profile 中设置环境变量) > 3. 重新运行 `aliyun configure list` 确认有效后再继续
Pre-check: Aliyun CLI >= 3.4.8 required
> 执行 `aliyun version` 确认版本 >= 3.4.8;不达标见 [references/cli-installation-guide.md](./references/cli-installation-guide.md)。
Pre-check: Aliyun CLI plugin update required
> [MUST] run `aliyun configure set --auto-plugin-install true` to enable automatic plugin installation. > [MUST] run `aliyun plugin update` to ensure that any existing plugins are always up-to-date.
5. RAM Policy
> **[MUST] Permission Failure Handling:** When any command or API call fails due to permission errors at any point during execution, follow this process: > 1. Read `../../ram-policies.md` to get the full list of permissions required by this SKILL > 2. Use `ram-permission-diagnose` skill to guide the user through requesting the necessary permissions > 3. Pause and wait until the user confirms that the required permissions have been granted
本 skill 最小权限见 [../../ram-policies.md](../../ram-policies.md)。
6. IMPORTANT: Parameter Confirmation
> **IMPORTANT: Parameter Confirmation** — Before executing any command or API call, > ALL user-customizable parameters MUST be confirmed with the user. Do NOT assume or > use default values without explicit user approval.
执行任何写操作(create / update / publish / offline / delete)前必须向用户确认以下参数,禁止静默提交:
| 参数 | 必填 | 说明 | |------|------|------| | `--tenant-id` | 是 | 租户 ID(19 位大整数,字符串传参) | | `--standard-set-reference` | 是(create/update) | 所属标准集引用,JSON,如 `{"Id":22}` | | `--standard-template-reference` | 是(create/update) | 所属标准模板引用,JSON,如 `{"Id":11}` | | `--standard-id` | 是(update/publish/offline/delete/get) | 目标标准 ID | | `--standard-status` | 是(update) | 标准状态 | | `--standard-general-monitor-config` | 可选 | 标准监控配置,含 Type 分支,详见 [references/monitor-config-matrix.md](./references/monitor-config-matrix.md) | | `--comment` | 是(publish/offline) | 审核备注,最多 128 字符 | | `--standard-stage` | 可选 | 阶段 DEV / PROD |
7. Observability
本 Skill 属于 `alibabacloud-dataphin-skills` 套件,**继承父 Skill `alibabacloud-dataphin-skills` 的 session-id**,子 Skill 不再重新生成。
所有调用 Alibaba Cloud API 的 `aliyun` 命令必须携带:
--user-agent AlibabaCloud-Agent-Skills/manage-data-standard/{session-id}其中 `{session-id}` 替换为父 Skill 生成的 32 位小写十六进制字符串。本地工具命令(`configure` / `plugin` / `version`)不支持该 flag,不需携带。
8. Core Workflow
TENANT_ID="<19 位租户 ID,字符串>"
SESSION_ID="<继承自 alibabacloud-dataphin-skills>"
USER_AGENT="AlibabaCloud-Agent-Skills/manage-data-standard/$SESSION_ID"
# 1) 查询已有标准(定位是否已存在,避免重复创建)
aliyun dataphin-public list-standards --tenant-id "$TENANT_ID" \
--standard-stage DEV --keyword "<标准名/编码关键字>" \
--page-no 1 --page-size 20 \
--user-agent "$USER_AGENT" --format json
# 2) 查看某个标准详情
aliyun dataphin-public get-standard --tenant-id "$TENANT_ID" \
--standard-id "<标准 ID>" --standard-stage prod --need-relation true \
--user-agent "$USER_AGENT" --format json
# 3) 创建标准(新建后为 DRAFT 草稿态;监控配置见 §类型分支)
aliyun dataphin-public create-standard --tenant-id "$TENANT_ID" \
--standard-template-reference '{"Id":11}' \
--standard-set-reference '{"Id":22}' \
--description "<标准描述>" \
--standard-general-monitor-config '<见 references/monitor-config-matrix.md>' \
--user-agent "$USER_AGENT" --format json
# 4) 提交审批并发布(--auto-publish-after-approval 默认 true)
aliyun dataphin-public publish-standard --tenant-id "$TENANT_ID" \
--standard-id "<标准 ID>" --comment "<审核备注>" \
--standard-stage DEV \
--user-agent "$USER_AGENT" --format json
# 5) 更新(修订)已有标准
aliyun dataphin-public update-standard --tenant-id "$TENANT_ID" \
--standard-id "<标准 ID>" \
--standard-template-reference '{"Id":11}' \
--standard-set-reference '{"Id":22}' \
--standard-status "<标准状态>" \
--description "<新描述>" \
--user-agent "$USER_AGENT" --format jsonRead more
name: manage-data-standard description: | 管理 Dataphin 数据标准的完整生命周期:创建、更新、发布、下线、删除、查询,支持元数据监控(METADATA)与数据质量监控(QUALITY)。 触发场景:管理数据标准 / 新建标准 / 修改标准 / 发布标准 / 下线标准 / 删除标准 / 查询标准列表 / 质量规则 / 元数据监控。 流程:list-standards/get-standard 查询 → create-standard 创建 → publish-standard 发布 → update-standard 修订 → offline/delete-standard 下线删除。 关键点:19 位大整数 ID 用字符串传参;monitor-config 的 Type(METADATA/QUALITY)决定字段组合;写操作需 HITL 确认。 触发词:数据标准、管理标准、发布标准、下线标准、删除标准、标准列表、质量规则、元数据监控、data standard、METADATA、QUALITY。
数据标准管理 Skill
1. Scenario Description
在 Dataphin 资产治理中对「数据标准」做全生命周期管理。数据标准挂在「标准模板(StandardTemplate)+ 标准集(StandardSet)」之下,可为其配置元数据监控(METADATA,仅校验元数据本身)或数据质量监控(QUALITY,对实际表数据做指标+阈值校验)。
本 Skill 覆盖标准的创建、修订、提交审批与发布、下线、删除、查询等原子动作,是 `create-standard`(仅创建)与 `update-standard`(仅更新)之上的完整生命周期管理入口。
Architecture
用户请求 → 确认参数 → list-standards / get-standard 查询定位(只读) → create-standard 创建(DRAFT 草稿态) → publish-standard 提交审批 + 自动发布(DEV → PROD) →(可选)update-standard 修订已有标准 →(可选)offline-standard 下线 / delete-standard 删除
涉及 Dataphin OpenAPI
- `CreateStandard` — 创建数据标准
- `UpdateStandard` — 更新(修订)数据标准
- `PublishStandard` — 提交审批并(默认)自动发布
- `OfflineStandard` — 下线标准
- `DeleteStandard` — 删除标准
- `ListStandards` — 分页查询标准列表
- `GetStandard` — 获取标准详情
2. Installation
# 安装 aliyun CLI(>= 3.4.8) # 各操作系统一键安装脚本见 ./references/cli-installation-guide.md # 安装 dataphin-public 插件 aliyun plugin install --names aliyun-cli-dataphin-public # 验证 aliyun dataphin-public --help
详见 [CLI 安装指南](./references/cli-installation-guide.md)。
3. Environment Variables
> 凭证与环境变量由父 skill `alibabacloud-dataphin-skills` 统一声明并预检(父 §3 + §4 Authentication + §8 Step 0,先于路由到本 skill 执行);本 skill 不重复声明。
4. Authentication
Pre-check: Credentials Required
> **Security Rules:** > - **NEVER** 读取、回显或打印凭证环境变量(禁止对 AccessKey ID / Secret 做任何输出或日志) > - **NEVER** 要求用户在本会话或命令行直接输入 AK/SK > - **NEVER** 使用 `aliyun configure set` 写入字面量凭证 > - **ONLY** 使用 `aliyun configure list` 检查凭证状态 > > ```bash > aliyun configure list > ``` > 检查输出中是否存在有效 profile(AK、STS 或 OAuth 身份)。 > > **如果没有有效 profile,请在此停止。** > 1. 从 [Alibaba Cloud Console](https://ram.console.aliyun.com/manage/ak) 获取凭证 > 2. 在会话外配置(终端执行 `aliyun configure`,或在 shell profile 中设置环境变量) > 3. 重新运行 `aliyun configure list` 确认有效后再继续
Pre-check: Aliyun CLI >= 3.4.8 required
> 执行 `aliyun version` 确认版本 >= 3.4.8;不达标见 [references/cli-installation-guide.md](./references/cli-installation-guide.md)。
Pre-check: Aliyun CLI plugin update required
> [MUST] run `aliyun configure set --auto-plugin-install true` to enable automatic plugin installation. > [MUST] run `aliyun plugin update` to ensure that any existing plugins are always up-to-date.
5. RAM Policy
> **[MUST] Permission Failure Handling:** When any command or API call fails due to permission errors at any point during execution, follow this process: > 1. Read `../../ram-policies.md` to get the full list of permissions required by this SKILL > 2. Use `ram-permission-diagnose` skill to guide the user through requesting the necessary permissions > 3. Pause and wait until the user confirms that the required permissions have been granted
本 skill 最小权限见 [../../ram-policies.md](../../ram-policies.md)。
6. IMPORTANT: Parameter Confirmation
> **IMPORTANT: Parameter Confirmation** — Before executing any command or API call, > ALL user-customizable parameters MUST be confirmed with the user. Do NOT assume or > use default values without explicit user approval.
执行任何写操作(create / update / publish / offline / delete)前必须向用户确认以下参数,禁止静默提交:
| 参数 | 必填 | 说明 | |------|------|------| | `--tenant-id` | 是 | 租户 ID(19 位大整数,字符串传参) | | `--standard-set-reference` | 是(create/update) | 所属标准集引用,JSON,如 `{"Id":22}` | | `--standard-template-reference` | 是(create/update) | 所属标准模板引用,JSON,如 `{"Id":11}` | | `--standard-id` | 是(update/publish/offline/delete/get) | 目标标准 ID | | `--standard-status` | 是(update) | 标准状态 | | `--standard-general-monitor-config` | 可选 | 标准监控配置,含 Type 分支,详见 [references/monitor-config-matrix.md](./references/monitor-config-matrix.md) | | `--comment` | 是(publish/offline) | 审核备注,最多 128 字符 | | `--standard-stage` | 可选 | 阶段 DEV / PROD |
7. Observability
本 Skill 属于 `alibabacloud-dataphin-skills` 套件,**继承父 Skill `alibabacloud-dataphin-skills` 的 session-id**,子 Skill 不再重新生成。
所有调用 Alibaba Cloud API 的 `aliyun` 命令必须携带:
--user-agent AlibabaCloud-Agent-Skills/manage-data-standard/{session-id}其中 `{session-id}` 替换为父 Skill 生成的 32 位小写十六进制字符串。本地工具命令(`configure` / `plugin` / `version`)不支持该 flag,不需携带。
8. Core Workflow
TENANT_ID="<19 位租户 ID,字符串>"
SESSION_ID="<继承自 alibabacloud-dataphin-skills>"
USER_AGENT="AlibabaCloud-Agent-Skills/manage-data-standard/$SESSION_ID"
# 1) 查询已有标准(定位是否已存在,避免重复创建)
aliyun dataphin-public list-standards --tenant-id "$TENANT_ID" \
--standard-stage DEV --keyword "<标准名/编码关键字>" \
--page-no 1 --page-size 20 \
--user-agent "$USER_AGENT" --format json
# 2) 查看某个标准详情
aliyun dataphin-public get-standard --tenant-id "$TENANT_ID" \
--standard-id "<标准 ID>" --standard-stage prod --need-relation true \
--user-agent "$USER_AGENT" --format json
# 3) 创建标准(新建后为 DRAFT 草稿态;监控配置见 §类型分支)
aliyun dataphin-public create-standard --tenant-id "$TENANT_ID" \
--standard-template-reference '{"Id":11}' \
--standard-set-reference '{"Id":22}' \
--description "<标准描述>" \
--standard-general-monitor-config '<见 references/monitor-config-matrix.md>' \
--user-agent "$USER_AGENT" --format json
# 4) 提交审批并发布(--auto-publish-after-approval 默认 true)
aliyun dataphin-public publish-standard --tenant-id "$TENANT_ID" \
--standard-id "<标准 ID>" --comment "<审核备注>" \
--standard-stage DEV \
--user-agent "$USER_AGENT" --format json
# 5) 更新(修订)已有标准
aliyun dataphin-public update-standard --tenant-id "$TENANT_ID" \
--standard-id "<标准 ID>" \
--standard-template-reference '{"Id":11}' \
--standard-set-reference '{"Id":22}' \
--standard-status "<标准状态>" \
--description "<新描述>" \
--user-agent "$USER_AGENT" --format jsonOfficial 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

