Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

excel-parserExcel 解析器

Agent Skill

用于辅助数据整理、表格处理、CSV/Excel 分析、指标计算和图表准备。它适合让 Agent 清洗字段、汇总数据、发现异常、生成统计口径或把分析结果转成可读说明。使用时需要确认数据来源、字段含义和时间范围,避免把样本数据当全量事实;涉及敏感数据、导出文件或批量写回时,应先确认权限和脱敏边界。

总安装

312

周安装

13

GitHub Stars

96

下载量

104
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:excel-parser(Excel 解析器)
来源仓库:https://github.com/harryoung/efka
仓库路径:skills/excel-parser
安装命令:
npx skills add https://github.com/harryoung/efka --skill excel-parser
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/harryoung/efka --skill excel-parser

简介

用于辅助数据整理、表格处理和指标计算。excel-parser 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

  • 适合清洗字段、汇总数据或生成统计口径说明。
  • 使用时需确认数据来源和时间范围,避免误判全量事实。
  • 涉及敏感数据时应先确认脱敏方式和操作权限。
  • 建议结合原始 README 核验具体输入格式和限制。

SKILL.md

Excel Parser

Table of Contents

Overview

Provide intelligent routing strategies for parsing Excel/CSV files by analyzing complexity and choosing the optimal processing path. The skill implements a "Scout Pattern" that scans file metadata before processing to balance speed (Pandas) with accuracy (semantic extraction).

Core Philosophy: Scout Pattern

Before processing data, deploy a lightweight "scout" to analyze file metadata and make intelligent routing decisions:

  1. Metadata Scanning - Use openpyxl to scan file structure without loading data
  2. Complexity Scoring - Calculate score based on merged cells, row count, and layout
  3. Path Selection - Choose between Pandas (fast) or HTML (accurate) processing
  4. Optimized Execution - Execute with the most appropriate tool for the file type

Key Principle: "LLM handles metadata decisions, Pandas/HTML processes bulk data"

When to Use This Skill

Use excel-parser when:

  • Processing Excel/CSV files with unknown structure or varying complexity
  • Handling files ranging from simple data tables to complex financial reports
  • Need to optimize between processing speed and extraction accuracy
  • Working with files that may contain merged cells, multi-level headers, or irregular layouts

Skip this skill when:

  • File structure is already known and documented
  • Processing simple, well-structured tables with confirmed format
  • Using predefined scripts for specific file formats

Processing Workflow

Step 1: Analyze File Complexity

Use the scripts/complexity_analyzer.py to scan file metadata:

python scripts/complexity_analyzer.py <file_path> [sheet_name]

What it analyzes (without loading data):

  • Merged cell distribution (shallow vs deep in the table)
  • Row count and data continuity
  • Empty row interruptions (indicates multi-table layouts)

Output (JSON format):

{
  "is_complex": false,
  "recommended_strategy": "pandas",
  "reasons": ["No deep merges detected", "Row count exceeds 1000, forcing Pandas mode"],
  "stats": {
    "total_rows": 5000,
    "deep_merges": 0,
    "empty_interruptions": 0
  }
}

Step 2: Route to Optimal Strategy

Based on complexity analysis:

  • is_complex = false → Use Path A (Pandas Standard Mode)
  • is_complex = true → Use Path B (HTML Semantic Mode)

Step 3: Execute Processing

Follow the selected path's workflow to extract data.

Complexity Scoring Rules

Rule 1: Deep Merged Cells

  • Condition: Merged cells appearing beyond row 5
  • Interpretation: Complex table structure (not just header formatting)
  • Decision: Mark as complex if >2 deep merges detected
  • Example: Financial reports with merged category labels in data region

Rule 2: Empty Row Interruptions

  • Condition: Multiple empty rows within the table
  • Interpretation: Multiple sub-tables in single sheet
  • Decision: Mark as complex if >2 empty row interruptions found
  • Example: Summary table + detail table in one sheet

Rule 3: Row Count Override

  • Condition: Total rows >1000
  • Interpretation: Too large for HTML processing (token explosion)
  • Decision: Force Pandas mode regardless of complexity
  • Rationale: HTML conversion would exceed token limits

Rule 4: Default (Standard Table)

  • Condition: No deep merges, continuous data, moderate size
  • Interpretation: Standard data table
  • Decision: Use Pandas for optimal speed

