원클릭으로
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.