Agent skill
data-files
File router that routes uploaded files to appropriate analysis skills. CSV/Excel/JSON → data-analysis, Images → data-viz, PDF/HTML → data-base.
Install this agent skill to your Project
npx add-skill https://github.com/JinFanZheng/kode-sdk-csharp/tree/main/examples/Kode.Agent.WebApiAssistant/skills/data-files
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
- 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.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
Email operations via IMAP/SMTP. Trigger for inbox checking, reading, drafting, or sending emails. Requires `.config/email.json` setup.
food
餐饮推荐/吃什么/哪里吃/咖啡酒吧甜品夜宵。用于用户问“附近有什么好吃的/餐厅推荐/人均多少/营业到几点/要不要预约/适合亲子或请客”等。 默认做“查询时间快照”(当地时间)并给来源链接;不编造店名/地址/营业时间/人均/评分;信息不足先问2-3个关键问题。
itinerary
行程安排/行程规划(国内为主)。当用户要你“做行程/排几天怎么玩/把交通酒店景点串起来/做出差安排/把计划写进日历”时使用。 产出可执行的日程(含时间块),并在引用外部事实时附来源链接与来源当地时间;绝不编造。
featbit
FeatBit official documentation real-time Q&A assistant. Activate when user mentions "FeatBit", "feature flag", "feature toggle", or asks about FeatBit SDK integration, deployment, or configuration. Capabilities: Real-time fetching from docs.featbit.co and GitHub, supporting SDK integration, Docker/K8s deployment, feature flag configuration, A/B testing, and more.
news
News briefing + verification workflow. Use when the user asks for news, headlines, daily briefing, “today's news”, “latest updates”, breaking news, or requests specific current numbers/events that require reliable sources and timestamps. Requires source links + local published time; NEVER fabricate.
knowledge
External knowledge capture and retrieval. Trigger when user wants to save notes, bookmarks, code snippets, or reference material for later access.
Didn't find tool you were looking for?