CtrlK
BlogDocsLog inGet started
Tessl Logo

data-validation-first

Use this skill before any data analysis, transformation, or modeling. Always inspect and validate the data before drawing conclusions or writing transformations.

61

Quality

72%

Does it follow best practices?

Run evals on this skill

Adds up to 20 points to the overall score

View guide

SecuritybySnyk

Passed

No findings from the security scan

Fix and improve this skill with Tessl

tessl review fix ./memory_data/skills/data-validation-first/SKILL.md
SKILL.md
Quality
Evals
Security

Data Validation First

Before writing any analysis code, understand the data:

# Always run these first
df.shape          # rows x columns
df.dtypes         # column types
df.isnull().sum() # missing values per column
df.describe()     # statistics for numeric columns
df.head()         # sample rows

Key questions:

  • Are there nulls in columns you'll join or filter on?
  • Are numeric columns stored as strings? (parse_dates, astype)
  • Are there unexpected duplicates (check primary key uniqueness)?
  • Does the row count match your expectation from the source?

Anti-pattern: Running .groupby().sum() without first checking for nulls in the groupby key.

Repository
aiming-lab/MetaClaw
Last updated
First committed

Is this your skill?

If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.