data-files
Installation
SKILL.md
Mental Model
Files are routed by type to specialized processors. This skill is the router - detection and delegation, not processing itself.
File Routing
| Extension | Routes To | For What |
|---|---|---|
.csv, .xlsx, .json |
data-analysis | Statistics, aggregation, patterns |
.png, .jpg, .gif |
data-viz | Chart recognition, visualization |
.pdf, .html |
data-base | Text extraction, scraping |
Anti-Patterns (NEVER)
- Don't accept non-ASCII filenames (require rename)
- Don't process unsupported file types
- Don't bypass file size limits (50MB default)