/manage-topic-domain
管理 Dataphin 主题域(Data Domain)的完整生命周期:查询、创建、更新、删除,用于组织数据仓库的业务分层架构。 主题域挂在「数据板块(业务单元 BizUnit)」之下,创建/更新/删除必须先确定所属 --biz-unit-id。 触发场景:管理主题域 / 新建主题域 / 修改主题域 / 删除主题域 / 查询主题域列表 / 组织数据仓库分层 / 数据板块下建主题域 / 配置上级主题域(层级)。 流程:list-data-domains/get-data-domain-info 查询 → create-data-domain 创建 →
$ npx -y skills add aliyun/alibabacloud-aiops-skills --skill manage-topic-domain --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-topic-domain
Context preview
The summary Claude sees to decide when to auto-load this skill.
管理 Dataphin 主题域(Data Domain)的完整生命周期:查询、创建、更新、删除,用于组织数据仓库的业务分层架构。 主题域挂在「数据板块(业务单元 BizUnit)」之下,创建/更新/删除必须先确定所属 --biz-unit-id。 触发场景:管理主题域 / 新建主题域 / 修改主题域 / 删除主题域 / 查询主题域列表 / 组织数据仓库分层 / 数据板块下建主题域 / 配置上级主题域(层级)。 流程:list-data-domains/get-data-domain-info 查询 → create-data-domain 创建 →
SKILL.md
manage-topic-domain.SKILL.mdname: manage-topic-domain
description: |-
管理 Dataphin 主题域(Data Domain)的完整生命周期:查询、创建、更新、删除,用于组织数据仓库的业务分层架构。
主题域挂在「数据板块(业务单元 BizUnit)」之下,创建/更新/删除必须先确定所属 --biz-unit-id。
触发场景:管理主题域 / 新建主题域 / 修改主题域 / 删除主题域 / 查询主题域列表 / 组织数据仓库分层 / 数据板块下建主题域 / 配置上级主题域(层级)。
流程:list-data-domains/get-data-domain-info 查询 → create-data-domain 创建 → update-data-domain 修订 → delete-data-domain 删除。
关键点:主题域无发布流程,创建即生效;biz-unit-id 为硬前置依赖;大整数 ID 用字符串传参;写操作需 HITL 确认。
触发词:主题域、数据域、data domain、topic domain、data-domain、数据板块、业务单元、biz-unit、数据仓库分层、主题域列表、上级主题域。
主题域管理 Skill
1. Scenario Description
在 Dataphin 数据规划 / 数据资产建设中对「主题域(Data Domain)」做全生命周期管理。主题域是数据仓库逻辑分层的组织单元,用于把维度表、事实表、汇总表按业务主题归类。
主题域**必须挂在「数据板块(业务单元 BizUnit)」之下**——`--biz-unit-id` 是创建、更新、删除的硬前置依赖。主题域之间还可通过 `--parent-id` 组织成上下级层级树。
本 Skill 覆盖主题域的查询、创建、修订、删除等原子动作。与数据标准不同,**主题域没有 DEV/PROD 发布流程,创建即生效**,生命周期为:查询 → 创建 → 更新 → 删除。
**Architecture**:`Dataphin Tenant → BizUnit(数据板块)→ Data Domain(主题域,可多级层级)→ 逻辑表(维/事实/汇总)`
涉及 Dataphin OpenAPI
- `ListDataDomains` — 查询主题域列表
- `GetDataDomainInfo` — 获取主题域详情
- `CreateDataDomain` — 创建主题域
- `UpdateDataDomain` — 更新主题域
- `DeleteDataDomain` — 删除主题域
2. Installation
aliyun plugin install --names aliyun-cli-dataphin-public
各操作系统一键安装脚本与版本要求详见 [references/cli-installation-guide.md](references/cli-installation-guide.md)。
3. Environment Variables
> 凭证与环境变量由父 skill `alibabacloud-dataphin-skills` 统一声明并预检(父 §3 + §4 Authentication + §8 Step 0,先于路由到本 skill 执行);本 skill 不重复声明。
4. Authentication
> **Pre-check: Alibaba Cloud Credentials Required** > > **Security Rules:** > - **NEVER** 读取、回显或打印凭证环境变量(禁止对 AccessKey ID / Secret 做任何输出或日志) > - **NEVER** ask the user to input AK/SK directly in the conversation or command line > - **NEVER** use `aliyun configure set` with literal credential values > - **ONLY** use `aliyun configure list` to check credential status > > ```bash > aliyun configure list > ``` > Check the output for a valid profile (AK, STS, or OAuth identity). > > **If no valid profile exists, STOP here.** > 1. Obtain credentials from [Alibaba Cloud Console](https://ram.console.aliyun.com/manage/ak) > 2. Configure credentials **outside of this session** (via `aliyun configure` in terminal or environment variables in shell profile) > 3. Return and re-run after `aliyun configure list` shows a valid profile
**Pre-check: Aliyun CLI >= 3.4.8 required** > Run `aliyun version` to verify >= 3.4.8. If not installed or version too low, install/update from https://aliyuncli.alicdn.com (see [references/cli-installation-guide.md](references/cli-installation-guide.md) for the OS-specific script).
**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
最小权限策略详见 [套件级 RAM 策略](../../ram-policies.md)。
> **[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
6. Parameter Confirmation
> **IMPORTANT: Parameter Confirmation** — Before executing any command or API call, > ALL user-customizable parameters (e.g., RegionId, instance names, CIDR blocks, > passwords, domain names, resource specifications, etc.) MUST be confirmed with the > user. Do NOT assume or use default values without explicit user approval.
执行任何写操作(create / update / delete)前必须向用户确认以下参数,禁止静默提交:
| 参数 | 必填 | 描述 | 默认值 | |---|---|---|---| | `--tenant-id` | 是 | 租户 ID(大整数,**字符串传**) | — | | `--biz-unit-id` | 是(create/update/delete) | 所属数据板块(业务单元)ID | — | | `--data-domain-id` | 是(update/delete/get) | 目标主题域 ID | — | | `--data-domain-name` | 是(create/update) | 主题域**编码**(英文名,唯一标识) | — | | `--display-name` | 是(create/update) | 主题域**展示名**(中文名) | — | | `--abbreviation` | 是(create/update) | 主题域缩写 | — | | `--description` | 否 | 主题域描述 | — | | `--parent-id` | 否 | 上级主题域 ID(构建层级树时用) | 无(顶级) |
7. Observability (MUST follow for every aliyun command)
**session-id 由父 skill `alibabacloud-dataphin-skills` 在套件入口加载时生成(32-char 小写 hex),本子 skill 加载时直接继承同一 session-id,不再重新生成。**
**Rule: Every `aliyun` CLI command that calls a cloud API MUST include the `--user-agent` flag.** Local utility commands (e.g. `configure`, `plugin`, `version`) do not support this flag and should be excluded.
--user-agent AlibabaCloud-Agent-Skills/manage-topic-domain/{session-id}Example (assuming session-id is `a1b2c3d4e5f6a7b8c9d0e1f2a3b4c5d6`):
aliyun dataphin-public list-data-domains --tenant-id "1234567890123456789" \
--user-agent AlibabaCloud-Agent-Skills/manage-topic-domain/a1b2c3d4e5f6a7b8c9d0e1f2a3b4c5d6
Do not skip, alter the format, or omit `--user-agent` on any `aliyun` API command invocation.
8. Core Workflow
TENANT_ID="<大整数租户 ID,字符串>"
BIZ_UNIT_ID="<所属数据板块 ID>"
SESSION_ID="<inherited from alibabacloud-dataphin-skills>"
UA="AlibabaCloud-Agent-Skills/manage-topic-domain/$SESSION_ID"
# 0) 前置:确认数据板块(BizUnit)已存在。主题域必须挂在某个 biz-unit 下。
# 若不知道 biz-unit-id,先用「数据板块列表」相关能力获取,或询问用户。
# 1) 查询主题域列表(定位是否已存在,避免重复创建)
aliyun dataphin-public list-data-domains --tenant-id "$TENANT_ID" \
--biz-unit-id-list "$BIZ_UNIT_ID" \
--keyword "<主题域名/编码关键字>" \
--user-agent "$UA" --format json
# 2) 查看某个主题域详情
aliyun dataphin-public get-data-domain-info --tenant-id "$TENANT_ID" \
--data-domain-id "<主题域 ID>" \
--user-agent "$UA" --format json
# 3) 创建主题域(创建即生效,无发布流程)
aliyun dataphin-public create-data-domain --tenant-id "$TENANT_ID" \
--biz-unit-id "$BIZ_UNIT_ID" \
--data-domain-name "<主题域编码,如 trade>" \
--display-name "<主题域展示名,如 交易域>" \
--abbreviation "<缩写,如 trd>" \
--de
Read more
name: manage-topic-domain description: |- 管理 Dataphin 主题域(Data Domain)的完整生命周期:查询、创建、更新、删除,用于组织数据仓库的业务分层架构。 主题域挂在「数据板块(业务单元 BizUnit)」之下,创建/更新/删除必须先确定所属 --biz-unit-id。 触发场景:管理主题域 / 新建主题域 / 修改主题域 / 删除主题域 / 查询主题域列表 / 组织数据仓库分层 / 数据板块下建主题域 / 配置上级主题域(层级)。 流程:list-data-domains/get-data-domain-info 查询 → create-data-domain 创建 → update-data-domain 修订 → delete-data-domain 删除。 关键点:主题域无发布流程,创建即生效;biz-unit-id 为硬前置依赖;大整数 ID 用字符串传参;写操作需 HITL 确认。 触发词:主题域、数据域、data domain、topic domain、data-domain、数据板块、业务单元、biz-unit、数据仓库分层、主题域列表、上级主题域。
主题域管理 Skill
1. Scenario Description
在 Dataphin 数据规划 / 数据资产建设中对「主题域(Data Domain)」做全生命周期管理。主题域是数据仓库逻辑分层的组织单元,用于把维度表、事实表、汇总表按业务主题归类。
主题域**必须挂在「数据板块(业务单元 BizUnit)」之下**——`--biz-unit-id` 是创建、更新、删除的硬前置依赖。主题域之间还可通过 `--parent-id` 组织成上下级层级树。
本 Skill 覆盖主题域的查询、创建、修订、删除等原子动作。与数据标准不同,**主题域没有 DEV/PROD 发布流程,创建即生效**,生命周期为:查询 → 创建 → 更新 → 删除。
**Architecture**:`Dataphin Tenant → BizUnit(数据板块)→ Data Domain(主题域,可多级层级)→ 逻辑表(维/事实/汇总)`
涉及 Dataphin OpenAPI
- `ListDataDomains` — 查询主题域列表
- `GetDataDomainInfo` — 获取主题域详情
- `CreateDataDomain` — 创建主题域
- `UpdateDataDomain` — 更新主题域
- `DeleteDataDomain` — 删除主题域
2. Installation
aliyun plugin install --names aliyun-cli-dataphin-public
各操作系统一键安装脚本与版本要求详见 [references/cli-installation-guide.md](references/cli-installation-guide.md)。
3. Environment Variables
> 凭证与环境变量由父 skill `alibabacloud-dataphin-skills` 统一声明并预检(父 §3 + §4 Authentication + §8 Step 0,先于路由到本 skill 执行);本 skill 不重复声明。
4. Authentication
> **Pre-check: Alibaba Cloud Credentials Required** > > **Security Rules:** > - **NEVER** 读取、回显或打印凭证环境变量(禁止对 AccessKey ID / Secret 做任何输出或日志) > - **NEVER** ask the user to input AK/SK directly in the conversation or command line > - **NEVER** use `aliyun configure set` with literal credential values > - **ONLY** use `aliyun configure list` to check credential status > > ```bash > aliyun configure list > ``` > Check the output for a valid profile (AK, STS, or OAuth identity). > > **If no valid profile exists, STOP here.** > 1. Obtain credentials from [Alibaba Cloud Console](https://ram.console.aliyun.com/manage/ak) > 2. Configure credentials **outside of this session** (via `aliyun configure` in terminal or environment variables in shell profile) > 3. Return and re-run after `aliyun configure list` shows a valid profile
**Pre-check: Aliyun CLI >= 3.4.8 required** > Run `aliyun version` to verify >= 3.4.8. If not installed or version too low, install/update from https://aliyuncli.alicdn.com (see [references/cli-installation-guide.md](references/cli-installation-guide.md) for the OS-specific script).
**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
最小权限策略详见 [套件级 RAM 策略](../../ram-policies.md)。
> **[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
6. Parameter Confirmation
> **IMPORTANT: Parameter Confirmation** — Before executing any command or API call, > ALL user-customizable parameters (e.g., RegionId, instance names, CIDR blocks, > passwords, domain names, resource specifications, etc.) MUST be confirmed with the > user. Do NOT assume or use default values without explicit user approval.
执行任何写操作(create / update / delete)前必须向用户确认以下参数,禁止静默提交:
| 参数 | 必填 | 描述 | 默认值 | |---|---|---|---| | `--tenant-id` | 是 | 租户 ID(大整数,**字符串传**) | — | | `--biz-unit-id` | 是(create/update/delete) | 所属数据板块(业务单元)ID | — | | `--data-domain-id` | 是(update/delete/get) | 目标主题域 ID | — | | `--data-domain-name` | 是(create/update) | 主题域**编码**(英文名,唯一标识) | — | | `--display-name` | 是(create/update) | 主题域**展示名**(中文名) | — | | `--abbreviation` | 是(create/update) | 主题域缩写 | — | | `--description` | 否 | 主题域描述 | — | | `--parent-id` | 否 | 上级主题域 ID(构建层级树时用) | 无(顶级) |
7. Observability (MUST follow for every aliyun command)
**session-id 由父 skill `alibabacloud-dataphin-skills` 在套件入口加载时生成(32-char 小写 hex),本子 skill 加载时直接继承同一 session-id,不再重新生成。**
**Rule: Every `aliyun` CLI command that calls a cloud API MUST include the `--user-agent` flag.** Local utility commands (e.g. `configure`, `plugin`, `version`) do not support this flag and should be excluded.
--user-agent AlibabaCloud-Agent-Skills/manage-topic-domain/{session-id}Example (assuming session-id is `a1b2c3d4e5f6a7b8c9d0e1f2a3b4c5d6`):
aliyun dataphin-public list-data-domains --tenant-id "1234567890123456789" \ --user-agent AlibabaCloud-Agent-Skills/manage-topic-domain/a1b2c3d4e5f6a7b8c9d0e1f2a3b4c5d6
Do not skip, alter the format, or omit `--user-agent` on any `aliyun` API command invocation.
8. Core Workflow
TENANT_ID="<大整数租户 ID,字符串>" BIZ_UNIT_ID="<所属数据板块 ID>" SESSION_ID="<inherited from alibabacloud-dataphin-skills>" UA="AlibabaCloud-Agent-Skills/manage-topic-domain/$SESSION_ID" # 0) 前置:确认数据板块(BizUnit)已存在。主题域必须挂在某个 biz-unit 下。 # 若不知道 biz-unit-id,先用「数据板块列表」相关能力获取,或询问用户。 # 1) 查询主题域列表(定位是否已存在,避免重复创建) aliyun dataphin-public list-data-domains --tenant-id "$TENANT_ID" \ --biz-unit-id-list "$BIZ_UNIT_ID" \ --keyword "<主题域名/编码关键字>" \ --user-agent "$UA" --format json # 2) 查看某个主题域详情 aliyun dataphin-public get-data-domain-info --tenant-id "$TENANT_ID" \ --data-domain-id "<主题域 ID>" \ --user-agent "$UA" --format json # 3) 创建主题域(创建即生效,无发布流程) aliyun dataphin-public create-data-domain --tenant-id "$TENANT_ID" \ --biz-unit-id "$BIZ_UNIT_ID" \ --data-domain-name "<主题域编码,如 trade>" \ --display-name "<主题域展示名,如 交易域>" \ --abbreviation "<缩写,如 trd>" \ --de
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

