# Parse CLI

> Use this skill to extract and list tables from Excel files using the eparse CLI. Call when you need to discover or extract tabular data from one or more Excel files or directories. Supports output to console, SQLite, or PostgreSQL.

- Skill: `tomevault-io/parse-cli` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/parse-cli`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/parse-cli/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Data & Analytics
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/parse-cli

---

# Parse Excel Files with eparse CLI

## When to use
- To discover, extract, or validate tables in Excel files or directories.
- For initial data exploration or to prepare data for querying.

## How to use
1. Run the following command, replacing `<path_to_files>` with your file or directory:
   ```sh
   eparse -v -f <path_to_files> parse
   ```
2. For output to SQLite (choose your own database file name):
   ```sh
   mkdir -p .files
   eparse -f <path_to_files> -o sqlite3:///.files/<your_db_file>.db parse -z
   ```
   - Replace `<your_db_file>` with your desired SQLite database file name.
3. For output to PostgreSQL (requires psycopg2):
   ```sh
   eparse -f <path_to_files> -o postgres://<user>:<password>@<host>:<port>/<db_name> parse -z
   ```
   - Replace `<user>`, `<password>`, `<host>`, `<port>`, and `<db_name>` with your PostgreSQL credentials and database name.

- Use `-t` to avoid truncation, `-l` for loose table detection, and `--exclude-nested` to skip nested tables.
- See README for more options.

---
> Source: [ChrisPappalardo/eparse](https://github.com/ChrisPappalardo/eparse) — distributed by [TomeVault](https://tomevault.io).
<!-- tomevault:4.0:skill_md:2026-06-21 -->