Path A: Pandas Standard Mode

When: Simple/large tables (most common case)

Strategy: Agent analyzes ONLY the first 20 rows to determine header position, then use Pandas to read full data at native speed.

Workflow:

  1. Sample First 20 Rows

- Read only the first 20 rows using pd.read_excel(..., nrows=20) - Convert to CSV format for analysis

  1. Determine Header Position

- Examine the sampled rows to identify which row contains the actual column headers - Common patterns: Row 0 (standard), Row 1-2 (if title rows exist), Row with distinct column names

  1. Read Full Data

- Use pd.read_excel(..., header=<detected_row>) to load complete data - The header parameter ensures proper column naming

Token Cost: ~500 tokens (only 20 rows analyzed) Processing Speed: Very fast (Pandas native speed)

For implementation details, see references/smart_excel_router.py

Path B: HTML Semantic Mode

When: Complex/irregular tables (merged cells, multi-level headers)

Strategy: Convert to semantic HTML preserving structure (rowspan/colspan), then extract data understanding the visual layout.

Workflow:

  1. Convert to Semantic HTML

- Load workbook with openpyxl - Build HTML table preserving merged cell spans - Use rowspan and colspan attributes to maintain structure

  1. Extract Structured Data

- Analyze HTML table structure - Identify hierarchical headers from merged cells - Extract data preserving semantic relationships

Token Cost: Higher (full HTML structure analyzed) Processing Speed: Slower (semantic extraction) Use Case: Only for small (<1000 rows), complex files where Pandas would fail

For implementation details, see references/smart_excel_router.py

Best Practices

1. Trust the Scout

Always run complexity analysis before processing. The metadata scan is fast (<1 second) and prevents wasted effort on wrong approach.

2. Respect the Row Count Rule

Never attempt HTML mode on files >1000 rows. Token limits will cause failures.

3. Pandas First for Unknown Files

When in doubt, try Pandas mode first. It fails fast and clearly when structure is incompatible.

4. Cache Analysis Results

If processing multiple sheets from same file, run analysis once and cache results.

5. Preserve Original Files

Never modify the original Excel file during analysis or processing.

Troubleshooting

File Cannot Be Opened

  • Symptom: FileNotFoundError or permission errors
  • Causes: Invalid path, file locked by another process, insufficient permissions
  • Solutions:

- Verify file path is correct and file exists - Close the file if open in Excel or another application - Check read permissions on the file

Corrupted File Errors

  • Symptom: BadZipFile or InvalidFileException
  • Causes: Incomplete download, file corruption, wrong file extension
  • Solutions:

- Re-download or obtain fresh copy of the file - Verify file is actual Excel format (not CSV with.xlsx extension) - Try opening in Excel to confirm file integrity

Memory Issues with Large Files

  • Symptom: MemoryError or system slowdown
  • Causes: File too large for available RAM
  • Solutions:

- Use read_only=True mode in openpyxl - Process file in chunks using Pandas chunksize parameter - Increase system memory or use machine with more RAM

Encoding Problems

  • Symptom: Garbled text or UnicodeDecodeError
  • Causes: Non-UTF8 encoding in source data
  • Solutions:

- Specify encoding when reading CSV: pd.read_csv(..., encoding='gbk') - For Excel, data is usually UTF-8; check source data generation

HTML Mode Token Overflow

  • Symptom: Truncated output or API errors
  • Causes: Complex file exceeds token limits despite row count check
  • Solutions:

- Force Pandas mode even for complex files - Split sheet into smaller ranges and process separately - Extract only essential columns before HTML conversion

Incorrect Header Detection

  • Symptom: Wrong columns or data shifted
  • Causes: Unusual header patterns not caught by sampling
  • Solutions:

- Manually specify header row if known - Increase sample size beyond 20 rows - Use HTML mode for better structure understanding

Dependencies

Required Python packages:

  • openpyxl - Metadata scanning and Excel file manipulation
  • pandas - High-speed data reading and manipulation

Resources

This skill includes:

  • scripts/complexity_analyzer.py - Standalone executable for complexity analysis
  • references/smart_excel_router.py - Complete implementation reference with both processing paths

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

38.26%
按下载量换算40

Claude

31.98%
按下载量换算33

Cursor

17.21%
按下载量换算18

Gemini CLI

9.55%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills