بنقرة واحدة
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.