Extract PDF Transactions Skill

Extract transaction data from PDF bank and credit card statements.

11 stars

Best use case

Extract PDF Transactions Skill is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Extract transaction data from PDF bank and credit card statements.

Teams using Extract PDF Transactions Skill should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/extract-pdf-transactions/SKILL.md --create-dirs "https://raw.githubusercontent.com/ronnycoding/my-personal-assistant/main/.claude/skills/finance-process/extract-pdf-transactions/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/extract-pdf-transactions/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How Extract PDF Transactions Skill Compares

Feature / AgentExtract PDF Transactions SkillStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Extract transaction data from PDF bank and credit card statements.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# Extract PDF Transactions Skill

Extract transaction data from PDF bank and credit card statements.

## Skill Metadata

- **Name**: extract-pdf-transactions
- **Category**: Financial Data Processing
- **Complexity**: Medium
- **Privacy**: Local processing only, no external APIs

## Capabilities

This skill extracts structured transaction data from PDF financial statements:

1. **Multi-format PDF parsing** - Supports various bank statement layouts
2. **Table detection** - Automatically identifies transaction tables
3. **Data extraction** - Parses dates, descriptions, amounts, and balances
4. **Multi-page support** - Processes statements spanning multiple pages
5. **Error handling** - Gracefully handles malformed PDFs
6. **Validation** - Verifies extracted data quality

## Usage

```bash
/finance-process extract --input="~/Documents/Finance/*.pdf" --output="~/Documents/Finance/transactions.csv"
```

## How It Works

1. **PDF Discovery**: Finds all PDF files matching the input pattern
2. **Content Extraction**: Uses pdfplumber to extract text and tables
3. **Table Parsing**: Identifies transaction tables using pattern matching
4. **Data Normalization**: Standardizes column names and formats
5. **Validation**: Checks for completeness and accuracy
6. **CSV Export**: Saves transactions to specified output file

## Script

The main script is `scripts/extract_pdf_statements.py` which:
- Accepts PDF file paths (glob patterns supported)
- Extracts transaction tables
- Outputs to CSV format
- Provides progress feedback and error reporting

## Dependencies

Required Python packages:
- pdfplumber (primary extraction engine)
- pandas (data manipulation)
- python-dateutil (date parsing)
- tabula-py (fallback for complex tables)

## Output Format

The skill produces CSV files with these columns:
- `date` - Transaction date (YYYY-MM-DD)
- `description` - Transaction description/merchant
- `amount` - Transaction amount (negative for debits)
- `balance` - Account balance after transaction
- `category` - Auto-categorized transaction type
- `source_file` - Original PDF filename

## Error Handling

- Logs files that couldn't be processed
- Reports extraction quality metrics
- Provides suggestions for failed extractions
- Continues processing remaining files on error

## Privacy & Security

All PDF processing happens locally:
- No cloud API calls
- No data transmission
- Files stay on local filesystem
- Sensitive data never leaves the machine

Related Skills

We are still matching the closest adjacent skills for this page. In the meantime, continue through the full directory.