一键导入
read-data-dict
Read and understand a data-dict.yaml file so you can use it when working with the dataset it describes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Read and understand a data-dict.yaml file so you can use it when working with the dataset it describes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | read-data-dict |
| description | Read and understand a data-dict.yaml file so you can use it when working with the dataset it describes. |
Read and understand a data-dict.yaml file so you can use it when working with the dataset it describes.
Find the data dictionary. Look for a file called data-dict.yaml in
the project root or the same directory as the dataset. If there isn't one, tell the user and stop.
Read the file. Parse the YAML and familiarise yourself with its three top-level sections:
tables -- the tables, their columns, types, constraints, and
descriptions.relationships -- how the tables join together, including cardinality
and any column-name conflicts.glossary -- domain-specific terms and their definitions.Internalise the glossary first. The glossary defines the vocabulary used throughout the rest of the file. Read it before interpreting column descriptions so that domain terms are understood in context.
Use the dictionary as context. When answering questions about the data, writing queries, or generating analysis code:
id column).relationships to determine correct joins and carefully watch for
conflicts.source to determine how to access the data.