← スキル一覧に戻る

data-files
by JinFanZheng
Kode Agent SDK for .NET - Event-driven AI Agent runtime supporting Anthropic Claude and OpenAI GPT models with tool calling, state management, and event streaming
⭐ 43🍴 14📅 2026年1月23日
SKILL.md
name: data-files description: File router that routes uploaded files to appropriate analysis skills. CSV/Excel/JSON → data-analysis, Images → data-viz, PDF/HTML → data-base.
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
- User uploads file via Web UI
- Detect type by extension/MIME
- Inject metadata into message:
[File: name.csv (id) - Type: CSV, Skill: data-analysis] - Activate appropriate skill
- 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.
スコア
総合スコア
75/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
✓説明文
100文字以上の説明がある
+10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
✓フォーク
10回以上フォークされている
+5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です