smithery.ai

data-files

File router that routes uploaded files to appropriate analysis skills. CSV/Excel/JSON → data-analysis, Images → data-viz, PDF/HTML → data-base.

First seen Mar 25, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,273 B
  • docs SUMMARY.md 167 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

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)

Upload Flow

  1. User uploads file via Web UI
  2. Detect type by extension/MIME
  3. Inject metadata into message: [File: name.csv (id) - Type: CSV, Skill: data-analysis]
  4. Activate appropriate skill
  5. Return results to user

Critical Constraints

Filenames MUST be ASCII-only (no Chinese/non-ASCII):

  • ✅ Good: data.csv, report_2025.xlsx
  • ❌ Bad: 数据.csv, 報表.pdf

If non-ASCII filename detected, ask user to rename before processing.