ワンクリックで
excel-parser
Parse and analyze Excel (.xlsx) files using the project's parse_excel.py tool
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Parse and analyze Excel (.xlsx) files using the project's parse_excel.py tool
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Parse and analyze PowerPoint (.pptx) files using the project's parse_ppt.py tool
Reference project data files (Excel, CSV, JSON, etc.) in each project's data/ folder before starting work
파일 기반 세션 상태 관리 라이프사이클. 패턴 에이전트(debate_critic, generator_evaluator, planner_executor, leadership)가 세션 상태를 영속화하고 중단된 세션을 복구할 때 사용한다.
| name | excel-parser |
| description | Parse and analyze Excel (.xlsx) files using the project's parse_excel.py tool |
| domain | data-processing |
| confidence | high |
| source | project tool — tools/parse_excel.py |
| tools | [{"name":"bash","description":"Execute parse_excel.py to extract data from Excel files","when":"When a user provides an .xlsx file or asks to analyze/read Excel data"}] |
The project includes a custom Excel parsing tool at tools/parse_excel.py that converts .xlsx files into structured formats (JSON, Markdown, CSV) suitable for agent consumption. Agents should use this tool whenever they need to read, analyze, or process Excel files rather than attempting to install ad-hoc packages or read binary data directly.
.xlsx, .xlsm, .xltx, or .xltm fileAlways start by listing sheets to understand what's available:
python tools/parse_excel.py <file.xlsx> --sheets
For large files, get a summary to understand column types and data distribution:
python tools/parse_excel.py <file.xlsx> --summary
python tools/parse_excel.py <file.xlsx> --sheet "특정시트" --summary
Choose the format based on the task:
# JSON — best for programmatic processing by the agent
python tools/parse_excel.py <file.xlsx> --format json
# Markdown — best for presenting to users
python tools/parse_excel.py <file.xlsx> --format markdown
# CSV — best for piping to other tools or large datasets
python tools/parse_excel.py <file.xlsx> --format csv
# Only first 20 rows
python tools/parse_excel.py <file.xlsx> --max-rows 20
# Specific cell range
python tools/parse_excel.py <file.xlsx> --range A1:E50
# Specific sheet with row limit
python tools/parse_excel.py <file.xlsx> --sheet "Data" --max-rows 100 --format json
python tools/parse_excel.py <file.xlsx> --header 0
--sheets → identify relevant sheets--summary → understand data shape and types--format json --max-rows 20 → inspect sample datacat, view, or other text tools — they are binary--sheets step for unfamiliar filesRequires openpyxl. Install if missing:
pip install openpyxl