data-formats
Installation
SKILL.md
Data Formats
How to work with diverse and unknown data formats.
Format Detection
Always inspect before parsing:
file <filename> # MIME type detection
xxd <filename> | head -5 # hex dump (first bytes)
head -3 <filename> # text preview
python3 -c "
with open('<filename>', 'rb') as f:
h = f.read(16)
print(h, h.hex())
"
Related skills
More from vstorm-co/pydantic-deepagents
data-analysis
Comprehensive data analysis skill for CSV files using Python and pandas
22test-generator
Generate pytest test cases for Python functions and classes
11code-review
Systematic code review for bugs, security, style, and performance
11report-writing
Guidelines for writing well-structured, cited research reports
1